diff --git a/.travis.yml b/.travis.yml index f3fd631ba..193cfd592 100644 --- a/.travis.yml +++ b/.travis.yml @@ -265,7 +265,7 @@ matrix: packages: - ccache env: - - MATRIX_EVAL="brew update; brew install sashkab/python/python36; brew link --force --overwrite python36; shopt -s expand_aliases; alias python='/usr/local/opt/python36/bin/python3.6'; alias pip='/usr/local/opt/python36/bin/pip3.6';" + - MATRIX_EVAL="brew update; brew tap sashkab/python; brew install sashkab/python/python36; brew link --force --overwrite python36; shopt -s expand_aliases; alias python='/usr/local/opt/python36/bin/python3.6'; alias pip='/usr/local/opt/python36/bin/pip3.6';" - ARCHFLAGS="-std=c++11" - PIP_UPDATE="1" - PYTHON_BUILD=true @@ -280,25 +280,25 @@ matrix: packages: - ccache env: - - MATRIX_EVAL="brew update; brew install sashkab/python/python35; brew link --force --overwrite python35; shopt -s expand_aliases; alias python='/usr/local/opt/python35/bin/python3.5'; alias pip='/usr/local/opt/python35/bin/pip3.5';" + - MATRIX_EVAL="brew update; brew tap sashkab/python; brew install sashkab/python/python35; brew link --force --overwrite python35; shopt -s expand_aliases; alias python='/usr/local/opt/python35/bin/python3.5'; alias pip='/usr/local/opt/python35/bin/pip3.5';" - ARCHFLAGS="-std=c++11" - PIP_UPDATE="1" - PYTHON_BUILD=true - # - name: "klayout python3.4.9 osx10.13" - - name: "cp34-cp34m-macosx_10_13_x86_64.whl" - os: osx - osx_image: xcode9.4 # macOS 10.13 - cache: ccache - addons: - homebrew: - packages: - - ccache - env: - - MATRIX_EVAL="brew update; brew install sashkab/python/python34; brew link --force --overwrite python34; shopt -s expand_aliases; alias python='/usr/local/opt/python34/bin/python3.4'; alias pip='/usr/local/opt/python34/bin/pip3.4';" - - ARCHFLAGS="-std=c++11" - - PIP_UPDATE="1" - - PYTHON_BUILD=true + # # - name: "klayout python3.4.9 osx10.13" + # - name: "cp34-cp34m-macosx_10_13_x86_64.whl" + # os: osx + # osx_image: xcode9.4 # macOS 10.13 + # cache: ccache + # addons: + # homebrew: + # packages: + # - ccache + # env: + # - MATRIX_EVAL="brew update; brew tap sashkab/python; brew install sashkab/python/python34; brew link --force --overwrite python34; shopt -s expand_aliases; alias python='/usr/local/opt/python34/bin/python3.4'; alias pip='/usr/local/opt/python34/bin/pip3.4';" + # - ARCHFLAGS="-std=c++11" + # - PIP_UPDATE="1" + # - PYTHON_BUILD=true # - name: "klayout python3 osx10.12" - name: "cp37-cp37m-macosx_10_12_x86_64.whl" @@ -555,6 +555,7 @@ script: python testdata/pymod/import_db.py; python testdata/pymod/import_rdb.py; python testdata/pymod/import_tl.py; + python testdata/pymod/import_lib.py; python testdata/pymod/pya_tests.py; fi fi @@ -565,6 +566,7 @@ script: python testdata/pymod/import_db.py; python testdata/pymod/import_rdb.py; python testdata/pymod/import_tl.py; + python testdata/pymod/import_lib.py; python testdata/pymod/pya_tests.py; klayout_version=$(python -c 'import setup; print(setup.Config().version())'); mkdir -p deploy/dist-pymod/$klayout_version; @@ -578,4 +580,13 @@ script: fi after_success: + # upload to dropbox + # need DROPBOX_OAUTH_BEARER environment variable - dropbox-deployment + + # uploading to pypi using twine + # need TWINE_USERNAME, TWINE_PASSWORD and TWINE_REPOSITORY_URL env variable + - if [ "$PYTHON_BUILD" = true ] || [ "$DOCKER_BUILD" = true ]; then + pip install -U twine || sudo pip install -U twine; + twine upload --skip-existing deploy/dist-pymod/$klayout_version/*; + fi diff --git a/Changelog b/Changelog index 9a4524b08..05df50d85 100644 --- a/Changelog +++ b/Changelog @@ -1315,7 +1315,7 @@ * The net tracer now allows to use layer combinations (derived by boolean operations) for the conductive and via layers. See The Net Tracing Feature for details. * A technology management is integrated into Klayout. - That allows to switch various settings depending on the choosen technology. + That allows to switch various settings depending on the chosen technology. See About Technology Management for details about this feature. * The drawing can now be rotated or flipped without having to modify the layout. This function can be found in the "Display" menu under "Global Transformation". @@ -1865,7 +1865,7 @@ * The instance browser now has a "Choose cell" button where the cell can be chosen whose instances will be presented. * For most editing operations, the status bar will now indicate more detailed - informations such as move distance. + information such as move distance. * Pasted shapes and instances now are selected initially. * Enhanced OASIS compression mode (can be chosen from the options dialog on saving). Reduces file size considerably by creating regular shape arrays if diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 28804a941..71f9d69c8 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -84,6 +84,7 @@ jobs: python testdata/pymod/import_db.py python testdata/pymod/import_rdb.py python testdata/pymod/import_tl.py + python testdata/pymod/import_lib.py python testdata/pymod/pya_tests.py displayName: 'Test KLayout pymod' @@ -101,7 +102,7 @@ jobs: artifactName: 'wheel-$(python.version).$(python.architecture)' - job: 'Deploy' - displayName: 'Combine Windows wheels' + displayName: 'Combine Windows wheels and deploy to PyPI' dependsOn: Build pool: vmImage: 'vs2017-win2016' # other options: 'macOS-10.13', 'ubuntu-16.04' @@ -149,4 +150,12 @@ jobs: inputs: pathtoPublish: '$(Build.ArtifactStagingDirectory)' artifactName: 'windows_wheels' + - bash: | + pip install -U twine + twine upload --skip-existing $BUILD_ARTIFACTSTAGINGDIRECTORY/* + env: + TWINE_USERNAME: $(TWINE_USERNAME) + TWINE_PASSWORD: $(TWINE_PASSWORD) + TWINE_REPOSITORY_URL: $(TWINE_REPOSITORY_URL) + displayName: 'Uploading to PyPI' diff --git a/macbuild/Resources/Info.plist.template b/macbuild/Resources/Info.plist.template index 98a281edb..adea11181 100644 --- a/macbuild/Resources/Info.plist.template +++ b/macbuild/Resources/Info.plist.template @@ -41,5 +41,7 @@ NSApplication NSSupportsAutomaticGraphicsSwitching + NSRequiresAquaSystemAppearance + diff --git a/scripts/compile_glyphs.rb b/scripts/compile_glyphs.rb new file mode 100755 index 000000000..ff8d23576 --- /dev/null +++ b/scripts/compile_glyphs.rb @@ -0,0 +1,71 @@ +#!/usr/bin/ruby + +files = [] + +glyph_dir = File.join(File.dirname($0), "..", "src", "db", "db", "glyphs") +Dir::new(glyph_dir).each do |file| + if file !~ /^\./ + files << file + end +end + +ccfile = File.join(File.dirname($0), "..", "src", "db", "db", "glyphs.cc") +File.open(ccfile, "w") do |out| + + out.puts <<"END" +/** + * THIS FILE HAS BEEN CREATED AUTOMATICALLY BY "compile_glyphs.rb" + * DO NOT EDIT! + */ +END + + nfile = 0 + + files.each do |f| + + nfile += 1 + + name = f.sub(/\..*$/, "") + + out.puts("\n// File: #{f}") + out.puts("static const char *name_#{nfile} = \"#{name}\";") + out.puts("static const char *description_#{nfile} = \"#{f}\";") + out.puts("static const uint8_t data_#{nfile}[] = {"); + + File.open(File.join(glyph_dir, f), "rb") do |ly| + + bytes = ly.read + hex = "" + bytes.size.times do |i| + hex += "0x%02x, " % bytes[i].ord + if i % 8 == 7 + out.puts " " + hex + i = 0 + hex = "" + end + end + + if hex != "" + out.puts " " + hex + end + + end + + out.puts(" 0xff // dummy") + out.puts("};") + + end + + out.puts("\nstatic void load_glyphs (std::vector &generators)\n{\n") + + nfile.times do |n| + + out.puts(" generators.push_back (db::TextGenerator ());") + out.puts(" generators.back ().load_from_data ((const char *) data_#{n + 1}, sizeof (data_#{n + 1}) - 1, name_#{n + 1}, description_#{n + 1});\n") + + end + + out.puts("}") + +end + diff --git a/scripts/deb-data/.control.swp b/scripts/deb-data/.control.swp deleted file mode 100644 index a7ac9e32c..000000000 Binary files a/scripts/deb-data/.control.swp and /dev/null differ diff --git a/scripts/mkqtdecl_common/produce.rb b/scripts/mkqtdecl_common/produce.rb index e8233efba..e676a2922 100755 --- a/scripts/mkqtdecl_common/produce.rb +++ b/scripts/mkqtdecl_common/produce.rb @@ -1693,7 +1693,7 @@ END if ia < n_min_args || !t.init - ofile.puts(" #{tn} = args.read<#{ta} > (heap);") + ofile.puts(" #{tn} = gsi::arg_reader<#{ta} >() (args, heap);") else @@ -1704,7 +1704,7 @@ END init_expr = init_expr.gsub("%HEAP%", "heap") end - ofile.puts(" #{tn} = args ? args.read<#{ta} > (heap) : (#{ta})(#{init_expr});") + ofile.puts(" #{tn} = args ? gsi::arg_reader<#{ta} >() (args, heap) : gsi::arg_maker<#{ta} >() (#{init_expr}, heap);") end diff --git a/setup.py b/setup.py index c1ecb6f49..bee480c5d 100644 --- a/setup.py +++ b/setup.py @@ -310,6 +310,10 @@ class Config(object): else: loader_path = '$ORIGIN/..' args += ['-Wl,-rpath,' + loader_path] + # default linux shared object compilation uses the '-g' flag, + # which generates unnecessary debug information + # removing with strip-all during the linking stage + args += ['-Wl,--strip-all'] return args def macros(self): @@ -322,7 +326,7 @@ class Config(object): """ Gets the version string """ - return "0.26.0.dev11" + return "0.26.0.dev14" config = Config() @@ -389,11 +393,6 @@ config.add_extension(_pya) _db_path = os.path.join("src", "db", "db") _db_sources = set(glob.glob(os.path.join(_db_path, "*.cc"))) -# Not a real source: -# Caveat, in source distribution tarballs from pypi, these files will -# not exist. So we need an error-free discard method instead of list's remove. -_db_sources.discard(os.path.join(_db_path, "fonts.cc")) - _db = Library(config.root + '._db', define_macros=config.macros() + [('MAKE_DB_LIBRARY', 1)], include_dirs=[_tl_path, _gsi_path, _db_path], @@ -404,6 +403,22 @@ _db = Library(config.root + '._db', sources=list(_db_sources)) config.add_extension(_db) +# ------------------------------------------------------------------ +# _lib dependency library + +_lib_path = os.path.join("src", "lib", "lib") +_lib_sources = set(glob.glob(os.path.join(_lib_path, "*.cc"))) + +_lib = Library(config.root + '._lib', + define_macros=config.macros() + [('MAKE_LIB_LIBRARY', 1)], + include_dirs=[_tl_path, _gsi_path, _db_path, _lib_path], + extra_objects=[config.path_of('_tl', _tl_path), config.path_of('_gsi', _gsi_path), config.path_of('_db', _db_path)], + language='c++', + extra_link_args=config.link_args('_lib'), + extra_compile_args=config.compile_args('_lib'), + sources=list(_lib_sources)) +config.add_extension(_lib) + # ------------------------------------------------------------------ # _rdb dependency library @@ -473,6 +488,19 @@ db = Extension(config.root + '.dbcore', extra_link_args=config.link_args('dbcore'), sources=list(db_sources)) +# ------------------------------------------------------------------ +# lib extension library + +lib_path = os.path.join("src", "pymod", "lib") +lib_sources = set(glob.glob(os.path.join(lib_path, "*.cc"))) + +lib = Extension(config.root + '.libcore', + define_macros=config.macros(), + include_dirs=[_lib_path, _tl_path, _gsi_path, _pya_path], + extra_objects=[config.path_of('_lib', _lib_path), config.path_of('_tl', _tl_path), config.path_of('_gsi', _gsi_path), config.path_of('_pya', _pya_path)], + extra_link_args=config.link_args('libcore'), + sources=list(lib_sources)) + # ------------------------------------------------------------------ # rdb extension library @@ -482,7 +510,7 @@ rdb_sources = set(glob.glob(os.path.join(rdb_path, "*.cc"))) rdb = Extension(config.root + '.rdbcore', define_macros=config.macros(), - include_dirs=[_rdb_path, _db_path, _tl_path, _gsi_path, _pya_path], + include_dirs=[_rdb_path, _tl_path, _gsi_path, _pya_path], extra_objects=[config.path_of('_rdb', _rdb_path), config.path_of('_tl', _tl_path), config.path_of('_gsi', _gsi_path), config.path_of('_pya', _pya_path)], extra_link_args=config.link_args('rdbcore'), sources=list(rdb_sources)) @@ -512,4 +540,4 @@ if __name__ == '__main__': url='https://github.com/klayoutmatthias/klayout', packages=find_packages('src/pymod/distutils_src'), package_dir={'': 'src/pymod/distutils_src'}, # https://github.com/pypa/setuptools/issues/230 - ext_modules=[_tl, _gsi, _pya, _db, _rdb] + db_plugins + [tl, db, rdb]) + ext_modules=[_tl, _gsi, _pya, _db, _lib, _rdb] + db_plugins + [tl, db, lib, rdb]) diff --git a/src/ant/ant/antService.cc b/src/ant/ant/antService.cc index af310c2e5..2fd33146d 100644 --- a/src/ant/ant/antService.cc +++ b/src/ant/ant/antService.cc @@ -892,16 +892,18 @@ void Service::drag_cancel () { if (m_drawing) { - widget ()->ungrab_mouse (this); - - if (mp_active_ruler) { - delete mp_active_ruler; - mp_active_ruler = 0; - } - m_drawing = false; + } + if (mp_active_ruler) { + delete mp_active_ruler; + mp_active_ruler = 0; + } + + if (mp_transient_ruler) { + delete mp_transient_ruler; + mp_transient_ruler = 0; } } @@ -1047,7 +1049,7 @@ Service::begin_move (lay::Editable::MoveMode mode, const db::DPoint &p, lay::ang double l = double (search_range) / widget ()->mouse_event_trans ().mag (); db::DBox search_dbox = db::DBox (p, p).enlarged (db::DVector (l, l)); - // test, wether we are moving a handle of one selected object + // test, whether we are moving a handle of one selected object for (std::map::const_iterator r = m_selected.begin (); r != m_selected.end (); ++r) { obj_iterator ri = r->first; diff --git a/src/ant/ant/gsiDeclAnt.cc b/src/ant/ant/gsiDeclAnt.cc index af42ac044..03e9c52e8 100644 --- a/src/ant/ant/gsiDeclAnt.cc +++ b/src/ant/ant/gsiDeclAnt.cc @@ -897,7 +897,7 @@ gsi::Class decl_Annotation (decl_BasicAnnotation, "lay", "Annotat ), "@brief A layout annotation (i.e. ruler)\n" "\n" - "Annotation objects provide a way to attach measurements or descriptive informations to a layout view. " + "Annotation objects provide a way to attach measurements or descriptive information to a layout view. " "Annotation objects can appear as rulers for example. Annotation objects can be configured in " "different ways using the styles provided. By configuring an annotation object properly, it can appear " "as a rectangle or a plain line for example.\n" diff --git a/src/buddies/src/bd/bdWriterOptions.cc b/src/buddies/src/bd/bdWriterOptions.cc index d10ac5acf..7605c389f 100644 --- a/src/buddies/src/bd/bdWriterOptions.cc +++ b/src/buddies/src/bd/bdWriterOptions.cc @@ -145,7 +145,7 @@ GenericWriterOptions::add_options (tl::CommandLineOptions &cmd, const std::strin ) << tl::arg (group + "#--multi-xy-records", &m_gds2_multi_xy_records, "Allows unlimited number of points", - "If this option is given, multiple XY records will be written to accomodate an unlimited number " + "If this option is given, multiple XY records will be written to accommodate an unlimited number " "of points per polygon or path. However, such files may not be compatible with some consumers." ) << tl::arg (group + @@ -169,7 +169,7 @@ GenericWriterOptions::add_options (tl::CommandLineOptions &cmd, const std::strin << tl::arg (group + "#!--no-timestamps", &m_gds2_write_timestamps, "Don't write timestamps", "Writes a dummy time stamp instead of the actual time. With this option, GDS2 files become " - "bytewise indentical even if written at different times. This option is useful if binary " + "bytewise identical even if written at different times. This option is useful if binary " "identity is important (i.e. in regression scenarios)." ) << tl::arg (group + diff --git a/src/db/db/dbBox.h b/src/db/db/dbBox.h index a3445e3cf..1e9a2e944 100644 --- a/src/db/db/dbBox.h +++ b/src/db/db/dbBox.h @@ -624,7 +624,7 @@ struct DB_PUBLIC_TEMPLATE box * @brief Conversion to string * * If dbu is set, it determines the factor by which the coordinates are multiplied to render - * micron units. In addition, a micron format is choosen for output of these coordinates. + * micron units. In addition, a micron format is chosen for output of these coordinates. */ std::string to_string (double dbu) const { diff --git a/src/db/db/dbBoxScanner.h b/src/db/db/dbBoxScanner.h index c350469ba..868ecc709 100644 --- a/src/db/db/dbBoxScanner.h +++ b/src/db/db/dbBoxScanner.h @@ -960,7 +960,7 @@ private: * * Whenever the cluster receiver gets noticed of an interaction, it will * create new clusters or extend or join existing clusters. When a cluster - * is finished, it's finish method is called. That allows to take any + * is finished, it's finish method is called. That allows one to take some * final actions on the cluster. */ template diff --git a/src/db/db/dbCell.h b/src/db/db/dbCell.h index 2d3574cbb..20c013538 100644 --- a/src/db/db/dbCell.h +++ b/src/db/db/dbCell.h @@ -60,7 +60,7 @@ class ImportLayerMapping; * @brief The cell object * * A cell object consists of a set of shape containers (called layers), - * a set of child cell instances and auxiliary informations such as + * a set of child cell instances and auxiliary information such as * the parent instance list. * A cell is identified through an index given to the cell upon instantiation. * The cell index is valid in the context of a cell graph object which @@ -126,7 +126,7 @@ public: /** * @brief Return the const shapes list of the given layer * - * This method allows to access the shapes list on a certain layer. + * This method allows one to access the shapes list on a certain layer. * If the layer does not exist yet, a reference to an empty list is * returned. * @@ -139,7 +139,7 @@ public: /** * @brief Return the shapes list of the given layer * - * This method allows to access the shapes list on a certain layer. + * This method allows one to access the shapes list on a certain layer. * If the layer does not exist yet, it is created. * * @param index The layer index of the shapes list to retrieve @@ -601,7 +601,7 @@ public: /** * @brief The parent instance list begin iterator * - * The begin_parent_insts() allows to access to the parent instance list. + * The begin_parent_insts() allows one to access to the parent instance list. */ parent_inst_iterator begin_parent_insts () const; @@ -725,7 +725,7 @@ public: * call this cell to the set given. It is assumed that the if the set contains a cell, it * will also contain all called cells, so it may act as a cache. * - * This version allows to restrict the search to a cone of the hierarchy tree, that is + * This version allows one to restrict the search to a cone of the hierarchy tree, that is * a set of cells which are collected from another call of "collect_called_cells" with another initial cell. * * @param callers The set of called cells (used as cache) @@ -1007,7 +1007,7 @@ private: * @brief Sort the child instance list * * The child instances are first sorted by cell index, then by raw transformation - * (excluding displacement). This allows to simplify the bbox computation by + * (excluding displacement). This allows one to simplify the bbox computation by * convolution of the displacements bboxes with the object bboxes. */ void sort_child_insts (); diff --git a/src/db/db/dbCellGraphUtils.h b/src/db/db/dbCellGraphUtils.h index b2cedd777..aa4e072a6 100644 --- a/src/db/db/dbCellGraphUtils.h +++ b/src/db/db/dbCellGraphUtils.h @@ -59,7 +59,7 @@ public: /** * @brief Instantiate a counter object with a reference to the given cell graph * - * This version allows to specify a initial (starting) cell where only the cell tree below the + * This version allows one to specify a initial (starting) cell where only the cell tree below the * staring cell is considered. Multiplicity refers to the number of instances below the * initial cell. */ @@ -159,7 +159,7 @@ public: /** * @brief Instantiate a counter object with a reference to the given cell graph * - * This version allows to specify a initial (starting) cell where only the cell tree below the + * This version allows one to specify a initial (starting) cell where only the cell tree below the * staring cell is considered. Multiplicity refers to the number of instances below the * initial cell. */ diff --git a/src/db/db/dbClipboard.h b/src/db/db/dbClipboard.h index bf333c069..3fa9d96e2 100644 --- a/src/db/db/dbClipboard.h +++ b/src/db/db/dbClipboard.h @@ -52,7 +52,7 @@ public: } /** - * @brief The dtor is virtual to allow to exploit RTTI + * @brief The dtor is virtual to exploit RTTI */ virtual ~ClipboardObject () { @@ -114,7 +114,7 @@ private: /** * @brief The clipboard class * - * The clipboard allows to store objects from the ClipboardObject + * The clipboard allows one to store objects from the ClipboardObject * class. These objects are owned by the clipboard class and must * be passed after have being newed to the += operator. * There is a static instance of the clipboard that should be used diff --git a/src/db/db/dbEdge.h b/src/db/db/dbEdge.h index 923125e52..3474a3f99 100644 --- a/src/db/db/dbEdge.h +++ b/src/db/db/dbEdge.h @@ -598,7 +598,7 @@ public: * @brief Conversion to a string. * * If dbu is set, it determines the factor by which the coordinates are multiplied to render - * micron units. In addition, a micron format is choosen for output of these coordinates. + * micron units. In addition, a micron format is chosen for output of these coordinates. */ std::string to_string (double dbu) const { diff --git a/src/db/db/dbEdgePair.h b/src/db/db/dbEdgePair.h index 6704abe16..37746e8b0 100644 --- a/src/db/db/dbEdgePair.h +++ b/src/db/db/dbEdgePair.h @@ -306,7 +306,7 @@ public: * @brief Conversion to a string. * * If dbu is set, it determines the factor by which the coordinates are multiplied to render - * micron units. In addition, a micron format is choosen for output of these coordinates. + * micron units. In addition, a micron format is chosen for output of these coordinates. */ std::string to_string (double dbu) const { diff --git a/src/db/db/dbEdgePairs.h b/src/db/db/dbEdgePairs.h index e6393a0a8..7fff2f6ab 100644 --- a/src/db/db/dbEdgePairs.h +++ b/src/db/db/dbEdgePairs.h @@ -312,7 +312,7 @@ public: /** * @brief Constructor from a RecursiveShapeIterator * - * Creates an edge pair set from a recursive shape iterator. This allows to feed an edge pair set + * Creates an edge pair set from a recursive shape iterator. This allows one to feed an edge pair set * from a hierarchy of cells. */ explicit EdgePairs (const RecursiveShapeIterator &si); @@ -320,7 +320,7 @@ public: /** * @brief Constructor from a RecursiveShapeIterator with a transformation * - * Creates an edge pair set from a recursive shape iterator. This allows to feed an edge pair set + * Creates an edge pair set from a recursive shape iterator. This allows one to feed an edge pair set * from a hierarchy of cells. The transformation is useful to scale to a specific * DBU for example. */ diff --git a/src/db/db/dbEdgeProcessor.h b/src/db/db/dbEdgeProcessor.h index 2ba2521b8..2c1e5276e 100644 --- a/src/db/db/dbEdgeProcessor.h +++ b/src/db/db/dbEdgeProcessor.h @@ -513,7 +513,7 @@ private: * @brief Boolean operations * * This class implements a boolean operation similar to BooleanOp, but - * in addition it allows to specify the merge mode for the two inputs. + * in addition it allows one to specify the merge mode for the two inputs. * See "SimpleMergeOp" for the definition of the merge modes. * This operator is especially useful to implement boolean operations * with sized polygons which required a >0 interpretation. @@ -540,8 +540,8 @@ private: * @brief Merge operation * * This incarnation of the evaluator class implements a merge operation - * which allows to distinguish polygons (through edge properties) and - * allows to specify a overlap value. Default is 0 which means that the + * which allows one to distinguish polygons (through edge properties) and + * allows one to specify a overlap value. Default is 0 which means that the * merge is equivalent to producing all polygins. A overlap value of 1 means * that at least two polygons must overlap to produce a result. */ @@ -695,7 +695,7 @@ public: * The other merge operation provided for this purpose is "merge" which normalizes each polygon individually before * merging them. "simple_merge" is somewhat faster and consumes less memory. * - * This method produces polygons and allows to fine-tune the parameters for that purpose. + * This method produces polygons and allows fine-tuning the parameters for that purpose. * * This is a convenience method that bundles filling of the edges, processing with * a SimpleMerge operator and puts the result into an output vector. @@ -711,7 +711,7 @@ public: /** * @brief Merge the given edges in a simple "non-zero wrapcount" fashion * - * The egdes provided must form valid closed contours. Contours oriented differently "cancel" each other. + * The edges provided must form valid closed contours. Contours oriented differently "cancel" each other. * Overlapping contours are merged when the orientation is the same. * * The result is presented as a set of edges forming closed contours. Hulls are oriented clockwise while @@ -729,10 +729,10 @@ public: /** * @brief Merge the given edges in a simple "non-zero wrapcount" fashion into polygons * - * The egdes provided must form valid closed contours. Contours oriented differently "cancel" each other. + * The edges provided must form valid closed contours. Contours oriented differently "cancel" each other. * Overlapping contours are merged when the orientation is the same. * - * This method produces polygons and allows to fine-tune the parameters for that purpose. + * This method produces polygons and allows fine-tuning the parameters for that purpose. * * This is a convenience method that bundles filling of the edges, processing with * a SimpleMerge operator and puts the result into an output vector. @@ -750,7 +750,7 @@ public: * * In contrast to "simple_merge", this merge implementation considers each polygon individually before merging them. * Thus self-overlaps are effectively removed before the output is computed and holes are correctly merged with the - * hull. In addition, this method allows to select areas with a higher wrap count which allows to compute overlaps + * hull. In addition, this method allows one to select areas with a higher wrap count which allows one to compute overlaps * of polygons on the same layer. Because this method merges the polygons before the overlap is computed, self-overlapping * polygons do not contribute to higher wrap count areas. * @@ -771,11 +771,11 @@ public: * * In contrast to "simple_merge", this merge implementation considers each polygon individually before merging them. * Thus self-overlaps are effectively removed before the output is computed and holes are correctly merged with the - * hull. In addition, this method allows to select areas with a higher wrap count which allows to compute overlaps + * hull. In addition, this method allows one to select areas with a higher wrap count which allows one to compute overlaps * of polygons on the same layer. Because this method merges the polygons before the overlap is computed, self-overlapping * polygons do not contribute to higher wrap count areas. * - * This method produces polygons and allows to fine-tune the parameters for that purpose. + * This method produces polygons and allows one to fine-tune the parameters for that purpose. * * This is a convenience method that bundles filling of the edges, processing with * a Merge operator and puts the result into an output vector. @@ -795,7 +795,7 @@ public: * on the individual result polygons of the merge step. The result may contain overlapping contours, but no self-overlaps. * * dx and dy describe the sizing. A positive value indicates oversize (outwards) while a negative one describes undersize (inwards). - * The sizing applied can be choosen differently in x and y direction. In this case, the sign must be identical for both + * The sizing applied can be chosen differently in x and y direction. In this case, the sign must be identical for both * dx and dy. * * The result is presented as a set of edges forming closed contours. Hulls are oriented clockwise while @@ -820,10 +820,10 @@ public: * Polygon overlap occures if the polygons are close enough, so a positive sizing makes polygons overlap. * * dx and dy describe the sizing. A positive value indicates oversize (outwards) while a negative one describes undersize (inwards). - * The sizing applied can be choosen differently in x and y direction. In this case, the sign must be identical for both + * The sizing applied can be chosen differently in x and y direction. In this case, the sign must be identical for both * dx and dy. * - * This method produces polygons and allows to fine-tune the parameters for that purpose. + * This method produces polygons and allows one to fine-tune the parameters for that purpose. * * This is a convenience method that bundles filling of the edges, processing with * a SimpleMerge operator and puts the result into an output vector. @@ -891,7 +891,7 @@ public: * @brief Boolean operation for a set of given polygons, creating polygons * * This method computes the result for the given boolean operation on two sets of polygons. - * This method produces polygons on output and allows to fine-tune the parameters for that purpose. + * This method produces polygons on output and allows one to fine-tune the parameters for that purpose. * * This is a convenience method that bundles filling of the edges, processing with * a Boolean operator and puts the result into an output vector. @@ -932,7 +932,7 @@ public: * The input edges must form closed contours where holes and hulls must be oriented differently. * The input edges are processed with a simple non-zero wrap count rule as a whole. * - * This method produces polygons on output and allows to fine-tune the parameters for that purpose. + * This method produces polygons on output and allows one to fine-tune the parameters for that purpose. * * This is a convenience method that bundles filling of the edges, processing with * a Boolean operator and puts the result into an output vector. diff --git a/src/db/db/dbEdges.h b/src/db/db/dbEdges.h index 84de5a6b4..9ca70a5fe 100644 --- a/src/db/db/dbEdges.h +++ b/src/db/db/dbEdges.h @@ -332,7 +332,7 @@ public: /** * @brief Constructor from a RecursiveShapeIterator * - * Creates an edge set from a recursive shape iterator. This allows to feed an edge set + * Creates an edge set from a recursive shape iterator. This allows feeding an edge set * from a hierarchy of cells. */ explicit Edges (const RecursiveShapeIterator &si, bool as_edges = true); @@ -340,7 +340,7 @@ public: /** * @brief Constructor from a RecursiveShapeIterator with a transformation * - * Creates an edge set from a recursive shape iterator. This allows to feed an edge set + * Creates an edge set from a recursive shape iterator. This allows feeding an edge set * from a hierarchy of cells. The transformation is useful to scale to a specific * DBU for example. */ @@ -976,7 +976,7 @@ public: /** * @brief Returns edges (point-like) representing the start part of the edges * - * The length of the part can be choosen by length or a fraction of the original length. + * The length of the part can be chosen by length or a fraction of the original length. * If length and fraction are 0, a point at the beginning of the edge will be created. * If length is non-zero and fraction is 0, a segment in the direction of the edge * with the given length is created, even if the length is larger than the original diff --git a/src/db/db/dbEdgesUtils.h b/src/db/db/dbEdgesUtils.h index 8377bdde6..a2db45117 100644 --- a/src/db/db/dbEdgesUtils.h +++ b/src/db/db/dbEdgesUtils.h @@ -37,7 +37,7 @@ class PolygonSink; * * This filter has two parameters: lmin and lmax. * It will filter all edges for which the length is >= lmin and < lmax. - * There is an "invert" flag which allows to select all edges not + * There is an "invert" flag which allows selecting all edges not * matching the criterion. */ @@ -108,7 +108,7 @@ private: * This filter has two parameters: amin and amax. * It will filter all edges for which the orientation angle is >= amin and < amax. * The orientation angle is measured in degree against the x axis in the mathematical sense. - * There is an "invert" flag which allows to select all edges not + * There is an "invert" flag which allows selecting all edges not * matching the criterion. */ diff --git a/src/db/db/dbGlyphs.cc b/src/db/db/dbGlyphs.cc index 5b4b28839..320c3dbfa 100644 --- a/src/db/db/dbGlyphs.cc +++ b/src/db/db/dbGlyphs.cc @@ -36,6 +36,9 @@ #include +// compiled with "scripts/compile_glyphs.rb": +#include "glyphs.cc_gen" + namespace db { @@ -155,13 +158,21 @@ TextGenerator::load_from_resource (const std::string &name) QByteArray data = qUncompress (QByteArray ((const char *) res.data (), int (res.size ()))); + load_from_data (data.constData (), data.size (), tl::to_string (QFileInfo (tl::to_qstring (name)).baseName ()), name); +} +#endif + +void +TextGenerator::load_from_data (const char *data, size_t ndata, const std::string &name, const std::string &description) +{ db::Layout layout; - tl::InputMemoryStream memory_stream (data.constData (), data.size ()); + tl::InputMemoryStream memory_stream (data, ndata); tl::InputStream stream (memory_stream); db::Reader reader (stream); db::LayerMap map = reader.read (layout); - m_description = name; + m_description = description; + m_name = name; std::pair l1 = map.logical (db::LDPair (1, 0)); std::pair l2 = map.logical (db::LDPair (2, 0)); @@ -170,10 +181,7 @@ TextGenerator::load_from_resource (const std::string &name) if (l1.first && l2.first) { read_from_layout (layout, l1.second, l2.second, l3.second); } - - m_name = tl::to_string (QFileInfo (tl::to_qstring (name)).baseName ()); } -#endif void TextGenerator::load_from_file (const std::string &filename) @@ -323,22 +331,8 @@ TextGenerator::generators () s_fonts.clear (); -#if defined(HAVE_QT) - const char *resources[] = { - ":/fonts/std_font.gds" - }; - - for (size_t i = 0 ; i < sizeof (resources) / sizeof (resources [0]); ++i) { - try { - tl::log << "Loading font from resource " << resources [i] << " .."; - s_fonts.push_back (TextGenerator ()); - s_fonts.back ().load_from_resource (resources [i]); - } catch (tl::Exception &ex) { - tl::error << ex.msg (); - s_fonts.pop_back (); - } - } -#endif + // load the compiled-in glyphs + load_glyphs (s_fonts); // scan for font files for (std::vector::const_iterator p = s_font_paths.begin (); p != s_font_paths.end (); ++p) { diff --git a/src/db/db/dbGlyphs.h b/src/db/db/dbGlyphs.h index 56af413cd..98c564557 100644 --- a/src/db/db/dbGlyphs.h +++ b/src/db/db/dbGlyphs.h @@ -83,6 +83,11 @@ public: void load_from_resource (const std::string &name); #endif + /** + * @brief Loads from the given binary data + */ + void load_from_data (const char *data, size_t ndata, const std::string &name, const std::string &description); + /** * @brief Loads the font from the given file */ diff --git a/src/db/db/dbHershey.cc b/src/db/db/dbHershey.cc index 194019666..2abb5091c 100644 --- a/src/db/db/dbHershey.cc +++ b/src/db/db/dbHershey.cc @@ -67,7 +67,7 @@ struct HersheyFont int width, height; }; -#include "fonts.cc" +#include "fonts.cc_gen" const int line_spacing = 4; diff --git a/src/db/db/dbHierNetworkProcessor.h b/src/db/db/dbHierNetworkProcessor.h index 94fb0ec28..5d14a904a 100644 --- a/src/db/db/dbHierNetworkProcessor.h +++ b/src/db/db/dbHierNetworkProcessor.h @@ -306,7 +306,7 @@ public: /** * @brief Adds the given attribute to the attribute set * - * Attributes are arbitary IDs attached to clusters. + * Attributes are arbitrary IDs attached to clusters. * The attribute value 0 is reserved for "no attribute" and is not * put into the set. */ diff --git a/src/db/db/dbHierProcessor.cc b/src/db/db/dbHierProcessor.cc index a88743c18..da7a55c6b 100644 --- a/src/db/db/dbHierProcessor.cc +++ b/src/db/db/dbHierProcessor.cc @@ -138,7 +138,7 @@ template <> class shape_reference_translator { public: - typedef typename db::Edge shape_type; + typedef db::Edge shape_type; shape_reference_translator (db::Layout * /*target_layout*/) { @@ -476,7 +476,13 @@ local_processor_cell_contexts::compute_results (const local_processo CRONOLOGY_COMPUTE_BRACKET(event_propagate) c->second->propagate (res); +// gcc 4.4.7 (at least) doesn't have an operator== in std::unordered_set, so we skip this +// optimization +#if defined(__GNUC__) && __GNUC__ == 4 + } else { +#else } else if (res != common) { +#endif CRONOLOGY_COMPUTE_BRACKET(event_propagate) diff --git a/src/db/db/dbInstances.h b/src/db/db/dbInstances.h index a1daba495..381f04fb2 100644 --- a/src/db/db/dbInstances.h +++ b/src/db/db/dbInstances.h @@ -1262,7 +1262,7 @@ private: * The generic iterators are used to access these * * Internally, the instance list uses a box tree which treats empty cells as single point boxes when a all-layer search is performed. - * That allows to retrieve such instances with a search. + * That allows retrieving such instances with a search. */ class DB_PUBLIC Instances @@ -1655,7 +1655,7 @@ public: /** * @brief The parent instance list begin iterator * - * The begin_ParentInsts() allows to access to the parent instance list. + * The begin_parent_insts() method gives access to the parent instance list. */ ParentInstIterator begin_parent_insts (const layout_type *g) const { diff --git a/src/db/db/dbLayerProperties.h b/src/db/db/dbLayerProperties.h index 7a944041b..89242782e 100644 --- a/src/db/db/dbLayerProperties.h +++ b/src/db/db/dbLayerProperties.h @@ -138,7 +138,7 @@ struct LPLogicalLessFunc * @brief A layer offset * * This struct defines a layer offset which can be "added" to a LayerProperties object - * If the layer offset is defined with a name, any occurance of '*' in the string + * If the layer offset is defined with a name, any occurrence of '*' in the string * is replaced with the original name. This way, applying "*_A" with "+" yields a * postfix "_A" to the original layer name (if it is named). */ diff --git a/src/db/db/dbLayout.cc b/src/db/db/dbLayout.cc index 8cb3d62b8..90ba1e748 100644 --- a/src/db/db/dbLayout.cc +++ b/src/db/db/dbLayout.cc @@ -1304,7 +1304,7 @@ Layout::do_update () try { // if the hierarchy has been changed so far, update - // the hierarchy management informations + // the hierarchy management information if (hier_dirty ()) { { tl::SelfTimer timer (tl::verbosity () > layout_base_verbosity + 10, "Updating relations"); @@ -1324,7 +1324,7 @@ Layout::do_update () // if something on the bboxes (either on shape level or on // cell bbox level - i.e. by child instances) has been changed, - // update the bbox informations. In addition sort the shapes + // update the bbox information. In addition sort the shapes // lists of region queries, since they might have changed once // the bboxes are dirty. if (bboxes_dirty ()) { diff --git a/src/db/db/dbLayout.h b/src/db/db/dbLayout.h index 78a45c63f..08e06fb1a 100644 --- a/src/db/db/dbLayout.h +++ b/src/db/db/dbLayout.h @@ -512,7 +512,7 @@ public: Layout (db::Manager *manager = 0); /** - * @brief Standard constructor which allows to specify the editable mode + * @brief Standard constructor which allows one to specify editable mode */ Layout (bool editable, db::Manager *manager = 0); @@ -1433,7 +1433,7 @@ public: * @brief Forces an update even if the layout is under construction * * This method behaves like "update" but forces and update even if the - * "under_construction" state is active. This allows to do the update + * "under_construction" state is active. This allows one to do the update * in certain stages without triggering the update automatically and * too frequently. */ diff --git a/src/db/db/dbLayoutDiff.h b/src/db/db/dbLayoutDiff.h index afeebed1e..fc842bdc4 100644 --- a/src/db/db/dbLayoutDiff.h +++ b/src/db/db/dbLayoutDiff.h @@ -187,7 +187,7 @@ bool DB_PUBLIC compare_layouts (const db::Layout &a, const db::Layout &b, unsign /** * @brief Compare two layouts using the specified top cells * - * This function basically works like the previous one but allows to specify top cells which + * This function basically works like the previous one but allows one to specify top cells which * are compared hierarchically. */ bool DB_PUBLIC compare_layouts (const db::Layout &a, db::cell_index_type top_a, const db::Layout &b, db::cell_index_type top_b, unsigned int flags, db::Coord tolerance, DifferenceReceiver &r); diff --git a/src/db/db/dbLayoutQuery.h b/src/db/db/dbLayoutQuery.h index bcaf81d4c..48dd5e516 100644 --- a/src/db/db/dbLayoutQuery.h +++ b/src/db/db/dbLayoutQuery.h @@ -551,7 +551,7 @@ public: /** * @brief Increment the iterator: deliver the next state * - * This method is equivalent to operator++, but it allows to specify + * This method is equivalent to operator++, but it allows one to specify * a boolean parameter telling whether the operation requested shall be * skipped. This only applies to queries with an action like "delete" or "with". */ diff --git a/src/db/db/dbLayoutStateModel.h b/src/db/db/dbLayoutStateModel.h index 7ccc3e07f..0ea913994 100644 --- a/src/db/db/dbLayoutStateModel.h +++ b/src/db/db/dbLayoutStateModel.h @@ -95,7 +95,7 @@ public: * @brief Invalidate the bounding boxes * * This method is supposed to be called by shape containers for example if - * some event has occured that changed the bounding boxes. + * some event has occurred that changed the bounding boxes. * * If the index is std::numeric_limits::max, this method * applies to all layers. diff --git a/src/db/db/dbLayoutToNetlist.h b/src/db/db/dbLayoutToNetlist.h index 9bca6b617..e3f9436fe 100644 --- a/src/db/db/dbLayoutToNetlist.h +++ b/src/db/db/dbLayoutToNetlist.h @@ -471,7 +471,7 @@ public: * * No connection indicated (circuit_cell_name_prefix == 0: the net shapes are simply put into their * respective circuits. The connections are not indicated. * * Subnet hierarchy (circuit_cell_name_prefix != 0): for each root net, a full hierarchy is built - * to accomodate the subnets (see build_net in recursive mode). + * to accommodate the subnets (see build_net in recursive mode). * * If a device cell name prefix is given, cells will be produced for each device abstract * using a name like device_cell_name_prefix + device name. diff --git a/src/db/db/dbLayoutUtils.h b/src/db/db/dbLayoutUtils.h index 374413772..4eecd7448 100644 --- a/src/db/db/dbLayoutUtils.h +++ b/src/db/db/dbLayoutUtils.h @@ -66,7 +66,7 @@ private: }; /** - * @brief A property mapper based on a dynamic propery id generation + * @brief A property mapper based on a dynamic property id generation * * This class can be used as property mapper for certain "insert" flavors of * the Instance and Shapes class. diff --git a/src/db/db/dbLocalOperation.cc b/src/db/db/dbLocalOperation.cc index b219d5ca4..0789aa2d5 100644 --- a/src/db/db/dbLocalOperation.cc +++ b/src/db/db/dbLocalOperation.cc @@ -49,7 +49,7 @@ BoolAndOrNotLocalOperation::BoolAndOrNotLocalOperation (bool is_and) local_operation::on_empty_intruder_mode BoolAndOrNotLocalOperation::on_empty_intruder_hint () const { - return m_is_and ? local_operation::Drop : local_operation::Copy; + return m_is_and ? Drop : Copy; } std::string @@ -166,7 +166,7 @@ void SelfOverlapMergeLocalOperation::compute_local (db::Layout *layout, const sh SelfOverlapMergeLocalOperation::on_empty_intruder_mode SelfOverlapMergeLocalOperation::on_empty_intruder_hint () const { - return m_wrap_count > 1 ? local_operation::Drop : local_operation::Copy; + return m_wrap_count > 1 ? Drop : Copy; } std::string SelfOverlapMergeLocalOperation::description () const @@ -186,7 +186,7 @@ EdgeBoolAndOrNotLocalOperation::EdgeBoolAndOrNotLocalOperation (bool is_and) local_operation::on_empty_intruder_mode EdgeBoolAndOrNotLocalOperation::on_empty_intruder_hint () const { - return m_is_and ? local_operation::Drop : local_operation::Copy; + return m_is_and ? Drop : Copy; } std::string @@ -253,7 +253,7 @@ EdgeToPolygonLocalOperation::EdgeToPolygonLocalOperation (bool outside, bool inc local_operation::on_empty_intruder_mode EdgeToPolygonLocalOperation::on_empty_intruder_hint () const { - return m_outside ? local_operation::Copy : local_operation::Drop; + return m_outside ? Copy : Drop; } std::string diff --git a/src/db/db/dbManager.h b/src/db/db/dbManager.h index de523e23e..959720a8b 100644 --- a/src/db/db/dbManager.h +++ b/src/db/db/dbManager.h @@ -144,7 +144,7 @@ public: * @brief Undo the current transaction * * The current transaction is undone with this method. - * The 'available_undo' method can be used to determine wether + * The 'available_undo' method can be used to determine whether * there are transactions to undo. */ void undo (); @@ -153,7 +153,7 @@ public: * @brief Redo the next available transaction * * The next transaction is redone with this method. - * The 'available_redo' method can be used to determine wether + * The 'available_redo' method can be used to determine whether * there are transactions to undo. */ void redo (); @@ -204,7 +204,7 @@ public: /** * @brief Get the last queued db::Op object * - * This method allows to fetch and modify the last queued operation for the given object in order + * This method allows one to fetch and modify the last queued operation for the given object in order * to allow some optimisation, i.e. joining two ops. It can be modified but must not * be deleted. The returned object is guaranteed to be inside same transaction. * diff --git a/src/db/db/dbMatrix.h b/src/db/db/dbMatrix.h index 912cce6f5..223914795 100644 --- a/src/db/db/dbMatrix.h +++ b/src/db/db/dbMatrix.h @@ -845,7 +845,7 @@ public: /** * @brief Get the x perspective tilt angle in degree * - * To achieve the same visual effect, a different tilt angle has to be choosen for + * To achieve the same visual effect, a different tilt angle has to be chosen for * a given observer distance z. This method computes the tilt angle for the given observer * distance. */ @@ -854,7 +854,7 @@ public: /** * @brief Get the y perspective tilt angle in degree * - * To achieve the same visual effect, a different tilt angle has to be choosen for + * To achieve the same visual effect, a different tilt angle has to be chosen for * a given observer distance z. This method computes the tilt angle for the given observer * distance. */ @@ -868,7 +868,7 @@ public: /** * @brief Returns the matrix for perspective transformation * - * To achieve the same visual effect, a different tilt angle has to be choosen for + * To achieve the same visual effect, a different tilt angle has to be chosen for * a given observer distance z. This method computes the tilt angle for the given observer * distance. * @@ -970,7 +970,7 @@ struct MatrixAdjustFlags * @param landmarks_before The points before the transformation. * @param landmarks_after The points after the transformation. * @param flags Selects the properties to adjust. - * @param fixed_point The index of the fixed point (one that is definitly mapped to the target) or -1 if there is none + * @param fixed_point The index of the fixed point (one that is definitely mapped to the target) or -1 if there is none */ void DB_PUBLIC adjust_matrix (Matrix2d &matrix, db::DVector &disp, const std::vector &landmarks_before, const std::vector &landmarks_after, MatrixAdjustFlags::Flags flags, int fixed_point = -1); @@ -986,7 +986,7 @@ void DB_PUBLIC adjust_matrix (Matrix2d &matrix, db::DVector &disp, const std::ve * @param landmarks_before The points before the transformation. * @param landmarks_after The points after the transformation. * @param flags Selects the properties to adjust. - * @param fixed_point The index of the fixed point (one that is definitly mapped to the target) or -1 if there is none + * @param fixed_point The index of the fixed point (one that is definitely mapped to the target) or -1 if there is none */ void DB_PUBLIC adjust_matrix (Matrix3d &matrix, const std::vector &landmarks_before, const std::vector &landmarks_after, MatrixAdjustFlags::Flags flags, int fixed_point = -1); diff --git a/src/db/db/dbMetaInfo.h b/src/db/db/dbMetaInfo.h index a3f92a552..b304c3a27 100644 --- a/src/db/db/dbMetaInfo.h +++ b/src/db/db/dbMetaInfo.h @@ -34,7 +34,7 @@ namespace db /** * @brief A structure describing the meta information from the reader * - * In the meta information block, the reader provides additional informations + * In the meta information block, the reader provides additional information * about the file and content etc. * "name" is a unique name that can be used to identify the information. * "description" is a "speaking" description of the information. diff --git a/src/db/db/dbNet.h b/src/db/db/dbNet.h index 6baa895b9..39227c3a7 100644 --- a/src/db/db/dbNet.h +++ b/src/db/db/dbNet.h @@ -446,7 +446,7 @@ public: /** * @brief Gets the qualified name * - * The qualified name is like the expanded name, but preceeded with the + * The qualified name is like the expanded name, but preceded with the * Circuit name if known (e.g. "CIRCUIT:NET") */ std::string qname () const; diff --git a/src/db/db/dbNetlistDeviceExtractor.cc b/src/db/db/dbNetlistDeviceExtractor.cc index b2ff51302..77edf3b83 100644 --- a/src/db/db/dbNetlistDeviceExtractor.cc +++ b/src/db/db/dbNetlistDeviceExtractor.cc @@ -173,6 +173,16 @@ void NetlistDeviceExtractor::extract (db::Layout &layout, db::Cell &cell, const extract_without_initialize (layout, cell, clusters, layers); } +namespace { + +struct ExtractorCacheValueType { + ExtractorCacheValueType () { } + db::Vector disp; + tl::vector devices; +}; + +} + void NetlistDeviceExtractor::extract_without_initialize (db::Layout &layout, db::Cell &cell, hier_clusters_type &clusters, const std::vector &layers) { tl_assert (layers.size () == m_layer_definitions.size ()); @@ -233,12 +243,6 @@ void NetlistDeviceExtractor::extract_without_initialize (db::Layout &layout, db: tl::RelativeProgress progress (tl::to_string (tr ("Extracting devices")), n, 1); - struct ExtractorCacheValueType { - ExtractorCacheValueType () { } - db::Vector disp; - tl::vector devices; - }; - typedef std::map, ExtractorCacheValueType> extractor_cache_type; extractor_cache_type extractor_cache; diff --git a/src/db/db/dbNetlistDeviceExtractor.h b/src/db/db/dbNetlistDeviceExtractor.h index eba997f58..ed82c0266 100644 --- a/src/db/db/dbNetlistDeviceExtractor.h +++ b/src/db/db/dbNetlistDeviceExtractor.h @@ -123,7 +123,7 @@ public: } /** - * @brief Gets the cell name the error occured in + * @brief Gets the cell name the error occurred in */ const std::string &cell_name () const { diff --git a/src/db/db/dbNetlistSpiceWriter.cc b/src/db/db/dbNetlistSpiceWriter.cc index e2c7586fa..9bde4c2d0 100644 --- a/src/db/db/dbNetlistSpiceWriter.cc +++ b/src/db/db/dbNetlistSpiceWriter.cc @@ -194,7 +194,7 @@ std::string NetlistSpiceWriterDelegate::format_params (const db::Device &dev) co // -------------------------------------------------------------------------------- NetlistSpiceWriter::NetlistSpiceWriter (NetlistSpiceWriterDelegate *delegate) - : mp_netlist (0), mp_stream (0), mp_delegate (delegate) + : mp_netlist (0), mp_stream (0), mp_delegate (delegate), m_use_net_names (false) { static NetlistSpiceWriterDelegate std_delegate; if (! delegate) { @@ -207,6 +207,11 @@ NetlistSpiceWriter::~NetlistSpiceWriter () // .. nothing yet .. } +void NetlistSpiceWriter::set_use_net_names (bool use_net_names) +{ + m_use_net_names = use_net_names; +} + void NetlistSpiceWriter::write (tl::OutputStream &stream, const db::Netlist &netlist, const std::string &description) { mp_stream = &stream; @@ -233,12 +238,48 @@ void NetlistSpiceWriter::write (tl::OutputStream &stream, const db::Netlist &net std::string NetlistSpiceWriter::net_to_string (const db::Net *net) const { - std::map::const_iterator n = m_net_to_spice_id.find (net); - if (! net || n == m_net_to_spice_id.end ()) { - // TODO: this should assert or similar - return "0"; + if (m_use_net_names) { + + if (! net) { + + return "0"; + + } else { + + // Tested with ngspice: this tool likes in net names: . $ ! & \ # + : | (but not at beginning) + // It does not like: , ; + // We translate , to | for the net separator + + std::string n = net->expanded_name (); + std::string nn; + nn.reserve (n.size () + 1); + if (!isalnum (*n.c_str ())) { + nn += "\\"; + } + for (const char *cp = n.c_str (); *cp; ++cp) { + if (! isalnum (*cp) && strchr (".$!&\\#+:,", *cp) == 0) { + nn += tl::sprintf ("\\x%02x", (unsigned char) *cp); + } else if (*cp == ',') { + nn += "|"; + } else { + nn += *cp; + } + } + + return nn; + + } + } else { - return tl::to_string (n->second); + + std::map::const_iterator n = m_net_to_spice_id.find (net); + if (! net || n == m_net_to_spice_id.end ()) { + // TODO: this should assert or similar + return "0"; + } else { + return tl::to_string (n->second); + } + } } @@ -389,9 +430,11 @@ void NetlistSpiceWriter::write_circuit_header (const db::Circuit &circuit) const emit_line (os.str ()); - for (db::Circuit::const_net_iterator n = circuit.begin_nets (); n != circuit.end_nets (); ++n) { - if (! n->name ().empty ()) { - emit_comment ("net " + net_to_string (n.operator-> ()) + " " + n->name ()); + if (! m_use_net_names) { + for (db::Circuit::const_net_iterator n = circuit.begin_nets (); n != circuit.end_nets (); ++n) { + if (! n->name ().empty ()) { + emit_comment ("net " + net_to_string (n.operator-> ()) + " " + n->name ()); + } } } } diff --git a/src/db/db/dbNetlistSpiceWriter.h b/src/db/db/dbNetlistSpiceWriter.h index 2a5dfb418..ac3e83e97 100644 --- a/src/db/db/dbNetlistSpiceWriter.h +++ b/src/db/db/dbNetlistSpiceWriter.h @@ -86,6 +86,12 @@ public: virtual void write (tl::OutputStream &stream, const db::Netlist &netlist, const std::string &description); + void set_use_net_names (bool use_net_names); + bool use_net_names () const + { + return m_use_net_names; + } + private: friend class NetlistSpiceWriterDelegate; @@ -93,6 +99,7 @@ private: tl::OutputStream *mp_stream; tl::weak_ptr mp_delegate; std::map m_net_to_spice_id; + bool m_use_net_names; void do_write (const std::string &description); diff --git a/src/db/db/dbPath.h b/src/db/db/dbPath.h index 30e92e290..2788978f1 100644 --- a/src/db/db/dbPath.h +++ b/src/db/db/dbPath.h @@ -255,7 +255,7 @@ public: /** * @brief Constructor that provides conversion and transformation * - * This constructor allows to convert a path from any type to this one. + * This constructor allows converting a path from any type to this one. * In addition, transformation operators can be provided that specify * how to transform points and lengths. * @@ -278,7 +278,7 @@ public: /** * @brief Constructor that provides conversion from another coordinate type * - * This constructor allows to convert a path from any type to this one. + * This constructor allows converting a path from any type to this one. * * @param p The source path */ @@ -738,7 +738,7 @@ public: * hull polygon. The resulting pointlist is not guaranteed not to * be self-overlapping. * - * This version allows to override the left and right side's width hence creating + * This version allows one to override the left and right side's width hence creating * asymmetric paths. dleft is the shift to the left (as seen in the direction of the * path) and dright the shift to the right. The default path is created if dleft+dright=width. */ @@ -1011,7 +1011,7 @@ struct path_ref /** * @brief The translation constructor. * - * This constructor allows to copy a path reference from one + * This constructor allows one to copy a path reference from one * repository to another */ path_ref (const path_ref &ref, repository_type &rep) @@ -1023,7 +1023,7 @@ struct path_ref /** * @brief The transformation translation constructor * - * This constructor allows to copy a path reference with a certain transformation + * This constructor allows one to copy a path reference with a certain transformation * to one with another transformation */ template diff --git a/src/db/db/dbPoint.h b/src/db/db/dbPoint.h index 23c157afa..dc6d93b7a 100644 --- a/src/db/db/dbPoint.h +++ b/src/db/db/dbPoint.h @@ -86,7 +86,7 @@ public: /** * @brief The copy constructor that also converts * - * The copy constructor allows to convert between different + * The copy constructor allows one to convert between different * coordinate types, if possible. * * @param d The source from which to copy @@ -270,7 +270,7 @@ public: * @brief String conversion * * If dbu is set, it determines the factor by which the coordinates are multiplied to render - * micron units. In addition, a micron format is choosen for output of these coordinates. + * micron units. In addition, a micron format is chosen for output of these coordinates. */ std::string to_string (double dbu) const diff --git a/src/db/db/dbPolygon.h b/src/db/db/dbPolygon.h index 639d696f4..d05b51cb2 100644 --- a/src/db/db/dbPolygon.h +++ b/src/db/db/dbPolygon.h @@ -3051,7 +3051,7 @@ public: /** * @brief The translation constructor. * - * This constructor allows to copy a polygon reference from one + * This constructor allows one to copy a polygon reference from one * repository to another */ polygon_ref (const polygon_ref &ref, repository_type &rep) @@ -3063,7 +3063,7 @@ public: /** * @brief The transformation translation constructor * - * This constructor allows to copy a polygon reference with a certain transformation + * This constructor allows one to copy a polygon reference with a certain transformation * to one with another transformation */ template diff --git a/src/db/db/dbPolygonGenerators.h b/src/db/db/dbPolygonGenerators.h index 0c48add15..8beeddd93 100644 --- a/src/db/db/dbPolygonGenerators.h +++ b/src/db/db/dbPolygonGenerators.h @@ -63,7 +63,7 @@ public: * @brief Constructor * * This constructor takes the polygon receiver (of which is keeps a reference). - * It allows to specify how holes are resolved and how touching corners are resolved. + * It allows one to specify how holes are resolved and how touching corners are resolved. * * @param psink The polygon receiver * @param resolve_holes true, if holes should be resolved into the hull using stich lines @@ -75,7 +75,7 @@ public: * @brief Constructor * * This constructor takes the simple polygon receiver (of which is keeps a reference). - * It allows to specify how touching corners are resolved. Holes are always resolved since this is + * It allows one to specify how touching corners are resolved. Holes are always resolved since this is * the only way to create a simple polygon. * * @param spsink The simple polygon receiver diff --git a/src/db/db/dbPolygonTools.h b/src/db/db/dbPolygonTools.h index 0f915cd0d..1f9723d59 100644 --- a/src/db/db/dbPolygonTools.h +++ b/src/db/db/dbPolygonTools.h @@ -39,7 +39,7 @@ class SimplePolygonSink; /** * @brief An inside test operator * - * This class allows to efficiently test whether multiple points are inside a given polygon. + * This class allows an efficient test whether multiple points are inside a given polygon. * Since the test is efficiently implemented when the polygon edges are sorted, the sorting * and memory allocation step is performed once in the test operator's constructor while * each individual test is performed efficiently. @@ -118,7 +118,7 @@ void cut_polygon (const PolygonType &input, const typename PolygonType::edge_typ * @brief Split a polygon into two or more parts * * This function splits a polygon into parts using some heuristics to determine a "suitable" cut line. - * The cut line is choosen through a vertex close to a center (either horizontal or vertical). The splitting + * The cut line is chosen through a vertex close to a center (either horizontal or vertical). The splitting * is supposed to create smaller parts with less vertices or a better area ratio of polygon to bounding box area. * * @param polygon The input polygon diff --git a/src/db/db/dbRegion.h b/src/db/db/dbRegion.h index 30a322d88..c2c940e21 100644 --- a/src/db/db/dbRegion.h +++ b/src/db/db/dbRegion.h @@ -834,7 +834,7 @@ public: /** * @brief Returns an edge set containing all edges of the polygons in this region * - * This version allows to specify a filter by which the edges are filtered before they are + * This version allows one to specify a filter by which the edges are filtered before they are * returned. * * Merged semantics applies. In merged semantics, only full, outer edges are delivered. @@ -1574,7 +1574,7 @@ public: * @brief Constructor specifying the region where to store the polygons * * If "clear" is set to true, the region will be cleared before the - * inserting of polygons starts. This allows to use the region as input and + * inserting of polygons starts. This allows using the region as input and * output for any operation. */ RegionPolygonSink (Region ®ion, bool clear = false) diff --git a/src/db/db/dbRegionUtils.h b/src/db/db/dbRegionUtils.h index 90f437b35..ce847fd9e 100644 --- a/src/db/db/dbRegionUtils.h +++ b/src/db/db/dbRegionUtils.h @@ -36,7 +36,7 @@ namespace db { * * This filter has two parameters: pmin and pmax. * It will filter all polygons for which the perimeter is >= pmin and < pmax. - * There is an "invert" flag which allows to select all polygons not + * There is an "invert" flag which allows selecting all polygons not * matching the criterion. */ @@ -104,7 +104,7 @@ private: * * This filter has two parameters: amin and amax. * It will filter all polygons for which the area is >= amin and < amax. - * There is an "invert" flag which allows to select all polygons not + * There is an "invert" flag which allows selecting all polygons not * matching the criterion. */ @@ -266,7 +266,7 @@ private: * * This filter has two parameters: vmin and vmax. * It will filter all polygons for which the selected bounding box parameter is >= vmin and < vmax. - * There is an "invert" flag which allows to select all polygons not + * There is an "invert" flag which allows selecting all polygons not * matching the criterion. * * For bounding box parameters the following choices are available: diff --git a/src/db/db/dbResources.qrc b/src/db/db/dbResources.qrc index 209e6dde3..7cfa1f516 100644 --- a/src/db/db/dbResources.qrc +++ b/src/db/db/dbResources.qrc @@ -1,11 +1,8 @@ - - std_font.gds - - + built-in-macros/pcell_declaration_helper.lym - + built-in-pymacros/pcell_declaration_helper.lym diff --git a/src/db/db/dbShapeRepository.h b/src/db/db/dbShapeRepository.h index fd5c67a5f..39abdb17a 100644 --- a/src/db/db/dbShapeRepository.h +++ b/src/db/db/dbShapeRepository.h @@ -257,7 +257,7 @@ struct shape_ref /** * @brief The translation constructor. * - * This constructor allows to copy a shape reference from one + * This constructor allows one to copy a shape reference from one * repository to another */ shape_ref (const shape_ref &ref, repository_type &rep) @@ -272,7 +272,7 @@ struct shape_ref /** * @brief The translation operator. * - * This assignment allows to assign a reference in one repository + * This assignment allows assigning a reference in one repository * to a reference in another repository */ void translate (const shape_ref &ref, repository_type &rep, db::ArrayRepository &) @@ -288,7 +288,7 @@ struct shape_ref /** * @brief The translation operator with transformation. * - * This assignment allows to assign a reference in one repository + * This assignment allows assigning a reference in one repository * to a reference in another repository */ template @@ -309,7 +309,7 @@ struct shape_ref /** * @brief The translation operator. * - * This operator allows to change a reference to another repository. + * This operator allows changing a reference to another repository. */ void translate (repository_type &rep) { diff --git a/src/db/db/dbShapes.h b/src/db/db/dbShapes.h index bc5100f8f..a7ca38687 100644 --- a/src/db/db/dbShapes.h +++ b/src/db/db/dbShapes.h @@ -53,7 +53,7 @@ class ArrayRepository; * @brief A generic shape iterator * * This iterator can iterate any kind of shape from a "shapes" container. - * It allows to select certain kind of shapes. The dereferecing operator + * It allows selecting certain kind of shapes. The dereferecing operator * returns a shape proxy object that can be used to access the actual shape. * It can iterator over all shapes and over a region selected. * If the iterator is constructed, it always points to the beginning of the @@ -208,7 +208,7 @@ public: * @param box The region to select * @param mode See above * @param flags The kind of shapes to iterate over (or-ed constants of flags_type) - * @param prop_sel The propery selection + * @param prop_sel The property selection * @param inv_prop_sel True, if shapes not matching the property selection shall be reported */ ShapeIterator (const shapes_type &shapes, const box_type &box, region_mode mode, unsigned int flags = All, const property_selector *prop_sel = 0, bool inv_prop_sel = false); @@ -514,7 +514,7 @@ public: * @brief Default ctor: create an empty collection of shapes without external references * * Such shape containers can be used for example to store temporary shape sets - * This version allows to specify whether the container should be created in editable mode + * This version allows one to specify whether the container should be created in editable mode * or insert-once mode. */ Shapes (bool editable) @@ -607,7 +607,7 @@ public: /** * @brief Assignment operator with transformation and property id mapping * - * This version allows to specify a property mapping function. That way, shapes can be copied from + * This version allows one to specify a property mapping function. That way, shapes can be copied from * one layout space to another. */ template @@ -620,7 +620,7 @@ public: /** * @brief Assignment operator with property id mapping * - * In contrast to the operator= version allows to specify a property mapping function. That way, shapes can be copied from + * In contrast to the operator= version allows one to specify a property mapping function. That way, shapes can be copied from * one layout space to another. */ template @@ -676,7 +676,7 @@ public: * * This method insert all shapes from the given shape container using the specified transformation. * - * This version allows to specify a property mapping function. That way, shapes can be copied from + * This version allows one to specify a property mapping function. That way, shapes can be copied from * one layout space to another. */ template @@ -715,7 +715,7 @@ public: * * This method insert all shapes from the given shape container using the specified transformation. * - * In contrast to the operator= version allows to specify a property mapping function. That way, shapes can be copied from + * In contrast to the operator= version allows one to specify a property mapping function. That way, shapes can be copied from * one layout space to another. */ template diff --git a/src/db/db/dbShapes2.h b/src/db/db/dbShapes2.h index abb084086..8308ab030 100644 --- a/src/db/db/dbShapes2.h +++ b/src/db/db/dbShapes2.h @@ -33,10 +33,10 @@ namespace db /** * @brief A traits class for the various shape types * - * This class provides informations about various properties of the shape class, i.e. - * - wether the objects must be dereferenced into standanlone containers - * - wether the objects are arrays, potentially using the array repository - * - wether the objects have properties + * This class provides information about various properties of the shape class, i.e. + * - whether the objects must be dereferenced into standanlone containers + * - whether the objects are arrays, potentially using the array repository + * - whether the objects have properties */ template struct shape_traits diff --git a/src/db/db/dbStreamLayers.h b/src/db/db/dbStreamLayers.h index 9ea8d90f1..f1a5ac100 100644 --- a/src/db/db/dbStreamLayers.h +++ b/src/db/db/dbStreamLayers.h @@ -99,12 +99,12 @@ struct DB_PUBLIC LDPair * * The mapping object provides a lookup for a given input layer * (called "physical layer") to a logical layer specified as - * a layer index used inside db::Layout. The object allows to - * look up a layer index for a given layer/datatype/name. + * a layer index used inside db::Layout. The object allows + * looking up a layer index for a given layer/datatype/name. * - * It also allows to specify a target layer per logical layer. That + * It also allows one to specify a target layer per logical layer. That * is the information attached to the layer when it is actually created. - * This allows to map an input layer to another layer specification + * This allows mapping an input layer to another layer specification * and effectively rename a layer or add layer name information to * a GDS layer/datatype layer. * diff --git a/src/db/db/dbText.h b/src/db/db/dbText.h index e80d39662..f69000a1f 100644 --- a/src/db/db/dbText.h +++ b/src/db/db/dbText.h @@ -154,7 +154,7 @@ inline void mem_stat (MemStatistics *stat, MemStatistics::purpose_t purpose, int * @brief A string repository class * * A string repository holds StringRef objects. - * It acts as a factory for StringRef objects and allows to rename strings. + * It acts as a factory for StringRef objects and allows one to rename strings. */ class DB_PUBLIC StringRepository { @@ -987,7 +987,7 @@ struct text_ref /** * @brief The translation constructor. * - * This constructor allows to copy a text reference from one + * This constructor allows one to copy a text reference from one * repository to another */ text_ref (const text_ref &ref, repository_type &rep) @@ -999,7 +999,7 @@ struct text_ref /** * @brief The transformation translation constructor * - * This constructor allows to copy a text reference with a certain transformation + * This constructor allows one to copy a text reference with a certain transformation * to one with another transformation */ template diff --git a/src/db/db/dbTilingProcessor.cc b/src/db/db/dbTilingProcessor.cc index ac4439914..5e36ab8fe 100644 --- a/src/db/db/dbTilingProcessor.cc +++ b/src/db/db/dbTilingProcessor.cc @@ -910,7 +910,7 @@ TilingProcessor::execute (const std::string &desc) } if (job.has_error ()) { - throw tl::Exception (tl::to_string (tr ("Errors occured during processing. First error message says:\n")) + job.error_messages ().front ()); + throw tl::Exception (tl::to_string (tr ("Errors occurred during processing. First error message says:\n")) + job.error_messages ().front ()); } } diff --git a/src/db/db/dbTrans.h b/src/db/db/dbTrans.h index edd541894..f12958134 100644 --- a/src/db/db/dbTrans.h +++ b/src/db/db/dbTrans.h @@ -739,7 +739,7 @@ public: /** * @brief The copy constructor that converts also * - * The copy constructor allows to convert between different + * The copy constructor allows converting between different * coordinate types, if possible. * * @param d The source from which to copy @@ -1093,7 +1093,7 @@ public: /** * @brief The copy constructor that converts to a different coordinate type also * - * The copy constructor allows to convert between different + * The copy constructor allows converting between different * coordinate types, if possible. * * @param d The source from which to copy @@ -1433,7 +1433,7 @@ operator<< (std::ostream &os, const simple_trans &t) /** * @brief A complex transformation * - * A complex transformation provides magnification, mirroring at the x-axis, rotation by an arbitary + * A complex transformation provides magnification, mirroring at the x-axis, rotation by an arbitrary * angle and a displacement. The template parameters for this transformation are * I (the input coordinate type), F (the output coordinate type) and R (the representation * type used internally for representing the floating-point members). @@ -1625,7 +1625,7 @@ public: /** * @brief The copy constructor that converts also * - * The copy constructor allows to convert between different + * The copy constructor allows converting between different * coordinate types, if possible. * * @param d The source from which to copy @@ -2134,7 +2134,7 @@ public: /** * @brief String conversion * - * The lazy and micron flags allow to customize the output somewhat. + * The lazy and micron flags allow customization of the output to some degree. * When lazy is set to true, output that is not required (i.e. magnification when 1) * is dropped. If dbu is set, the coordinates are multiplied with this factor to render micron units. */ diff --git a/src/db/db/dbTypes.h b/src/db/db/dbTypes.h index 764e3b6bc..943e9dbfe 100644 --- a/src/db/db/dbTypes.h +++ b/src/db/db/dbTypes.h @@ -382,7 +382,7 @@ struct coord_traits /** * @brief Coord_traits specialisation for double coordinates * - * The precision is choosen such that the double coordinate + * The precision is chosen such that the double coordinate * can represent "micrometers" with a physical resolution limit of 0.01 nm. * The area precision will render reliable vector product signs for vectors * of roughly up to 60 mm length. diff --git a/src/db/db/dbUserObject.h b/src/db/db/dbUserObject.h index c3a4bbec7..bd3dacc8c 100644 --- a/src/db/db/dbUserObject.h +++ b/src/db/db/dbUserObject.h @@ -435,7 +435,7 @@ public: /** * @brief The generic factory * - * This factory allows to create a user object from a given string and class name. + * This factory creates an user object from a given string and class name. */ template class user_object_factory diff --git a/src/db/db/dbVector.h b/src/db/db/dbVector.h index 0d81a11a0..c166e094d 100644 --- a/src/db/db/dbVector.h +++ b/src/db/db/dbVector.h @@ -129,7 +129,7 @@ public: /** * @brief The copy constructor that converts also * - * The copy constructor allows to convert between different + * The copy constructor allows converting between different * coordinate types, if possible. * * @param d The source from which to copy @@ -312,7 +312,7 @@ public: * @brief String conversion * * If dbu is set, it determines the factor by which the coordinates are multiplied to render - * micron units. In addition, a micron format is choosen for output of these coordinates. + * micron units. In addition, a micron format is chosen for output of these coordinates. */ std::string to_string (double dbu) const diff --git a/src/db/db/fonts.cc b/src/db/db/fonts.cc_gen similarity index 100% rename from src/db/db/fonts.cc rename to src/db/db/fonts.cc_gen diff --git a/src/db/db/glyphs.cc_gen b/src/db/db/glyphs.cc_gen new file mode 100644 index 000000000..abc5394dc --- /dev/null +++ b/src/db/db/glyphs.cc_gen @@ -0,0 +1,3616 @@ +/** + * THIS FILE HAS BEEN CREATED AUTOMATICALLY BY "compile_glyphs.rb" + * DO NOT EDIT! + */ + +// File: std_font.gds +static const char *name_1 = "std_font"; +static const char *description_1 = "std_font.gds"; +static const uint8_t data_1[] = { + 0x00, 0x06, 0x00, 0x02, 0x02, 0x58, 0x00, 0x1c, + 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x02, 0x06, 0x4c, 0x49, + 0x42, 0x00, 0x00, 0x14, 0x03, 0x05, 0x3e, 0x41, + 0x89, 0x37, 0x4b, 0xc6, 0xa7, 0xf0, 0x39, 0x44, + 0xb8, 0x2f, 0xa0, 0x9b, 0x5a, 0x54, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x34, + 0x34, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x5c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x35, + 0x39, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x4c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x90, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x35, + 0x38, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x90, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x33, + 0x39, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x36, + 0x33, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0xac, 0x10, 0x03, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x36, + 0x31, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x33, + 0x38, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x01, 0x1c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x8a, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0x8a, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0xc2, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x33, + 0x33, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x33, + 0x36, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x01, 0x1c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xc2, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0xc2, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x34, + 0x37, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x4c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x8a, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0x8a, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x39, + 0x32, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x4c, 0x10, 0x03, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x8a, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x8a, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x33, + 0x34, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x39, + 0x34, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x64, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x36, + 0x34, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0xe4, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x01, 0xc2, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x31, 0x32, + 0x36, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x6c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x45, 0x00, 0x00, 0x02, 0x71, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0xaf, 0x00, 0x00, 0x02, 0x3f, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x33, + 0x35, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x01, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x34, + 0x32, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x01, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0xc2, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0xc2, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x01, 0xc2, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0xc2, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x00, 0x64, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x39, + 0x33, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x4c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x39, + 0x31, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x4c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x34, + 0x31, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x6c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x34, + 0x30, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x6c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x39, + 0x35, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x34, + 0x33, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x6c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xc2, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xc2, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x96, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x34, + 0x36, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x34, + 0x35, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xc2, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xc2, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x33, + 0x32, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, 0x30, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x94, 0x10, 0x03, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, 0x00, 0xc8, + 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, 0x00, 0xc8, + 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, 0x00, 0xc8, + 0x00, 0x00, 0x00, 0xfa, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x06, 0x06, 0x49, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x6c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x06, 0x06, 0x48, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x6c, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, + 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, + 0x47, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0xbc, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, 0x46, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x5c, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x06, 0x06, 0x45, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x6c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x06, 0x06, 0x44, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x7c, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0xc8, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, + 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, + 0x43, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0xac, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, 0x42, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0xc4, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xc2, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x06, 0x06, 0x41, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x9c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x06, 0x06, 0x4a, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x7c, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0xc8, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, + 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, + 0x4b, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x94, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, 0x4c, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x3c, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x06, 0x06, 0x4d, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x84, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x06, 0x06, 0x4e, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x74, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x01, 0xc2, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xc2, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0xfa, + 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, + 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, + 0x4f, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0xac, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, 0x50, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x7c, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x06, 0x06, 0x51, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0xd4, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x06, 0x06, 0x52, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0xb4, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xc2, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0xfa, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, + 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, + 0x53, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0xec, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, 0x54, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x4c, 0x10, 0x03, 0x00, 0x00, 0x00, 0xc8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x06, 0x06, 0x55, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x6c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x06, 0x06, 0x56, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x64, 0x10, 0x03, + 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0xfa, + 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0xfa, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0xc8, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, + 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, + 0x57, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x7c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, 0x58, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0xbc, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0xfa, + 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0xfa, + 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x06, 0x06, 0x59, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x74, + 0x10, 0x03, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x01, 0xc2, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x06, 0x06, 0x5a, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x8c, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, + 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, + 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, + 0x31, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x74, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, 0x32, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0xbc, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x06, 0x06, 0x33, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0xf4, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0xc2, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x06, 0x06, 0x34, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x9c, 0x10, 0x03, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfa, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0xfa, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0xfa, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xfa, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0xfa, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0xfa, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, + 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, + 0x35, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0xac, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, 0x36, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0xbc, 0x10, 0x03, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0xc8, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0xfa, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, + 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, + 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x06, 0x06, 0x06, 0x37, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x5c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x02, 0xbc, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x02, 0xee, 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x03, 0x20, 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x07, 0x00, 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x06, 0x06, 0x38, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x01, 0x0c, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x00, 0x32, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x01, 0xc2, + 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x01, 0xc2, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x02, 0x26, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0x58, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0x90, + 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, 0x01, 0x5e, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0xfa, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0x96, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0xfa, + 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x01, 0x2c, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, + 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, + 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, + 0x00, 0x00, 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, + 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, + 0x00, 0x06, 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, + 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, + 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, + 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, + 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x06, 0x06, + 0x39, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0xbc, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x33, + 0x37, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x4c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x8a, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0x8a, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x8a, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x8a, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0x26, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x36, + 0x30, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x4c, 0x10, 0x03, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x64, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x30, 0x36, + 0x32, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x4c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0xc8, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x31, 0x32, + 0x33, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x9c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x00, 0x96, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x01, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x31, 0x32, + 0x34, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x90, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x06, 0x06, 0x31, 0x32, + 0x35, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x01, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x9c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x96, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x01, 0x2c, 0x00, 0x00, + 0x01, 0x2c, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x01, 0x90, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x02, 0x26, 0x00, 0x00, + 0x00, 0xc8, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x01, 0xc2, 0x00, 0x00, + 0x01, 0xc2, 0x00, 0x00, 0x01, 0x5e, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0xfa, 0x00, 0x00, + 0x01, 0x5e, 0x00, 0x00, 0x00, 0x64, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x0a, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x02, 0xbc, 0x00, 0x00, + 0x01, 0xf4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x02, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0x00, 0x00, 0x02, 0xee, 0x00, 0x00, + 0x02, 0x26, 0xff, 0xff, 0xff, 0xce, 0xff, 0xff, + 0xff, 0xce, 0xff, 0xff, 0xff, 0xce, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x08, 0x00, 0x00, 0x06, + 0x0d, 0x02, 0x00, 0x03, 0x00, 0x06, 0x0e, 0x02, + 0x00, 0x00, 0x00, 0x2c, 0x10, 0x03, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0x00, 0x00, 0x03, 0x20, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xff, 0x9c, 0xff, 0xff, + 0xff, 0x9c, 0xff, 0xff, 0xff, 0x9c, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x1c, + 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0c, 0x06, 0x06, 0x43, 0x4f, + 0x4d, 0x4d, 0x45, 0x4e, 0x54, 0x00, 0x00, 0x04, + 0x08, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, + 0x00, 0x06, 0x0e, 0x02, 0x00, 0x00, 0x00, 0x2c, + 0x10, 0x03, 0xff, 0xff, 0xfe, 0x70, 0xff, 0xff, + 0xff, 0x6a, 0xff, 0xff, 0xfe, 0x70, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x32, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, + 0xff, 0x6a, 0xff, 0xff, 0xfe, 0x70, 0xff, 0xff, + 0xff, 0x6a, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0c, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, + 0x00, 0x06, 0x16, 0x02, 0x00, 0x00, 0x00, 0x06, + 0x17, 0x01, 0x00, 0x08, 0x00, 0x0c, 0x10, 0x03, + 0xff, 0xff, 0xfe, 0xa2, 0xff, 0xff, 0xff, 0x9c, + 0x00, 0x12, 0x19, 0x06, 0x64, 0x65, 0x73, 0x69, + 0x67, 0x6e, 0x5f, 0x67, 0x72, 0x69, 0x64, 0x3d, + 0x35, 0x30, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0c, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, + 0x00, 0x06, 0x16, 0x02, 0x00, 0x00, 0x00, 0x06, + 0x17, 0x01, 0x00, 0x08, 0x00, 0x0c, 0x10, 0x03, + 0xff, 0xff, 0xfe, 0xa2, 0xff, 0xff, 0xff, 0xce, + 0x00, 0x12, 0x19, 0x06, 0x6c, 0x69, 0x6e, 0x65, + 0x5f, 0x77, 0x69, 0x64, 0x74, 0x68, 0x3d, 0x31, + 0x30, 0x30, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0c, 0x00, 0x00, 0x06, 0x0d, 0x02, 0x00, 0x01, + 0x00, 0x06, 0x16, 0x02, 0x00, 0x00, 0x00, 0x06, + 0x17, 0x01, 0x00, 0x08, 0x00, 0x06, 0x1a, 0x01, + 0x00, 0x00, 0x00, 0x0c, 0x1b, 0x05, 0x41, 0x10, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0xff, 0xff, 0xfe, 0xa2, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x26, 0x19, 0x06, 0x4e, 0x6f, + 0x6e, 0x2d, 0x6d, 0x61, 0x6e, 0x68, 0x61, 0x74, + 0x74, 0x61, 0x6e, 0x20, 0x28, 0x30, 0x2e, 0x36, + 0x20, 0x78, 0x20, 0x30, 0x2e, 0x38, 0x20, 0x75, + 0x6d, 0x20, 0x63, 0x65, 0x6c, 0x6c, 0x29, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, + 0x00, 0x1c, 0x05, 0x02, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x06, 0x06, + 0x43, 0x48, 0x41, 0x52, 0x41, 0x43, 0x54, 0x45, + 0x52, 0x53, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, + 0x12, 0x06, 0x30, 0x00, 0x00, 0x0c, 0x10, 0x03, + 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfc, 0x18, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, + 0x00, 0x06, 0x12, 0x06, 0x49, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x12, 0xc0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, 0x48, 0x00, + 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, 0x10, 0x68, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, + 0x47, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x0e, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, + 0x12, 0x06, 0x46, 0x00, 0x00, 0x0c, 0x10, 0x03, + 0x00, 0x00, 0x0b, 0xb8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, + 0x00, 0x06, 0x12, 0x06, 0x45, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x09, 0x60, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, 0x44, 0x00, + 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, 0x07, 0x08, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, + 0x43, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x04, 0xb0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, + 0x12, 0x06, 0x42, 0x00, 0x00, 0x0c, 0x10, 0x03, + 0x00, 0x00, 0x02, 0x58, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, + 0x00, 0x06, 0x12, 0x06, 0x41, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, 0x4a, 0x00, + 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, 0x15, 0x18, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, + 0x4b, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x17, 0x70, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, + 0x12, 0x06, 0x4c, 0x00, 0x00, 0x0c, 0x10, 0x03, + 0x00, 0x00, 0x19, 0xc8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, + 0x00, 0x06, 0x12, 0x06, 0x4d, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x1c, 0x20, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, 0x4e, 0x00, + 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, 0x1e, 0x78, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, + 0x4f, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x20, 0xd0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, + 0x12, 0x06, 0x50, 0x00, 0x00, 0x0c, 0x10, 0x03, + 0x00, 0x00, 0x23, 0x28, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, + 0x00, 0x06, 0x12, 0x06, 0x51, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x25, 0x80, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, 0x52, 0x00, + 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, 0x27, 0xd8, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, + 0x53, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x2a, 0x30, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, + 0x12, 0x06, 0x54, 0x00, 0x00, 0x0c, 0x10, 0x03, + 0x00, 0x00, 0x2c, 0x88, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, + 0x00, 0x06, 0x12, 0x06, 0x55, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x2e, 0xe0, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, 0x56, 0x00, + 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, 0x31, 0x38, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, + 0x57, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x33, 0x90, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, + 0x12, 0x06, 0x58, 0x00, 0x00, 0x0c, 0x10, 0x03, + 0x00, 0x00, 0x35, 0xe8, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, + 0x00, 0x06, 0x12, 0x06, 0x59, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x38, 0x40, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, 0x5a, 0x00, + 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, 0x3a, 0x98, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, + 0x31, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xfc, 0x18, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, + 0x12, 0x06, 0x32, 0x00, 0x00, 0x0c, 0x10, 0x03, + 0x00, 0x00, 0x04, 0xb0, 0xff, 0xff, 0xfc, 0x18, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, + 0x00, 0x06, 0x12, 0x06, 0x33, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x07, 0x08, 0xff, 0xff, + 0xfc, 0x18, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, 0x34, 0x00, + 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, 0x09, 0x60, + 0xff, 0xff, 0xfc, 0x18, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, + 0x35, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x0b, 0xb8, 0xff, 0xff, 0xfc, 0x18, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, + 0x12, 0x06, 0x36, 0x00, 0x00, 0x0c, 0x10, 0x03, + 0x00, 0x00, 0x0e, 0x10, 0xff, 0xff, 0xfc, 0x18, + 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, + 0x00, 0x06, 0x12, 0x06, 0x37, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x10, 0x68, 0xff, 0xff, + 0xfc, 0x18, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, 0x38, 0x00, + 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, 0x12, 0xc0, + 0xff, 0xff, 0xfc, 0x18, 0x00, 0x04, 0x11, 0x00, + 0x00, 0x04, 0x0a, 0x00, 0x00, 0x06, 0x12, 0x06, + 0x39, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x15, 0x18, 0xff, 0xff, 0xfc, 0x18, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x30, 0x33, 0x32, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, + 0xf8, 0x30, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x30, 0x34, + 0x35, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x1e, 0x78, 0xff, 0xff, 0xf8, 0x30, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x30, 0x34, 0x36, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x20, 0xd0, 0xff, 0xff, + 0xf8, 0x30, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x30, 0x34, + 0x33, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x19, 0xc8, 0xff, 0xff, 0xf8, 0x30, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x30, 0x39, 0x35, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x09, 0x60, 0xff, 0xff, + 0xf0, 0x60, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x30, 0x34, + 0x30, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x12, 0xc0, 0xff, 0xff, 0xf8, 0x30, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x30, 0x34, 0x31, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x15, 0x18, 0xff, 0xff, + 0xf8, 0x30, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x30, 0x39, + 0x31, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0xff, 0xff, 0xf0, 0x60, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x30, 0x39, 0x33, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x04, 0xb0, 0xff, 0xff, + 0xf0, 0x60, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x30, 0x34, + 0x32, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x17, 0x70, 0xff, 0xff, 0xf8, 0x30, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x30, 0x33, 0x35, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x07, 0x08, 0xff, 0xff, + 0xf8, 0x30, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x31, 0x32, + 0x36, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x07, 0x08, 0xff, 0xff, 0xec, 0x78, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x30, 0x36, 0x34, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x0e, 0x10, 0xff, 0xff, + 0xf4, 0x48, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x30, 0x39, + 0x34, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x07, 0x08, 0xff, 0xff, 0xf0, 0x60, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x30, 0x33, 0x34, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x04, 0xb0, 0xff, 0xff, + 0xf8, 0x30, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x30, 0x39, + 0x32, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x02, 0x58, 0xff, 0xff, 0xf0, 0x60, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x30, 0x34, 0x37, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x23, 0x28, 0xff, 0xff, + 0xf8, 0x30, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x30, 0x33, + 0x36, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x09, 0x60, 0xff, 0xff, 0xf8, 0x30, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x30, 0x33, 0x33, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, + 0xf8, 0x30, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x30, 0x33, + 0x38, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x0e, 0x10, 0xff, 0xff, 0xf8, 0x30, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x30, 0x36, 0x31, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x07, 0x08, 0xff, 0xff, + 0xf4, 0x48, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x30, 0x36, + 0x33, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x0b, 0xb8, 0xff, 0xff, 0xf4, 0x48, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x30, 0x33, 0x39, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x10, 0x68, 0xff, 0xff, + 0xf8, 0x30, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x30, 0x35, + 0x38, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0xff, 0xff, 0xf4, 0x48, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x30, 0x35, 0x39, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, + 0xf4, 0x48, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x30, 0x34, + 0x34, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x1c, 0x20, 0xff, 0xff, 0xf8, 0x30, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x30, 0x33, 0x37, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x0b, 0xb8, 0xff, 0xff, + 0xf8, 0x30, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x30, 0x36, + 0x30, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x04, 0xb0, 0xff, 0xff, 0xf4, 0x48, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x30, 0x36, 0x32, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x09, 0x60, 0xff, 0xff, + 0xf4, 0x48, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x31, 0x32, + 0x33, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x00, 0x00, 0xff, 0xff, 0xec, 0x78, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x0a, 0x00, 0x00, 0x08, + 0x12, 0x06, 0x31, 0x32, 0x34, 0x00, 0x00, 0x0c, + 0x10, 0x03, 0x00, 0x00, 0x02, 0x58, 0xff, 0xff, + 0xec, 0x78, 0x00, 0x04, 0x11, 0x00, 0x00, 0x04, + 0x0a, 0x00, 0x00, 0x08, 0x12, 0x06, 0x31, 0x32, + 0x35, 0x00, 0x00, 0x0c, 0x10, 0x03, 0x00, 0x00, + 0x04, 0xb0, 0xff, 0xff, 0xec, 0x78, 0x00, 0x04, + 0x11, 0x00, 0x00, 0x04, 0x07, 0x00, 0x00, 0x04, + 0x04, 0x00, + 0xff // dummy +}; + +static void load_glyphs (std::vector &generators) +{ + generators.push_back (db::TextGenerator ()); + generators.back ().load_from_data ((const char *) data_1, sizeof (data_1) - 1, name_1, description_1); +} diff --git a/src/db/db/std_font.gds b/src/db/db/glyphs/std_font.gds similarity index 100% rename from src/db/db/std_font.gds rename to src/db/db/glyphs/std_font.gds diff --git a/src/db/db/gsiDeclDbCell.cc b/src/db/db/gsiDeclDbCell.cc index 92e13c342..a68571bfe 100644 --- a/src/db/db/gsiDeclDbCell.cc +++ b/src/db/db/gsiDeclDbCell.cc @@ -1805,7 +1805,7 @@ Class decl_Cell ("db", "Cell", "@args file_name, options\n" "The format of the file will be determined from the file name. Only the cell and " "it's subtree below will be saved.\n" - "In contrast to the other 'write' method, this version allows to specify save options, i.e. " + "In contrast to the other 'write' method, this version allows one to specify save options, i.e. " "scaling etc.\n" "\n" "This method has been introduced in version 0.23.\n" @@ -1814,7 +1814,7 @@ Class decl_Cell ("db", "Cell", "@brief Returns the shapes list of the given layer\n" "@args layer_index\n" "\n" - "This method allows to access the shapes list on a certain layer.\n" + "This method gives access to the shapes list on a certain layer.\n" "If the layer does not exist yet, it is created.\n" "\n" "@param index The layer index of the shapes list to retrieve\n" @@ -1926,7 +1926,7 @@ Class decl_Cell ("db", "Cell", "\n" "This deletes all sub cells of the cell which are not used otherwise.\n" "All instances of the deleted cells are deleted as well.\n" - "A version of this method exists which allows to specify the number of hierarchy levels " + "A version of this method exists which allows one to specify the number of hierarchy levels " "to which subcells are considered.\n" "\n" "This method has been introduced in version 0.23.\n" @@ -1948,7 +1948,7 @@ Class decl_Cell ("db", "Cell", "\n" "This deletes the cell and also all sub cells of the cell which are not used otherwise.\n" "All instances of this cell are deleted as well.\n" - "A version of this method exists which allows to specify the number of hierarchy levels " + "A version of this method exists which allows one to specify the number of hierarchy levels " "to which subcells are considered.\n" "\n" "After the cell has been deleted, the Cell object becomes invalid. Do " @@ -1980,7 +1980,7 @@ Class decl_Cell ("db", "Cell", "It also removes the instances of the cells from which the shapes came from, but does not remove the cells themselves if prune is set to false.\n" "If prune is set to true, these cells are removed if not used otherwise.\n" "\n" - "A version of this method exists which allows to specify the number of hierarchy levels " + "A version of this method exists which allows one to specify the number of hierarchy levels " "to which subcells are considered.\n" "\n" "@param prune Set to true to remove orphan cells.\n" @@ -2016,7 +2016,7 @@ Class decl_Cell ("db", "Cell", "The algorithm supports a global fill raster as well as local (per-polygon) origin optimization. In the latter case " "the origin of the regular raster is optimized per individual polygon of the fill region.\n" "\n" - "A more elaborate version of this method is available which also returns informations about the non-filled parts.\n" + "A more elaborate version of this method is available which also returns information about the non-filled parts.\n" "\n" "This method has been introduced in version 0.23.\n" ) + @@ -2045,7 +2045,7 @@ Class decl_Cell ("db", "Cell", "'remaining_parts' and 'remaining_polygons' can be identical with the input. In that case the input will be overwritten with " "the respective output. Otherwise, the respective polygons are added to these regions.\n" "\n" - "This allows to set up a more elaborate fill scheme using multiple iterations and local origin-optimization ('origin' is nil):\n" + "This allows setting up a more elaborate fill scheme using multiple iterations and local origin-optimization ('origin' is nil):\n" "\n" "@code\n" "r = ... # region to fill\n" @@ -2493,7 +2493,7 @@ Class decl_Cell ("db", "Cell", gsi::method ("insert", (db::Instance (db::Cell::*)(const db::Instance &)) &db::Cell::insert, gsi::arg ("inst"), "@brief Inserts a cell instance given by another reference\n" "@return An Instance object representing the new instance\n" - "This method allows to copy instances taken from a reference (an \\Instance object).\n" + "This method allows one to copy instances taken from a reference (an \\Instance object).\n" "This method is not suited to inserting instances from other Layouts into this cell. For this " "purpose, the hierarchical copy methods of \\Layout have to be used.\n" "\n" @@ -2914,7 +2914,7 @@ Class decl_Cell ("db", "Cell", "@brief Returns a reference to the PCell declaration\n" "If this cell is not a PCell variant, this method returns nil.\n" "PCell variants are proxy cells which are PCell incarnations for a specific parameter set.\n" - "The \\PCellDeclaration object allows to retrieve PCell parameter definitions for example.\n" + "The \\PCellDeclaration object allows one to retrieve PCell parameter definitions for example.\n" "\n" "This method has been introduced in version 0.22.\n" ) + @@ -2922,7 +2922,7 @@ Class decl_Cell ("db", "Cell", "@brief Returns the PCell declaration of a pcell instance\n" "@args instance\n" "If the instance is not a PCell instance, this method returns nil.\n" - "The \\PCellDeclaration object allows to retrieve PCell parameter definitions for example.\n" + "The \\PCellDeclaration object allows one to retrieve PCell parameter definitions for example.\n" "\n" "This method has been introduced in version 0.22.\n" ) + @@ -3060,7 +3060,7 @@ Class decl_Cell ("db", "Cell", "@brief A cell\n" "\n" "A cell object consists of a set of shape containers (called layers),\n" - "a set of child cell instances and auxiliary informations such as\n" + "a set of child cell instances and auxiliary information such as\n" "the parent instance list.\n" "A cell is identified through an index given to the cell upon instantiation.\n" "Cell instances refer to single instances or array instances. Both are encapsulated in the\n" diff --git a/src/db/db/gsiDeclDbEdge.cc b/src/db/db/gsiDeclDbEdge.cc index 4cf150859..42beeb401 100644 --- a/src/db/db/gsiDeclDbEdge.cc +++ b/src/db/db/gsiDeclDbEdge.cc @@ -630,7 +630,7 @@ Class decl_Edge ("db", "Edge", "An edge is a connection between points, usually participating in a larger context " "such as a polygon. An edge has a defined direction (from p1 to p2). " "Edges play a role in the database as parts of polygons and to describe a line through both points.\n" - "Altough supported, edges are rarely used as individual database objects.\n" + "Although supported, edges are rarely used as individual database objects.\n" "\n" "See @The Database API@ for more details about the " "database objects like the Edge class." @@ -678,7 +678,7 @@ Class decl_DEdge ("db", "DEdge", "such as a polygon. An edge has a defined direction (from p1 to p2). " "Edges play a role in the database as parts of polygons and to describe a line through both points.\n" "The \\Edge object is also used inside the boolean processor (\\EdgeProcessor).\n" - "Altough supported, edges are rarely used as individual database objects.\n" + "Although supported, edges are rarely used as individual database objects.\n" "\n" "See @The Database API@ for more details about the " "database objects like the Edge class." diff --git a/src/db/db/gsiDeclDbEdgePair.cc b/src/db/db/gsiDeclDbEdgePair.cc index 17e763dba..ed4e77bee 100644 --- a/src/db/db/gsiDeclDbEdgePair.cc +++ b/src/db/db/gsiDeclDbEdgePair.cc @@ -106,7 +106,7 @@ struct edge_pair_defs "The polygon is formed by connecting the end and start points of the edges. It is recommended to " "use \\normalized before converting the edge pair to a polygon.\n" "\n" - "The enlargement parameter allows to apply the specified enlargement parallel and perpendicular to the " + "The enlargement parameter applies the specified enlargement parallel and perpendicular to the " "edges. Basically this introduces a bias which blows up edge pairs by the specified amount. That parameter " "is useful to convert degenerated edge pairs to valid polygons, i.e. edge pairs with coincident edges and " "edge pairs consisting of two point-like edges.\n" @@ -119,7 +119,7 @@ struct edge_pair_defs "The polygon is formed by connecting the end and start points of the edges. It is recommended to " "use \\normalized before converting the edge pair to a polygon.\n" "\n" - "The enlargement parameter allows to apply the specified enlargement parallel and perpendicular to the " + "The enlargement parameter applies the specified enlargement parallel and perpendicular to the " "edges. Basically this introduces a bias which blows up edge pairs by the specified amount. That parameter " "is useful to convert degenerated edge pairs to valid polygons, i.e. edge pairs with coincident edges and " "edge pairs consisting of two point-like edges.\n" diff --git a/src/db/db/gsiDeclDbEdgePairs.cc b/src/db/db/gsiDeclDbEdgePairs.cc index 6bef742c6..dcb4476e4 100644 --- a/src/db/db/gsiDeclDbEdgePairs.cc +++ b/src/db/db/gsiDeclDbEdgePairs.cc @@ -485,7 +485,7 @@ Class decl_EdgePairs ("db", "EdgePairs", "@args e\n" "This method creates polygons from the edge pairs. Each polygon will be a triangle or quadrangle " "which connects the start and end points of the edges forming the edge pair. " - "This version allows to specify an enlargement which is applied to the edges. The length of the edges is " + "This version allows one to specify an enlargement which is applied to the edges. The length of the edges is " "modified by applying the enlargement and the edges are shifted by the enlargement. By specifying an " "enlargement it is possible to give edge pairs an area which otherwise would not have one (coincident edges, " "two point-like edges)." diff --git a/src/db/db/gsiDeclDbEdgeProcessor.cc b/src/db/db/gsiDeclDbEdgeProcessor.cc index 0ec50f08f..5cf905c38 100644 --- a/src/db/db/gsiDeclDbEdgeProcessor.cc +++ b/src/db/db/gsiDeclDbEdgeProcessor.cc @@ -222,7 +222,7 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "This method has been added in version 0.22.\n" "\n" "The mode specifies the rule to use when producing output. A value of 0 specifies the even-odd rule. " - "A positive value specfies the wrap count threshold (postive only). A negative value specifies the " + "A positive value specifies the wrap count threshold (positive only). A negative value specifies the " "threshold of the absolute value of the wrap count (i.e. -1 is non-zero rule).\n" "\n" "@param mode See description\n" @@ -238,7 +238,7 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "The other merge operation provided for this purpose is \"merge\" which normalizes each polygon individually before\n" "merging them. \"simple_merge\" is somewhat faster and consumes less memory.\n" "\n" - "This method produces polygons and allows to fine-tune the parameters for that purpose.\n" + "This method produces polygons and allows fine-tuning of the parameters for that purpose.\n" "\n" "This is a convenience method that bundles filling of the edges, processing with\n" "a SimpleMerge operator and puts the result into an output vector.\n" @@ -260,7 +260,7 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "The other merge operation provided for this purpose is \"merge\" which normalizes each polygon individually before\n" "merging them. \"simple_merge\" is somewhat faster and consumes less memory.\n" "\n" - "This method produces polygons and allows to fine-tune the parameters for that purpose.\n" + "This method produces polygons and allows fine-tuning of the parameters for that purpose.\n" "\n" "This is a convenience method that bundles filling of the edges, processing with\n" "a SimpleMerge operator and puts the result into an output vector.\n" @@ -268,7 +268,7 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "This method has been added in version 0.22.\n" "\n" "The mode specifies the rule to use when producing output. A value of 0 specifies the even-odd rule. " - "A positive value specfies the wrap count threshold (postive only). A negative value specifies the " + "A positive value specifies the wrap count threshold (positive only). A negative value specifies the " "threshold of the absolute value of the wrap count (i.e. -1 is non-zero rule).\n" "\n" "@param mode See description\n" @@ -281,7 +281,7 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "@brief Merge the given edges in a simple \"non-zero wrapcount\" fashion\n" "@args in\n" "\n" - "The egdes provided must form valid closed contours. Contours oriented differently \"cancel\" each other. \n" + "The edges provided must form valid closed contours. Contours oriented differently \"cancel\" each other. \n" "Overlapping contours are merged when the orientation is the same.\n" "\n" "The result is presented as a set of edges forming closed contours. Hulls are oriented clockwise while\n" @@ -300,7 +300,7 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "@brief Merge the given polygons and specify the merge mode\n" "@args in, mode\n" "\n" - "The egdes provided must form valid closed contours. Contours oriented differently \"cancel\" each other. \n" + "The edges provided must form valid closed contours. Contours oriented differently \"cancel\" each other. \n" "Overlapping contours are merged when the orientation is the same.\n" "\n" "The result is presented as a set of edges forming closed contours. Hulls are oriented clockwise while\n" @@ -312,7 +312,7 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "This method has been added in version 0.22.\n" "\n" "The mode specifies the rule to use when producing output. A value of 0 specifies the even-odd rule. " - "A positive value specfies the wrap count threshold (postive only). A negative value specifies the " + "A positive value specifies the wrap count threshold (positive only). A negative value specifies the " "threshold of the absolute value of the wrap count (i.e. -1 is non-zero rule).\n" "\n" "@param mode See description\n" @@ -323,10 +323,10 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "@brief Merge the given edges in a simple \"non-zero wrapcount\" fashion into polygons\n" "@args in, resolve_holes, min_coherence\n" "\n" - "The egdes provided must form valid closed contours. Contours oriented differently \"cancel\" each other. \n" + "The edges provided must form valid closed contours. Contours oriented differently \"cancel\" each other. \n" "Overlapping contours are merged when the orientation is the same.\n" "\n" - "This method produces polygons and allows to fine-tune the parameters for that purpose.\n" + "This method produces polygons and allows fine-tuning of the parameters for that purpose.\n" "\n" "This is a convenience method that bundles filling of the edges, processing with\n" "a SimpleMerge operator and puts the result into an output vector.\n" @@ -343,10 +343,10 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "@brief Merge the given polygons and specify the merge mode\n" "@args in, resolve_holes, min_coherence, mode\n" "\n" - "The egdes provided must form valid closed contours. Contours oriented differently \"cancel\" each other. \n" + "The edges provided must form valid closed contours. Contours oriented differently \"cancel\" each other. \n" "Overlapping contours are merged when the orientation is the same.\n" "\n" - "This method produces polygons and allows to fine-tune the parameters for that purpose.\n" + "This method produces polygons and allows fine-tuning of the parameters for that purpose.\n" "\n" "This is a convenience method that bundles filling of the edges, processing with\n" "a SimpleMerge operator and puts the result into an output vector.\n" @@ -354,7 +354,7 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "This method has been added in version 0.22.\n" "\n" "The mode specifies the rule to use when producing output. A value of 0 specifies the even-odd rule. " - "A positive value specfies the wrap count threshold (postive only). A negative value specifies the " + "A positive value specifies the wrap count threshold (positive only). A negative value specifies the " "threshold of the absolute value of the wrap count (i.e. -1 is non-zero rule).\n" "\n" "@param mode See description\n" @@ -369,7 +369,7 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "\n" "In contrast to \"simple_merge\", this merge implementation considers each polygon individually before merging them.\n" "Thus self-overlaps are effectively removed before the output is computed and holes are correctly merged with the\n" - "hull. In addition, this method allows to select areas with a higher wrap count which allows to compute overlaps\n" + "hull. In addition, this method allows selecting areas with a higher wrap count which in turn allows computing overlaps\n" "of polygons on the same layer. Because this method merges the polygons before the overlap is computed, self-overlapping\n" "polygons do not contribute to higher wrap count areas.\n" "\n" @@ -389,11 +389,11 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "\n" "In contrast to \"simple_merge\", this merge implementation considers each polygon individually before merging them.\n" "Thus self-overlaps are effectively removed before the output is computed and holes are correctly merged with the\n" - "hull. In addition, this method allows to select areas with a higher wrap count which allows to compute overlaps\n" + "hull. In addition, this method allows selecting areas with a higher wrap count which in turn allows computing overlaps\n" "of polygons on the same layer. Because this method merges the polygons before the overlap is computed, self-overlapping\n" "polygons do not contribute to higher wrap count areas.\n" "\n" - "This method produces polygons and allows to fine-tune the parameters for that purpose.\n" + "This method produces polygons and allows fine-tuning of the parameters for that purpose.\n" "\n" "Prior to version 0.21 this method was called 'merge_to_polygon'. Is was renamed to avoid ambiguities " "for empty input arrays. The old version is still available but deprecated.\n" @@ -412,7 +412,7 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "on the individual result polygons of the merge step. The result may contain overlapping contours, but no self-overlaps. \n" "\n" "dx and dy describe the sizing. A positive value indicates oversize (outwards) while a negative one describes undersize (inwards).\n" - "The sizing applied can be choosen differently in x and y direction. In this case, the sign must be identical for both\n" + "The sizing applied can be chosen differently in x and y direction. In this case, the sign must be identical for both\n" "dx and dy.\n" "\n" "The 'mode' parameter describes the corner fill strategy. Mode 0 connects all corner segments directly. Mode 1 is the 'octagon' strategy in which " @@ -441,7 +441,7 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "Polygon overlap occures if the polygons are close enough, so a positive sizing makes polygons overlap.\n" "\n" "dx and dy describe the sizing. A positive value indicates oversize (outwards) while a negative one describes undersize (inwards).\n" - "The sizing applied can be choosen differently in x and y direction. In this case, the sign must be identical for both\n" + "The sizing applied can be chosen differently in x and y direction. In this case, the sign must be identical for both\n" "dx and dy.\n" "\n" "The 'mode' parameter describes the corner fill strategy. Mode 0 connects all corner segments directly. Mode 1 is the 'octagon' strategy in which " @@ -449,7 +449,7 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "edges form a sharp bend with an angle of more than 90 degree. In that case, the corners are cut off. In Mode 3, no cutoff occures up to a bending angle of 135 degree. " "Mode 4 and 5 are even more aggressive and allow very sharp bends without cutoff. This strategy may produce long spikes on sharply bending corners. " "\n" - "This method produces polygons and allows to fine-tune the parameters for that purpose.\n" + "This method produces polygons and allows fine-tuning of the parameters for that purpose.\n" "\n" "Prior to version 0.21 this method was called 'size_to_polygon'. Is was renamed to avoid ambiguities " "for empty input arrays. The old version is still available but deprecated.\n" @@ -516,7 +516,7 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "@args a, b, mode, resolve_holes, min_coherence\n" "\n" "This method computes the result for the given boolean operation on two sets of polygons.\n" - "This method produces polygons on output and allows to fine-tune the parameters for that purpose.\n" + "This method produces polygons on output and allows fine-tuning of the parameters for that purpose.\n" "\n" "This is a convenience method that bundles filling of the edges, processing with\n" "a Boolean operator and puts the result into an output vector.\n" @@ -558,7 +558,7 @@ Class decl_EdgeProcessor ("db", "EdgeProcessor", "The input edges must form closed contours where holes and hulls must be oriented differently. \n" "The input edges are processed with a simple non-zero wrap count rule as a whole.\n" "\n" - "This method produces polygons on output and allows to fine-tune the parameters for that purpose.\n" + "This method produces polygons on output and allows fine-tuning of the parameters for that purpose.\n" "\n" "Prior to version 0.21 this method was called 'boolean_to_polygon'. Is was renamed to avoid ambiguities " "for empty input arrays. The old version is still available but deprecated.\n" diff --git a/src/db/db/gsiDeclDbEdges.cc b/src/db/db/gsiDeclDbEdges.cc index 31a44b39e..0ab75e021 100644 --- a/src/db/db/gsiDeclDbEdges.cc +++ b/src/db/db/gsiDeclDbEdges.cc @@ -423,7 +423,7 @@ Class dec_Edges ("db", "Edges", "The edges form the contours of the polygons.\n" ) + constructor ("new", &new_a2, gsi::arg ("array"), - "@brief Constructor from an egde array\n" + "@brief Constructor from an edge array\n" "\n" "This constructor creates a region from an array of edges.\n" ) + @@ -500,7 +500,7 @@ Class dec_Edges ("db", "Edges", "\n" "This constructor creates an edge collection from the shapes delivered by the given recursive shape iterator.\n" "It feeds the shapes from a hierarchy of cells into the hierarchical edge set.\n" - "The edges remain within their original hierachy unless other operations require the edges to be moved in the hierarchy.\n" + "The edges remain within their original hierarchy unless other operations require the edges to be moved in the hierarchy.\n" "\n" "Text objects are not inserted, because they cannot be converted to edges.\n" "Edge objects are inserted as such. If \"as_edges\" is true, \"solid\" objects (boxes, polygons, paths) are converted to edges which " @@ -519,7 +519,7 @@ Class dec_Edges ("db", "Edges", "\n" "This constructor creates an edge collection from the shapes delivered by the given recursive shape iterator.\n" "It feeds the shapes from a hierarchy of cells into the hierarchical edge set.\n" - "The edges remain within their original hierachy unless other operations require the edges to be moved in the hierarchy.\n" + "The edges remain within their original hierarchy unless other operations require the edges to be moved in the hierarchy.\n" "The transformation is useful to scale to a specific database unit for example.\n" "\n" "Text objects are not inserted, because they cannot be converted to edges.\n" @@ -550,7 +550,7 @@ Class dec_Edges ("db", "Edges", "@code\n" "dots = RBA::Edges::new(iter, \"*\") # all texts\n" "dots = RBA::Edges::new(iter, \"A*\") # all texts starting with an 'A'\n" - "dots = RBA::Edges::new(iter, \"A*\", false) # all texts exactly matchin 'A*'\n" + "dots = RBA::Edges::new(iter, \"A*\", false) # all texts exactly matching 'A*'\n" "@/code\n" "\n" "This method has been introduced in version 0.26.\n" @@ -571,7 +571,7 @@ Class dec_Edges ("db", "Edges", "@code\n" "region = RBA::Region::new(iter, dss, \"*\") # all texts\n" "region = RBA::Region::new(iter, dss, \"A*\") # all texts starting with an 'A'\n" - "region = RBA::Region::new(iter, dss, \"A*\", false) # all texts exactly matchin 'A*'\n" + "region = RBA::Region::new(iter, dss, \"A*\", false) # all texts exactly matching 'A*'\n" "@/code\n" "\n" "This method has been introduced in version 0.26.\n" @@ -1062,7 +1062,7 @@ Class dec_Edges ("db", "Edges", "To understand the overlap check for edges, one has to be familiar with the concept of the inside and outside " "interpretation of an edge. An edge is considered a boundary between \"inside\" and \"outside\" where \"inside\" " "is right to the edge. Although there is not necessarily a contiguous region for edges, the definition of the " - "inside part allows to specify edge relations which are denoted by \"space\", \"width\", \"inside\" and \"enclosing\". " + "inside part allows one to specify edge relations which are denoted by \"space\", \"width\", \"inside\" and \"enclosing\". " "In that sense, width means that another edge is anti-parallel and left to the edge under test with a distance of less than the given " "threshold." "\n" @@ -1096,7 +1096,7 @@ Class dec_Edges ("db", "Edges", "Setting this value to 90 (the default) will exclude edges with an angle of 90 degree or more from the check.\n" "Use nil for this value to select the default.\n" "\n" - "\"min_projection\" and \"max_projection\" allow to select edges by their projected value upon each other. " + "\"min_projection\" and \"max_projection\" allow selecting edges by their projected value upon each other. " "It is sufficient if the projection of one edge on the other matches the specified condition. " "The projected length must be larger or equal to \"min_projection\" and less than \"max_projection\". " "If you don't want to specify one threshold, pass nil to the respective value.\n" @@ -1107,7 +1107,7 @@ Class dec_Edges ("db", "Edges", "To understand the space check for edges, one has to be familiar with the concept of the inside and outside " "interpretation of an edge. An edge is considered a boundary between \"inside\" and \"outside\" where \"inside\" " "is right to the edge. Although there is not necessarily a contiguous region for edges, the definition of the " - "inside part allows to specify edge relations which are denoted by \"space\", \"width\", \"inside\" and \"enclosing\". " + "inside part allows one to specify edge relations which are denoted by \"space\", \"width\", \"inside\" and \"enclosing\". " "In that sense, space means that another edge is anti-parallel and right to the edge under test with a distance of less than the given " "threshold." "\n" @@ -1141,7 +1141,7 @@ Class dec_Edges ("db", "Edges", "Setting this value to 90 (the default) will exclude edges with an angle of 90 degree or more from the check.\n" "Use nil for this value to select the default.\n" "\n" - "\"min_projection\" and \"max_projection\" allow to select edges by their projected value upon each other. " + "\"min_projection\" and \"max_projection\" allow selecting edges by their projected value upon each other. " "It is sufficient if the projection of one edge on the other matches the specified condition. " "The projected length must be larger or equal to \"min_projection\" and less than \"max_projection\". " "If you don't want to specify one threshold, pass nil to the respective value.\n" @@ -1153,7 +1153,7 @@ Class dec_Edges ("db", "Edges", "To understand the inside check for edges, one has to be familiar with the concept of the inside and outside " "interpretation of an edge. An edge is considered a boundary between \"inside\" and \"outside\" where \"inside\" " "is right to the edge. Although there is not necessarily a contiguous region for edges, the definition of the " - "inside part allows to specify edge relations which are denoted by \"space\", \"width\", \"inside\" and \"enclosing\". " + "inside part allows one to specify edge relations which are denoted by \"space\", \"width\", \"inside\" and \"enclosing\". " "In that sense, inside means that another edge is parallel and right to the edge under test with a distance of less than the given " "threshold." "\n" @@ -1188,7 +1188,7 @@ Class dec_Edges ("db", "Edges", "Setting this value to 90 (the default) will exclude edges with an angle of 90 degree or more from the check.\n" "Use nil for this value to select the default.\n" "\n" - "\"min_projection\" and \"max_projection\" allow to select edges by their projected value upon each other. " + "\"min_projection\" and \"max_projection\" allow selecting edges by their projected value upon each other. " "It is sufficient if the projection of one edge on the other matches the specified condition. " "The projected length must be larger or equal to \"min_projection\" and less than \"max_projection\". " "If you don't want to specify one threshold, pass nil to the respective value.\n" @@ -1200,7 +1200,7 @@ Class dec_Edges ("db", "Edges", "To understand the enclosing check for edges, one has to be familiar with the concept of the inside and outside " "interpretation of an edge. An edge is considered a boundary between \"inside\" and \"outside\" where \"inside\" " "is right to the edge. Although there is not necessarily a contiguous region for edges, the definition of the " - "inside part allows to specify edge relations which are denoted by \"space\", \"width\", \"inside\" and \"enclosing\". " + "inside part allows one to specify edge relations which are denoted by \"space\", \"width\", \"inside\" and \"enclosing\". " "In that sense, enclosing means that another edge is parallel and left to the edge under test with a distance of less than the given " "threshold." "\n" @@ -1235,7 +1235,7 @@ Class dec_Edges ("db", "Edges", "Setting this value to 90 (the default) will exclude edges with an angle of 90 degree or more from the check.\n" "Use nil for this value to select the default.\n" "\n" - "\"min_projection\" and \"max_projection\" allow to select edges by their projected value upon each other. " + "\"min_projection\" and \"max_projection\" allow selecting edges by their projected value upon each other. " "It is sufficient if the projection of one edge on the other matches the specified condition. " "The projected length must be larger or equal to \"min_projection\" and less than \"max_projection\". " "If you don't want to specify one threshold, pass nil to the respective value.\n" @@ -1280,7 +1280,7 @@ Class dec_Edges ("db", "Edges", "Setting this value to 90 (the default) will exclude edges with an angle of 90 degree or more from the check.\n" "Use nil for this value to select the default.\n" "\n" - "\"min_projection\" and \"max_projection\" allow to select edges by their projected value upon each other. " + "\"min_projection\" and \"max_projection\" allow selecting edges by their projected value upon each other. " "It is sufficient if the projection of one edge on the other matches the specified condition. " "The projected length must be larger or equal to \"min_projection\" and less than \"max_projection\". " "If you don't want to specify one threshold, pass nil to the respective value.\n" @@ -1325,7 +1325,7 @@ Class dec_Edges ("db", "Edges", "Setting this value to 90 (the default) will exclude edges with an angle of 90 degree or more from the check.\n" "Use nil for this value to select the default.\n" "\n" - "\"min_projection\" and \"max_projection\" allow to select edges by their projected value upon each other. " + "\"min_projection\" and \"max_projection\" allow selecting edges by their projected value upon each other. " "It is sufficient if the projection of one edge on the other matches the specified condition. " "The projected length must be larger or equal to \"min_projection\" and less than \"max_projection\". " "If you don't want to specify one threshold, pass nil to the respective value.\n" @@ -1378,7 +1378,7 @@ Class dec_Edges ("db", "Edges", "@param i the perpendicular extension to the \"inside\" (right side as seen in the dleftirection of the edge)\n" "@param join If true, connected edges are joined before the extension is applied\n" "@return A region containing the polygons representing these extended edges\n" - "This is a generic version of \\extended_in and \\extended_out. It allows to specify extensions for all four " + "This is a generic version of \\extended_in and \\extended_out. It allows one to specify extensions for all four " "directions of an edge and to join the edges before the extension is applied.\n" "\n" "For degenerated edges forming a point, a rectangle with the b, e, o and i used as left, right, top and bottom distance to the " @@ -1390,7 +1390,7 @@ Class dec_Edges ("db", "Edges", method ("start_segments", &db::Edges::start_segments, gsi::arg ("length"), gsi::arg ("fraction"), "@brief Returns edges representing a part of the edge after the start point\n" "@return A new collection of edges representing the start part\n" - "This method allows to specify the length of these segments in a twofold way: either as a fixed length or " + "This method allows one to specify the length of these segments in a twofold way: either as a fixed length or " "by specifying a fraction of the original length:\n" "\n" "@code\n" @@ -1407,7 +1407,7 @@ Class dec_Edges ("db", "Edges", method ("end_segments", &db::Edges::end_segments, gsi::arg ("length"), gsi::arg ("fraction"), "@brief Returns edges representing a part of the edge before the end point\n" "@return A new collection of edges representing the end part\n" - "This method allows to specify the length of these segments in a twofold way: either as a fixed length or " + "This method allows one to specify the length of these segments in a twofold way: either as a fixed length or " "by specifying a fraction of the original length:\n" "\n" "@code\n" @@ -1424,7 +1424,7 @@ Class dec_Edges ("db", "Edges", method ("centers", &db::Edges::centers, gsi::arg ("length"), gsi::arg ("fraction"), "@brief Returns edges representing the center part of the edges\n" "@return A new collection of edges representing the part around the center\n" - "This method allows to specify the length of these segments in a twofold way: either as a fixed length or " + "This method allows one to specify the length of these segments in a twofold way: either as a fixed length or " "by specifying a fraction of the original length:\n" "\n" "@code\n" diff --git a/src/db/db/gsiDeclDbLayout.cc b/src/db/db/gsiDeclDbLayout.cc index 2a6d432a3..37d9faf8b 100644 --- a/src/db/db/gsiDeclDbLayout.cc +++ b/src/db/db/gsiDeclDbLayout.cc @@ -887,7 +887,7 @@ Class decl_Layout ("db", "Layout", "@args editable,manager\n" "\n" "This constructor specifies a manager object which is used to " - "store undo information for example. It also allows to specify whether " + "store undo information for example. It also allows one to specify whether " "the layout is editable. In editable mode, some optimisations are disabled " "and the layout can be manipulated through a variety of methods.\n" "\n" @@ -1840,7 +1840,7 @@ Class decl_Layout ("db", "Layout", "@return The cell index of the pcell variant proxy cell\n" "This method will create a PCell variant proxy for a local PCell definition.\n" "It will create the PCell variant for the given parameters. Note that this method \n" - "does not allow to create PCell instances for PCell's located in a library. Use\n" + "does not allow one to create PCell instances for PCell's located in a library. Use\n" "\\add_pcell_variant with the library parameter for that purpose.\n" "Unlike the variant using a list of parameters, this version allows specification\n" "of the parameters with a key/value dictionary. The keys are the parameter names\n" @@ -1860,7 +1860,7 @@ Class decl_Layout ("db", "Layout", "@return The cell index of the pcell variant proxy cell\n" "This method will create a PCell variant proxy for a local PCell definition.\n" "It will create the PCell variant for the given parameters. Note that this method \n" - "does not allow to create PCell instances for PCell's located in a library. Use\n" + "does not allow one to create PCell instances for PCell's located in a library. Use\n" "\\add_pcell_variant with the library parameter for that purpose.\n" "\n" "The parameters are a sequence of variants which correspond to the parameters declared " @@ -1956,7 +1956,7 @@ Class decl_Layout ("db", "Layout", "@brief Registers a PCell declaration under the given name\n" "@args name, declaration\n" "Registers a local PCell in the current layout. If a declaration with that name\n" - "alreay exists, it is replaced with the new declaration.\n" + "already exists, it is replaced with the new declaration.\n" "\n" "This method has been introduced in version 0.22.\n" ) + @@ -2171,7 +2171,7 @@ Class decl_SaveLayoutOptions ("db", "SaveLayoutOptions", "@brief Set the database unit to be used in the stream file\n" "@args dbu\n" "\n" - "By default, the database unit of the layout is used. This method allows to explicitly use a different\n" + "By default, the database unit of the layout is used. This method allows one to explicitly use a different\n" "database unit. A scale factor is introduced automatically which scales all layout objects accordingly so their physical dimensions remain the same. " "When scaling to a larger database unit or one that is not an integer fraction of the original one, rounding errors may occur and the " "layout may become slightly distorted." diff --git a/src/db/db/gsiDeclDbLayoutToNetlist.cc b/src/db/db/gsiDeclDbLayoutToNetlist.cc index 2ce0807eb..78860e07c 100644 --- a/src/db/db/gsiDeclDbLayoutToNetlist.cc +++ b/src/db/db/gsiDeclDbLayoutToNetlist.cc @@ -376,7 +376,7 @@ Class decl_dbLayoutToNetlist ("db", "LayoutToNetlist", "@li No connection indicated (circuit_cell_name_prefix == 0: the net shapes are simply put into their\n" " respective circuits. The connections are not indicated. @/li\n" "@li Subnet hierarchy (circuit_cell_name_prefix != 0): for each root net, a full hierarchy is built\n" - " to accomodate the subnets (see build_net in recursive mode). @/li\n" + " to accommodate the subnets (see build_net in recursive mode). @/li\n" "@/ul\n" "\n" "If a device name prefix is given, device shapes will be output on device cells named\n" diff --git a/src/db/db/gsiDeclDbManager.cc b/src/db/db/gsiDeclDbManager.cc index 2bd53bfe4..85bd72319 100644 --- a/src/db/db/gsiDeclDbManager.cc +++ b/src/db/db/gsiDeclDbManager.cc @@ -93,14 +93,14 @@ Class decl_Manager ("db", "Manager", "@brief Undo the current transaction\n" "\n" "The current transaction is undone with this method.\n" - "The 'has_undo' method can be used to determine wether\n" + "The 'has_undo' method can be used to determine whether\n" "there are transactions to undo.\n" ) + gsi::method ("redo", &db::Manager::redo, "@brief Redo the next available transaction\n" "\n" "The next transaction is redone with this method.\n" - "The 'has_redo' method can be used to determine wether\n" + "The 'has_redo' method can be used to determine whether\n" "there are transactions to undo.\n" ) + gsi::method_ext ("has_undo?", &has_undo, @@ -122,7 +122,7 @@ Class decl_Manager ("db", "Manager", "@brief A transaction manager class\n" "\n" "Manager objects control layout and potentially other objects in the layout database " - "and allow to queue operations to form transactions. A transaction is a sequence of " + "and queue operations to form transactions. A transaction is a sequence of " "operations that can be undone or redone.\n" "\n" "In order to equip a layout object with undo/redo support, instantiate the layout object " diff --git a/src/db/db/gsiDeclDbMatrix.cc b/src/db/db/gsiDeclDbMatrix.cc index 0e35bf6a2..a84ef454c 100644 --- a/src/db/db/gsiDeclDbMatrix.cc +++ b/src/db/db/gsiDeclDbMatrix.cc @@ -557,7 +557,7 @@ gsi::Class decl_Matrix3d ("db", "Matrix3d", "@param landmarks_before The points before the transformation.\n" "@param landmarks_after The points after the transformation.\n" "@param mode Selects the adjustment mode. Must be one of the Adjust... constants.\n" - "@param fixed_point The index of the fixed point (one that is definitly mapped to the target) or -1 if there is none\n" + "@param fixed_point The index of the fixed point (one that is definitely mapped to the target) or -1 if there is none\n" ) + gsi::method ("AdjustNone", &adjust_none, "@brief Mode for \\adjust: adjust nothing\n" diff --git a/src/db/db/gsiDeclDbNetlist.cc b/src/db/db/gsiDeclDbNetlist.cc index 173ea6336..97ff3a824 100644 --- a/src/db/db/gsiDeclDbNetlist.cc +++ b/src/db/db/gsiDeclDbNetlist.cc @@ -333,7 +333,7 @@ Class decl_dbNet ("db", "Net", ) + gsi::method ("qname|to_s", &db::Net::qname, "@brief Gets the qualified name.\n" - "The qualified name is like the expanded name, but the circuit's name is preceeded\n" + "The qualified name is like the expanded name, but the circuit's name is preceded\n" "(i.e. 'CIRCUIT:NET') if available.\n" ) + gsi::method ("expanded_name", &db::Net::expanded_name, @@ -901,7 +901,7 @@ Class decl_dbCircuit ("db", "Circuit", "A circuit has pins by which it can connect to the outside. Pins are " "created using \\create_pin and are represented by the \\Pin class.\n" "\n" - "Futhermore, a circuit manages the components of the netlist. " + "Furthermore, a circuit manages the components of the netlist. " "Components are devices (class \\Device) and subcircuits (class \\SubCircuit). " "Devices are basic devices such as resistors or transistors. Subcircuits " "are other circuits to which nets from this circuit connect. " @@ -1206,6 +1206,13 @@ Class db_NetlistSpiceWriter (db_NetlistWriter, "db", "Ne ) + gsi::constructor ("new", &new_spice_writer2, "@brief Creates a new writer with a delegate.\n" + ) + + gsi::method ("use_net_names=", &db::NetlistSpiceWriter::set_use_net_names, gsi::arg ("f"), + "@brief Sets a value indicating whether to use net names (true) or net numbers (false).\n" + "The default is to use net numbers." + ) + + gsi::method ("use_net_names", &db::NetlistSpiceWriter::use_net_names, + "@brief Gets a value indicating whether to use net names (true) or net numbers (false).\n" ), "@brief Implements a netlist writer for the SPICE format.\n" "Provide a delegate for customizing the way devices are written.\n" diff --git a/src/db/db/gsiDeclDbNetlistDeviceExtractor.cc b/src/db/db/gsiDeclDbNetlistDeviceExtractor.cc index 911e40aed..a814ca1a6 100644 --- a/src/db/db/gsiDeclDbNetlistDeviceExtractor.cc +++ b/src/db/db/gsiDeclDbNetlistDeviceExtractor.cc @@ -154,8 +154,8 @@ Class decl_dbNetlistDeviceExtractorError ("db", "@brief Sets the category description.\n" "See \\category_name= for details about categories." ), - "@brief An error that occured during device extraction\n" - "The device extractor will keep errors that occured during extraction of the devices. " + "@brief An error that occurred during device extraction\n" + "The device extractor will keep errors that occurred during extraction of the devices. " "It does not by using this error class.\n" "\n" "An error is basically described by the cell/circuit it occures in and the message. " diff --git a/src/db/db/gsiDeclDbPolygon.cc b/src/db/db/gsiDeclDbPolygon.cc index 9e2856b55..7c1fa594c 100644 --- a/src/db/db/gsiDeclDbPolygon.cc +++ b/src/db/db/gsiDeclDbPolygon.cc @@ -1328,7 +1328,7 @@ struct polygon_defs "@brief Iterate over the edges that make up the polygon\n" "\n" "This iterator will deliver all edges, including those of the holes. " - "Hole edges are oriented counterclockwise while hull egdes are oriented clockwise.\n" + "Hole edges are oriented counterclockwise while hull edges are oriented clockwise.\n" ) + iterator ("each_edge", (typename C::polygon_edge_iterator (C::*)(unsigned int) const) (&C::begin_edge), "@brief Iterate over the edges of one contour of the polygon\n" @@ -1338,7 +1338,7 @@ struct polygon_defs "\n" "This iterator will deliver all edges of the contour specified by the contour parameter. " "The hull has contour number 0, the first hole has contour 1 etc.\n" - "Hole edges are oriented counterclockwise while hull egdes are oriented clockwise.\n" + "Hole edges are oriented counterclockwise while hull edges are oriented clockwise.\n" "\n" "This method was introduced in version 0.24." ) + diff --git a/src/db/db/gsiDeclDbRegion.cc b/src/db/db/gsiDeclDbRegion.cc index 965fc3ce1..16a5d5883 100644 --- a/src/db/db/gsiDeclDbRegion.cc +++ b/src/db/db/gsiDeclDbRegion.cc @@ -654,7 +654,7 @@ Class decl_Region ("db", "Region", "\n" "This constructor creates a region from the shapes delivered by the given recursive shape iterator.\n" "Text objects and edges are not inserted, because they cannot be converted to polygons.\n" - "This method allows to feed the shapes from a hierarchy of cells into the region.\n" + "This method allows feeding the shapes from a hierarchy of cells into the region.\n" "\n" "@code\n" "layout = ... # a layout\n" @@ -669,7 +669,7 @@ Class decl_Region ("db", "Region", "This constructor creates a region from the shapes delivered by the given recursive shape iterator.\n" "Text objects and edges are not inserted, because they cannot be converted to polygons.\n" "On the delivered shapes it applies the given transformation.\n" - "This method allows to feed the shapes from a hierarchy of cells into the region.\n" + "This method allows feeding the shapes from a hierarchy of cells into the region.\n" "The transformation is useful to scale to a specific database unit for example.\n" "\n" "@code\n" @@ -729,7 +729,7 @@ Class decl_Region ("db", "Region", "@code\n" "region = RBA::Region::new(iter, \"*\") # all texts\n" "region = RBA::Region::new(iter, \"A*\") # all texts starting with an 'A'\n" - "region = RBA::Region::new(iter, \"A*\", false) # all texts exactly matchin 'A*'\n" + "region = RBA::Region::new(iter, \"A*\", false) # all texts exactly matching 'A*'\n" "@/code\n" "\n" "This method has been introduced in version 0.25. The enlargement parameter has been added in version 0.26.\n" @@ -751,7 +751,7 @@ Class decl_Region ("db", "Region", "@code\n" "region = RBA::Region::new(iter, dss, \"*\") # all texts\n" "region = RBA::Region::new(iter, dss, \"A*\") # all texts starting with an 'A'\n" - "region = RBA::Region::new(iter, dss, \"A*\", false) # all texts exactly matchin 'A*'\n" + "region = RBA::Region::new(iter, dss, \"A*\", false) # all texts exactly matching 'A*'\n" "@/code\n" "\n" "This variant has been introduced in version 0.26.\n" @@ -1898,7 +1898,7 @@ Class decl_Region ("db", "Region", "Setting this value to 90 (the default) will exclude edges with an angle of 90 degree or more from the check.\n" "Use nil for this value to select the default.\n" "\n" - "\"min_projection\" and \"max_projection\" allow to select edges by their projected value upon each other. " + "\"min_projection\" and \"max_projection\" allow selecting edges by their projected value upon each other. " "It is sufficient if the projection of one edge on the other matches the specified condition. " "The projected length must be larger or equal to \"min_projection\" and less than \"max_projection\". " "If you don't want to specify one limit, pass nil to the respective value.\n" @@ -1943,7 +1943,7 @@ Class decl_Region ("db", "Region", "Setting this value to 90 (the default) will exclude edges with an angle of 90 degree or more from the check.\n" "Use nil for this value to select the default.\n" "\n" - "\"min_projection\" and \"max_projection\" allow to select edges by their projected value upon each other. " + "\"min_projection\" and \"max_projection\" allow selecting edges by their projected value upon each other. " "It is sufficient if the projection of one edge on the other matches the specified condition. " "The projected length must be larger or equal to \"min_projection\" and less than \"max_projection\". " "If you don't want to specify one limit, pass nil to the respective value.\n" @@ -1990,7 +1990,7 @@ Class decl_Region ("db", "Region", "Setting this value to 90 (the default) will exclude edges with an angle of 90 degree or more from the check.\n" "Use nil for this value to select the default.\n" "\n" - "\"min_projection\" and \"max_projection\" allow to select edges by their projected value upon each other. " + "\"min_projection\" and \"max_projection\" allow selecting edges by their projected value upon each other. " "It is sufficient if the projection of one edge on the other matches the specified condition. " "The projected length must be larger or equal to \"min_projection\" and less than \"max_projection\". " "If you don't want to specify one limit, pass nil to the respective value.\n" @@ -2037,7 +2037,7 @@ Class decl_Region ("db", "Region", "Setting this value to 90 (the default) will exclude edges with an angle of 90 degree or more from the check.\n" "Use nil for this value to select the default.\n" "\n" - "\"min_projection\" and \"max_projection\" allow to select edges by their projected value upon each other. " + "\"min_projection\" and \"max_projection\" allow selecting edges by their projected value upon each other. " "It is sufficient if the projection of one edge on the other matches the specified condition. " "The projected length must be larger or equal to \"min_projection\" and less than \"max_projection\". " "If you don't want to specify one limit, pass nil to the respective value.\n" @@ -2080,7 +2080,7 @@ Class decl_Region ("db", "Region", "Setting this value to 90 (the default) will exclude edges with an angle of 90 degree or more from the check.\n" "Use nil for this value to select the default.\n" "\n" - "\"min_projection\" and \"max_projection\" allow to select edges by their projected value upon each other. " + "\"min_projection\" and \"max_projection\" allow selecting edges by their projected value upon each other. " "It is sufficient if the projection of one edge on the other matches the specified condition. " "The projected length must be larger or equal to \"min_projection\" and less than \"max_projection\". " "If you don't want to specify one limit, pass nil to the respective value.\n" @@ -2121,7 +2121,7 @@ Class decl_Region ("db", "Region", "Setting this value to 90 (the default) will exclude edges with an angle of 90 degree or more from the check.\n" "Use nil for this value to select the default.\n" "\n" - "\"min_projection\" and \"max_projection\" allow to select edges by their projected value upon each other. " + "\"min_projection\" and \"max_projection\" allow selecting edges by their projected value upon each other. " "It is sufficient if the projection of one edge on the other matches the specified condition. " "The projected length must be larger or equal to \"min_projection\" and less than \"max_projection\". " "If you don't want to specify one limit, pass nil to the respective value.\n" @@ -2162,7 +2162,7 @@ Class decl_Region ("db", "Region", "Setting this value to 90 (the default) will exclude edges with an angle of 90 degree or more from the check.\n" "Use nil for this value to select the default.\n" "\n" - "\"min_projection\" and \"max_projection\" allow to select edges by their projected value upon each other. " + "\"min_projection\" and \"max_projection\" allow selecting edges by their projected value upon each other. " "It is sufficient if the projection of one edge on the other matches the specified condition. " "The projected length must be larger or equal to \"min_projection\" and less than \"max_projection\". " "If you don't want to specify one limit, pass nil to the respective value.\n" @@ -2203,7 +2203,7 @@ Class decl_Region ("db", "Region", "Setting this value to 90 (the default) will exclude edges with an angle of 90 degree or more from the check.\n" "Use nil for this value to select the default.\n" "\n" - "\"min_projection\" and \"max_projection\" allow to select edges by their projected value upon each other. " + "\"min_projection\" and \"max_projection\" allow selecting edges by their projected value upon each other. " "It is sufficient if the projection of one edge on the other matches the specified condition. " "The projected length must be larger or equal to \"min_projection\" and less than \"max_projection\". " "If you don't want to specify one limit, pass nil to the respective value.\n" diff --git a/src/db/db/gsiDeclDbShape.cc b/src/db/db/gsiDeclDbShape.cc index eb9aa128f..ef6f41dd0 100644 --- a/src/db/db/gsiDeclDbShape.cc +++ b/src/db/db/gsiDeclDbShape.cc @@ -1365,7 +1365,7 @@ Class decl_Shape ("db", "Shape", "@brief Iterates over the edges of the object\n" "\n" "This method applies to polygons and simple polygons and delivers all edges that form the polygon's contours. " - "Hole edges are oriented counterclockwise while hull egdes are oriented clockwise.\n" + "Hole edges are oriented counterclockwise while hull edges are oriented clockwise.\n" "\n" "It will throw an exception if the object is not a polygon.\n" ) + @@ -1383,7 +1383,7 @@ Class decl_Shape ("db", "Shape", "\n" "This method applies to polygons and simple polygons and delivers all edges that form the given contour of the polygon. " "The hull has contour number 0, the first hole has contour 1 etc.\n" - "Hole edges are oriented counterclockwise while hull egdes are oriented clockwise.\n" + "Hole edges are oriented counterclockwise while hull edges are oriented clockwise.\n" "\n" "It will throw an exception if the object is not a polygon.\n" "\n" diff --git a/src/db/db/gsiDeclDbShapeProcessor.cc b/src/db/db/gsiDeclDbShapeProcessor.cc index 6fe7dedb5..58c58fd73 100644 --- a/src/db/db/gsiDeclDbShapeProcessor.cc +++ b/src/db/db/gsiDeclDbShapeProcessor.cc @@ -235,7 +235,7 @@ Class decl_ShapeProcessor ("db", "ShapeProcessor", "\n" "See the \\EdgeProcessor for a description of the sizing operation. This implementation takes shapes\n" "from a layout cell (optionally all in hierarchy) and produces new shapes in a shapes container. " - "This is the isotropic version which does not allow to specify different sizing values in x and y-direction. " + "This is the isotropic version which does not allow specification of different sizing values in x and y-direction. " "\n" "@param layout The layout from which to take the shapes\n" "@param cell The cell (in 'layout') from which to take the shapes\n" @@ -278,7 +278,7 @@ Class decl_ShapeProcessor ("db", "ShapeProcessor", "See the \\EdgeProcessor for a description of the merge method. This implementation takes shapes\n" "rather than polygons for input and produces an edge set.\n" "\n" - "This version does not allow to specify a transformation for each shape (unity is assumed).\n" + "This version does not feature a transformation for each shape (unity is assumed).\n" "\n" "@param in The set of shapes to merge\n" "@param min_wc The minimum wrap count for output (0: all polygons, 1: at least two overlapping)\n" @@ -290,7 +290,7 @@ Class decl_ShapeProcessor ("db", "ShapeProcessor", "See the \\EdgeProcessor for a description of the merge method. This implementation takes shapes\n" "rather than polygons for input and produces a polygon set.\n" "\n" - "This version does not allow to specify a transformation for each shape (unity is assumed).\n" + "This version does not feature a transformation for each shape (unity is assumed).\n" "\n" "@param in The set of shapes to merge\n" "@param min_wc The minimum wrap count for output (0: all polygons, 1: at least two overlapping)\n" @@ -332,7 +332,7 @@ Class decl_ShapeProcessor ("db", "ShapeProcessor", "See the \\EdgeProcessor for a description of the boolean operations. This implementation takes shapes\n" "rather than polygons for input and produces an edge set.\n" "\n" - "This version does not allow to specify a transformation for each shape (unity is assumed).\n" + "This version does not feature a transformation for each shape (unity is assumed).\n" "\n" "@param in_a The set of shapes to use for input A\n" "@param in_b The set of shapes to use for input A\n" @@ -345,7 +345,7 @@ Class decl_ShapeProcessor ("db", "ShapeProcessor", "See the \\EdgeProcessor for a description of the boolean operations. This implementation takes shapes\n" "rather than polygons for input and produces a polygon set.\n" "\n" - "This version does not allow to specify a transformation for each shape (unity is assumed).\n" + "This version does not feature a transformation for each shape (unity is assumed).\n" "\n" "@param in_a The set of shapes to use for input A\n" "@param in_b The set of shapes to use for input A\n" @@ -417,7 +417,7 @@ Class decl_ShapeProcessor ("db", "ShapeProcessor", "rather than polygons for input and produces an edge set. This is isotropic version that does not allow\n" "to specify different values in x and y direction. " "\n" - "This version does not allow to specify a transformation for each shape (unity is assumed).\n" + "This version does not feature a transformation for each shape (unity is assumed).\n" "\n" "@param in The set of shapes to size\n" "@param d The sizing value\n" @@ -430,7 +430,7 @@ Class decl_ShapeProcessor ("db", "ShapeProcessor", "See the \\EdgeProcessor for a description of the sizing method. This implementation takes shapes\n" "rather than polygons for input and produces an edge set.\n" "\n" - "This version does not allow to specify a transformation for each shape (unity is assumed).\n" + "This version does not feature a transformation for each shape (unity is assumed).\n" "\n" "@param in The set of shapes to size\n" "@param dx The sizing value in x-direction\n" @@ -445,7 +445,7 @@ Class decl_ShapeProcessor ("db", "ShapeProcessor", "rather than polygons for input and produces a polygon set. This is isotropic version that does not allow\n" "to specify different values in x and y direction. " "\n" - "This version does not allow to specify a transformation for each shape (unity is assumed).\n" + "This version does not feature a transformation for each shape (unity is assumed).\n" "\n" "@param in The set of shapes to size\n" "@param d The sizing value\n" @@ -460,7 +460,7 @@ Class decl_ShapeProcessor ("db", "ShapeProcessor", "See the \\EdgeProcessor for a description of the sizing method. This implementation takes shapes\n" "rather than polygons for input and produces a polygon set.\n" "\n" - "This version does not allow to specify a transformation for each shape (unity is assumed).\n" + "This version does not feature a transformation for each shape (unity is assumed).\n" "\n" "@param in The set of shapes to size\n" "@param dx The sizing value in x-direction\n" diff --git a/src/db/db/gsiDeclDbText.cc b/src/db/db/gsiDeclDbText.cc index 2d7630068..b0fe4a18f 100644 --- a/src/db/db/gsiDeclDbText.cc +++ b/src/db/db/gsiDeclDbText.cc @@ -412,7 +412,7 @@ Class decl_Text ("db", "Text", "A text object has a point (location), a text, a text transformation,\n" "a text size and a font id. Text size and font id are provided to be\n" "be able to render the text correctly.\n" - "Text objects are used as labels (i.e. for pins) or to indiciate a particular position.\n" + "Text objects are used as labels (i.e. for pins) or to indicate a particular position.\n" "\n" "The \\Text class uses integer coordinates. A class that operates with floating-point coordinates " "is \\DText.\n" @@ -462,7 +462,7 @@ Class decl_DText ("db", "DText", "A text object has a point (location), a text, a text transformation,\n" "a text size and a font id. Text size and font id are provided to be\n" "be able to render the text correctly.\n" - "Text objects are used as labels (i.e. for pins) or to indiciate a particular position.\n" + "Text objects are used as labels (i.e. for pins) or to indicate a particular position.\n" "\n" "The \\DText class uses floating-point coordinates. A class that operates with integer coordinates " "is \\Text.\n" diff --git a/src/db/db/gsiDeclDbTilingProcessor.cc b/src/db/db/gsiDeclDbTilingProcessor.cc index ea142a971..999c4d168 100644 --- a/src/db/db/gsiDeclDbTilingProcessor.cc +++ b/src/db/db/gsiDeclDbTilingProcessor.cc @@ -408,7 +408,7 @@ Class decl_TilingProcessor ("db", "TilingProcessor", "\n" "The name specifies the variable under which the input can be used in the scripts." "\n" - "This variant allows to specify an additional transformation too. It has been introduced in version 0.23.2.\n" + "This variant allows one to specify an additional transformation too. It has been introduced in version 0.23.2.\n" ) + method_ext ("input", &tp_input10, "@brief Specifies input for the tiling processor\n" @@ -428,7 +428,7 @@ Class decl_TilingProcessor ("db", "TilingProcessor", "\n" "The name specifies the variable under which the input can be used in the scripts." "\n" - "This variant allows to specify an additional transformation too. It has been introduced in version 0.23.2.\n" + "This variant allows one to specify an additional transformation too. It has been introduced in version 0.23.2.\n" "\n" ) + method ("var", &db::TilingProcessor::var, @@ -651,7 +651,7 @@ Class decl_TilingProcessor ("db", "TilingProcessor", "\n" "The tiling processor executes one or several scripts on one or multiple layouts providing " "a tiling scheme. In that scheme, the processor divides the original layout into rectangular tiles " - "and executes the scripts on each tile separately. The tiling processor allows to specify multiple, " + "and executes the scripts on each tile separately. The tiling processor allows one to specify multiple, " "independent scripts which are run separately on each tile. It can make use of multi-core CPU's by " "supporting multiple threads running the tasks in parallel (with respect to tiles and scripts).\n" "\n" diff --git a/src/db/db/gsiDeclDbTrans.cc b/src/db/db/gsiDeclDbTrans.cc index 8216c00f8..191b37597 100644 --- a/src/db/db/gsiDeclDbTrans.cc +++ b/src/db/db/gsiDeclDbTrans.cc @@ -1040,7 +1040,7 @@ Class decl_DCplxTrans ("db", "DCplxTrans", cplx_trans_defs::methods (), "@brief A complex transformation\n" "\n" - "A complex transformation provides magnification, mirroring at the x-axis, rotation by an arbitary\n" + "A complex transformation provides magnification, mirroring at the x-axis, rotation by an arbitrary\n" "angle and a displacement. This is also the order, the operations are applied.\n" "\n" "A complex transformation provides a superset of the simple transformation.\n" @@ -1129,7 +1129,7 @@ Class decl_CplxTrans ("db", "CplxTrans", cplx_trans_defs::methods (), "@brief A complex transformation\n" "\n" - "A complex transformation provides magnification, mirroring at the x-axis, rotation by an arbitary\n" + "A complex transformation provides magnification, mirroring at the x-axis, rotation by an arbitrary\n" "angle and a displacement. This is also the order, the operations are applied.\n" "This version can transform integer-coordinate objects into floating-point coordinate objects. " "This is the generic and exact case, for example for non-integer magnifications.\n" @@ -1212,7 +1212,7 @@ Class decl_ICplxTrans ("db", "ICplxTrans", cplx_trans_defs::methods (), "@brief A complex transformation\n" "\n" - "A complex transformation provides magnification, mirroring at the x-axis, rotation by an arbitary\n" + "A complex transformation provides magnification, mirroring at the x-axis, rotation by an arbitrary\n" "angle and a displacement. This is also the order, the operations are applied.\n" "This version can transform integer-coordinate objects into the same, which may involve rounding and can be inexact.\n" "\n" @@ -1294,7 +1294,7 @@ Class decl_VCplxTrans ("db", "VCplxTrans", cplx_trans_defs::methods (), "@brief A complex transformation\n" "\n" - "A complex transformation provides magnification, mirroring at the x-axis, rotation by an arbitary\n" + "A complex transformation provides magnification, mirroring at the x-axis, rotation by an arbitrary\n" "angle and a displacement. This is also the order, the operations are applied.\n" "This version can transform floating point coordinate objects into integer coordinate objects, which may involve rounding and can be inexact.\n" "\n" diff --git a/src/db/unit_tests/dbDeepRegionTests.cc b/src/db/unit_tests/dbDeepRegionTests.cc index ed2607462..a23807ecb 100644 --- a/src/db/unit_tests/dbDeepRegionTests.cc +++ b/src/db/unit_tests/dbDeepRegionTests.cc @@ -469,11 +469,11 @@ TEST(9_SizingSimple) db::Region r6 (db::RecursiveShapeIterator (ly, top_cell, l6), dss); db::Region r6_sized = r6.sized (-50); EXPECT_EQ (r6_sized.is_merged (), true); - db::Region r6_sized_aniso = r6.sized (-20, -100); + db::Region r6_sized_aniso = r6.sized (-20, -100, 2); EXPECT_EQ (r6_sized_aniso.is_merged (), true); db::Region r6_sized_plus = r6.sized (50); EXPECT_EQ (r6_sized_plus.is_merged (), false); - db::Region r6_sized_aniso_plus = r6.sized (20, 100); + db::Region r6_sized_aniso_plus = r6.sized (20, 100, 2); EXPECT_EQ (r6_sized_aniso_plus.is_merged (), false); db::Layout target; @@ -550,7 +550,7 @@ TEST(9_SizingWithScaleAndXYVariants) db::Region r1 (db::RecursiveShapeIterator (ly, top_cell, l1), dss); db::Region r1_sized = r1.sized (-2000); - db::Region r1_sized_aniso = r1.sized (-1000, -2000); + db::Region r1_sized_aniso = r1.sized (-1000, -2000, 2); db::Layout target; unsigned int target_top_cell_index = target.add_cell (ly.cell_name (top_cell_index)); @@ -600,7 +600,7 @@ TEST(9_SizingWithBoolean) db::Region r1 (db::RecursiveShapeIterator (ly, top_cell, l1), dss); db::Region r1_sized = r1.sized (2000); r1_sized -= r1; - db::Region r1_sized_aniso = r1.sized (1000, 2000); + db::Region r1_sized_aniso = r1.sized (1000, 2000, 2); r1_sized_aniso -= r1; EXPECT_EQ (r1_sized_aniso.is_merged (), false); diff --git a/src/db/unit_tests/dbLayout.cc b/src/db/unit_tests/dbLayout.cc index 37f6b0de1..ac4c8655e 100644 --- a/src/db/unit_tests/dbLayout.cc +++ b/src/db/unit_tests/dbLayout.cc @@ -87,7 +87,7 @@ TEST(1) } EXPECT_EQ (m, (unsigned int) 0x04231); // c1,c5,c3,c4,c2 - // check relation informations .. + // check relation information .. db::Cell::child_cell_iterator ch; db::Cell::const_iterator chi; db::Cell::parent_cell_iterator pa; diff --git a/src/db/unit_tests/dbNetlistWriterTests.cc b/src/db/unit_tests/dbNetlistWriterTests.cc index 2132169a4..0f44f4816 100644 --- a/src/db/unit_tests/dbNetlistWriterTests.cc +++ b/src/db/unit_tests/dbNetlistWriterTests.cc @@ -29,6 +29,27 @@ #include "tlStream.h" #include "tlFileUtils.h" +static void compare_netlists (tl::TestBase *_this, const std::string &path, const std::string &au_path) +{ + tl::InputStream is (path); + tl::InputStream is_au (au_path); + + std::string netlist = is.read_all (); + std::string netlist_au = is_au.read_all (); + + // normalize "1.0e-005" to "1.0e-05" for compatibility + netlist = tl::replaced (netlist, "e-00", "e-0"); + netlist = tl::replaced (netlist, "e-0", "e-"); + netlist_au = tl::replaced (netlist_au, "e-00", "e-0"); + netlist_au = tl::replaced (netlist_au, "e-0", "e-"); + + if (netlist != netlist_au) { + _this->raise (tl::sprintf ("Compare failed - see\n actual: %s\n golden: %s", + tl::absolute_file_path (path), + tl::absolute_file_path (au_path))); + } +} + TEST(1_WriterResistorDevices) { db::Netlist nl; @@ -98,14 +119,7 @@ TEST(1_WriterResistorDevices) std::string au_path = tl::combine_path (tl::combine_path (tl::combine_path (tl::testsrc (), "testdata"), "algo"), "nwriter1_au.txt"); - tl::InputStream is (path); - tl::InputStream is_au (au_path); - - if (is.read_all () != is_au.read_all ()) { - _this->raise (tl::sprintf ("Compare failed - see\n actual: %s\n golden: %s", - tl::absolute_file_path (path), - tl::absolute_file_path (au_path))); - } + compare_netlists (_this, path, au_path); } TEST(2_WriterCapacitorDevices) @@ -177,14 +191,7 @@ TEST(2_WriterCapacitorDevices) std::string au_path = tl::combine_path (tl::combine_path (tl::combine_path (tl::testsrc (), "testdata"), "algo"), "nwriter2_au.txt"); - tl::InputStream is (path); - tl::InputStream is_au (au_path); - - if (is.read_all () != is_au.read_all ()) { - _this->raise (tl::sprintf ("Compare failed - see\n actual: %s\n golden: %s", - tl::absolute_file_path (path), - tl::absolute_file_path (au_path))); - } + compare_netlists (_this, path, au_path); } TEST(3_WriterInductorDevices) @@ -256,14 +263,7 @@ TEST(3_WriterInductorDevices) std::string au_path = tl::combine_path (tl::combine_path (tl::combine_path (tl::testsrc (), "testdata"), "algo"), "nwriter3_au.txt"); - tl::InputStream is (path); - tl::InputStream is_au (au_path); - - if (is.read_all () != is_au.read_all ()) { - _this->raise (tl::sprintf ("Compare failed - see\n actual: %s\n golden: %s", - tl::absolute_file_path (path), - tl::absolute_file_path (au_path))); - } + compare_netlists (_this, path, au_path); } TEST(4_WriterDiodeDevices) @@ -335,14 +335,7 @@ TEST(4_WriterDiodeDevices) std::string au_path = tl::combine_path (tl::combine_path (tl::combine_path (tl::testsrc (), "testdata"), "algo"), "nwriter4_au.txt"); - tl::InputStream is (path); - tl::InputStream is_au (au_path); - - if (is.read_all () != is_au.read_all ()) { - _this->raise (tl::sprintf ("Compare failed - see\n actual: %s\n golden: %s", - tl::absolute_file_path (path), - tl::absolute_file_path (au_path))); - } + compare_netlists (_this, path, au_path); } TEST(5_WriterMOS3Devices) @@ -431,14 +424,7 @@ TEST(5_WriterMOS3Devices) std::string au_path = tl::combine_path (tl::combine_path (tl::combine_path (tl::testsrc (), "testdata"), "algo"), "nwriter5_au.txt"); - tl::InputStream is (path); - tl::InputStream is_au (au_path); - - if (is.read_all () != is_au.read_all ()) { - _this->raise (tl::sprintf ("Compare failed - see\n actual: %s\n golden: %s", - tl::absolute_file_path (path), - tl::absolute_file_path (au_path))); - } + compare_netlists (_this, path, au_path); } TEST(6_WriterMOS4Devices) @@ -534,14 +520,7 @@ TEST(6_WriterMOS4Devices) std::string au_path = tl::combine_path (tl::combine_path (tl::combine_path (tl::testsrc (), "testdata"), "algo"), "nwriter6_au.txt"); - tl::InputStream is (path); - tl::InputStream is_au (au_path); - - if (is.read_all () != is_au.read_all ()) { - _this->raise (tl::sprintf ("Compare failed - see\n actual: %s\n golden: %s", - tl::absolute_file_path (path), - tl::absolute_file_path (au_path))); - } + compare_netlists (_this, path, au_path); } TEST(7_WriterAnyDevices) @@ -603,14 +582,7 @@ TEST(7_WriterAnyDevices) std::string au_path = tl::combine_path (tl::combine_path (tl::combine_path (tl::testsrc (), "testdata"), "algo"), "nwriter7_au.txt"); - tl::InputStream is (path); - tl::InputStream is_au (au_path); - - if (is.read_all () != is_au.read_all ()) { - _this->raise (tl::sprintf ("Compare failed - see\n actual: %s\n golden: %s", - tl::absolute_file_path (path), - tl::absolute_file_path (au_path))); - } + compare_netlists (_this, path, au_path); } TEST(8_WriterSubcircuits) @@ -753,14 +725,97 @@ TEST(8_WriterSubcircuits) std::string au_path = tl::combine_path (tl::combine_path (tl::combine_path (tl::testsrc (), "testdata"), "algo"), "nwriter8_au.txt"); - tl::InputStream is (path); - tl::InputStream is_au (au_path); + compare_netlists (_this, path, au_path); +} - if (is.read_all () != is_au.read_all ()) { - _this->raise (tl::sprintf ("Compare failed - see\n actual: %s\n golden: %s", - tl::absolute_file_path (path), - tl::absolute_file_path (au_path))); +TEST(9_WriterNetNamesInsteadOfNumbers) +{ + db::Netlist nl; + + db::DeviceClass *cls = new db::DeviceClass (); + cls->add_terminal_definition (db::DeviceTerminalDefinition ("A", "a")); + cls->add_terminal_definition (db::DeviceTerminalDefinition ("B", "b")); + cls->add_parameter_definition (db::DeviceParameterDefinition ("U", "u")); + cls->add_parameter_definition (db::DeviceParameterDefinition ("V", "v")); + cls->set_name ("XCLS"); + + nl.add_device_class (cls); + + db::Circuit *circuit1 = new db::Circuit (); + circuit1->set_name ("C1"); + nl.add_circuit (circuit1); + + { + db::Net *n1, *n2, *n3; + n1 = new db::Net (); + n1->set_name ("N1"); + circuit1->add_net (n1); + n2 = new db::Net (); + n2->set_name ("N 2"); + circuit1->add_net (n2); + n3 = new db::Net (); + n3->set_name ("n3"); + circuit1->add_net (n3); + + db::Device *ddev1 = new db::Device (cls); + ddev1->set_parameter_value (0, -17); + ddev1->set_parameter_value (1, 42); + db::Device *ddev2 = new db::Device (cls); + ddev2->set_parameter_value (0, 17); + ddev2->set_parameter_value (1, -42); + circuit1->add_device (ddev1); + circuit1->add_device (ddev2); + + size_t pid1 = circuit1->add_pin ("p1").id (); + size_t pid2 = circuit1->add_pin ("p2").id (); + + circuit1->connect_pin (pid1, n1); + circuit1->connect_pin (pid2, n2); + + ddev1->connect_terminal (ddev1->device_class ()->terminal_id_for_name ("A"), n1); + ddev1->connect_terminal (ddev1->device_class ()->terminal_id_for_name ("B"), n3); + ddev2->connect_terminal (ddev2->device_class ()->terminal_id_for_name ("A"), n3); + ddev2->connect_terminal (ddev2->device_class ()->terminal_id_for_name ("B"), n2); } + + db::Circuit *circuit2 = new db::Circuit (); + circuit2->set_name ("C2"); + nl.add_circuit (circuit2); + + { + db::Net *n1, *n2; + n1 = new db::Net (); + n1->set_name ("n1"); + circuit2->add_net (n1); + n2 = new db::Net (); + n2->set_name ("n2"); + circuit2->add_net (n2); + + db::SubCircuit *sc1 = new db::SubCircuit (circuit1, "SC1"); + circuit2->add_subcircuit (sc1); + sc1->connect_pin (0, n1); + sc1->connect_pin (1, n2); + + size_t pid1 = circuit2->add_pin ("p1").id (); + size_t pid2 = circuit2->add_pin ("p2").id (); + + circuit2->connect_pin (pid1, n1); + circuit2->connect_pin (pid2, n2); + } + + // verify against the input + + std::string path = tmp_file ("tmp_nwriter9.txt"); + { + tl::OutputStream stream (path); + db::NetlistSpiceWriter writer; + writer.set_use_net_names (true); + writer.write (stream, nl, "written by unit test"); + } + + std::string au_path = tl::combine_path (tl::combine_path (tl::combine_path (tl::testsrc (), "testdata"), "algo"), "nwriter9_au.txt"); + + compare_netlists (_this, path, au_path); } TEST(10_WriterLongLines) @@ -809,14 +864,7 @@ TEST(10_WriterLongLines) std::string au_path = tl::combine_path (tl::combine_path (tl::combine_path (tl::testsrc (), "testdata"), "algo"), "nwriter10_au.txt"); - tl::InputStream is (path); - tl::InputStream is_au (au_path); - - if (is.read_all () != is_au.read_all ()) { - _this->raise (tl::sprintf ("Compare failed - see\n actual: %s\n golden: %s", - tl::absolute_file_path (path), - tl::absolute_file_path (au_path))); - } + compare_netlists (_this, path, au_path); } namespace { @@ -919,13 +967,5 @@ TEST(20_Delegate) std::string au_path = tl::combine_path (tl::combine_path (tl::combine_path (tl::testsrc (), "testdata"), "algo"), "nwriter20_au.txt"); - tl::InputStream is (path); - tl::InputStream is_au (au_path); - - if (is.read_all () != is_au.read_all ()) { - _this->raise (tl::sprintf ("Compare failed - see\n actual: %s\n golden: %s", - tl::absolute_file_path (path), - tl::absolute_file_path (au_path))); - } + compare_netlists (_this, path, au_path); } - diff --git a/src/db/unit_tests/dbShapeRepository.cc b/src/db/unit_tests/dbShapeRepository.cc index feb8a1bdd..2d014404d 100644 --- a/src/db/unit_tests/dbShapeRepository.cc +++ b/src/db/unit_tests/dbShapeRepository.cc @@ -46,7 +46,7 @@ TEST(1) c1.push_back (db::Point (200, 0)); p1.assign_hull (c1.begin (), c1.end ()); - // insert two references to indentical but shifted polygons + // insert two references to identical but shifted polygons db::PolygonRef pref1 (p1, rep); db::Polygon p2; @@ -115,7 +115,7 @@ TEST(2) c1.push_back (db::Point (200, 0)); p1.assign_hull (c1.begin (), c1.end ()); - // insert two references to indentical but shifted polygons + // insert two references to identical but shifted polygons db::PolygonRef pr1 (p1, *rep); db::Polygon p2; @@ -156,7 +156,7 @@ TEST(1SIMPLE) c1.push_back (db::Point (200, 0)); p1.assign_hull (c1.begin (), c1.end ()); - // insert two references to indentical but shifted polygons + // insert two references to identical but shifted polygons db::SimplePolygonRef pref1 (p1, rep); db::SimplePolygon p2; @@ -225,7 +225,7 @@ TEST(2SIMPLE) c1.push_back (db::Point (200, 0)); p1.assign_hull (c1.begin (), c1.end ()); - // insert two references to indentical but shifted polygons + // insert two references to identical but shifted polygons db::SimplePolygonRef pr1 (p1, *rep); db::SimplePolygon p2; diff --git a/src/drc/drc/built-in-macros/drc.lym b/src/drc/drc/built-in-macros/drc.lym index 94627bab0..bb82ea4f4 100644 --- a/src/drc/drc/built-in-macros/drc.lym +++ b/src/drc/drc/built-in-macros/drc.lym @@ -1365,7 +1365,7 @@ CODE # borders of the polygons of the second operand. # # The following images show the effect of the "and" method - # on polygons and egdes (layer1: red, layer2: blue): + # on polygons and edges (layer1: red, layer2: blue): # # @table # @tr @@ -1392,7 +1392,7 @@ CODE # of the second operand. # # The following images show the effect of the "not" method - # on polygons and egdes (layer1: red, layer2: blue): + # on polygons and edges (layer1: red, layer2: blue): # # @table # @tr @@ -1416,7 +1416,7 @@ CODE # This method is available for polygon and edge layers. # # The following images show the effect of the "xor" method - # on polygons and egdes (layer1: red, layer2: blue): + # on polygons and edges (layer1: red, layer2: blue): # # @table # @tr @@ -1439,7 +1439,7 @@ CODE # This method is available for polygon and edge layers. # # The following images show the effect of the "or" method - # on polygons and egdes (layer1: red, layer2: blue): + # on polygons and edges (layer1: red, layer2: blue): # # @table # @tr @@ -1462,7 +1462,7 @@ CODE # This method is available for polygon, edge and edge pair layers. # # The following images show the effect of the "join" method - # on polygons and egdes (layer1: red, layer2: blue): + # on polygons and edges (layer1: red, layer2: blue): # # @table # @tr diff --git a/src/edt/edt/RoundCornerOptionsDialog.ui b/src/edt/edt/RoundCornerOptionsDialog.ui index d614f6e43..bd9144a68 100644 --- a/src/edt/edt/RoundCornerOptionsDialog.ui +++ b/src/edt/edt/RoundCornerOptionsDialog.ui @@ -54,7 +54,7 @@ Radius to apply on polygon corners -(Radius for inner corners can be specified seperately. +(Radius for inner corners can be specified separately. Leave empty to get the same radius than for outer corners) diff --git a/src/edt/edt/edtMainService.cc b/src/edt/edt/edtMainService.cc index fc848c3b3..975293cfc 100644 --- a/src/edt/edt/edtMainService.cc +++ b/src/edt/edt/edtMainService.cc @@ -228,7 +228,7 @@ MainService::cm_descend () throw tl::Exception (tl::to_string (QObject::tr ("Select an object to determine into which instance to descend"))); } if (! common_inst.valid () || common_inst.ambigous ()) { - throw tl::Exception (tl::to_string (QObject::tr ("Selection is ambigous - cannot determine into which instance to descend"))); + throw tl::Exception (tl::to_string (QObject::tr ("Selection is ambiguous - cannot determine into which instance to descend"))); } // remove the common path and create a new set of selections diff --git a/src/edt/edt/edtPCellParametersPage.h b/src/edt/edt/edtPCellParametersPage.h index e55938b6e..2039e6069 100644 --- a/src/edt/edt/edtPCellParametersPage.h +++ b/src/edt/edt/edtPCellParametersPage.h @@ -37,7 +37,7 @@ namespace edt { /** - * @brief A QScrollArea that displays and allows to edit PCell parameters + * @brief A QScrollArea that displays and allows editing PCell parameters */ class PCellParametersPage : public QScrollArea diff --git a/src/edt/edt/edtPartialService.cc b/src/edt/edt/edtPartialService.cc index 2de47a90d..b04503489 100644 --- a/src/edt/edt/edtPartialService.cc +++ b/src/edt/edt/edtPartialService.cc @@ -1647,7 +1647,7 @@ PartialService::mouse_press_event (const db::DPoint &p, unsigned int buttons, bo if (is_single_point_selection ()) { // for a single selected point we use the original point as the start location which - // allows to bring a to grid + // allows bringing a to grid m_current = m_start = single_selected_point (); } else { m_current = m_start = p; @@ -1842,7 +1842,7 @@ PartialService::mouse_click_event (const db::DPoint &p, unsigned int buttons, bo if (is_single_point_selection ()) { // for a single selected point we use the original point as the start location which - // allows to bring a to grid + // allows bringing a to grid m_current = m_start = single_selected_point (); } else { m_current = m_start = p; diff --git a/src/edt/edt/edtService.h b/src/edt/edt/edtService.h index 4987d8d8e..dbb27a822 100644 --- a/src/edt/edt/edtService.h +++ b/src/edt/edt/edtService.h @@ -185,7 +185,7 @@ public: /** * @brief "transform" operation with a transformation vector * - * This version of the transformation operation allows to specify a transformation per selected object. + * This version of the transformation operation allows one to specify a transformation per selected object. * The transformations in the vector must be ordered in the order the selection is delivered by * the selection iterator. * Either global or per-object transformations can be specified. If a per-object transformation is diff --git a/src/gsi/gsi/gsiCallback.h b/src/gsi/gsi/gsiCallback.h index bb5814426..546e3e3c0 100644 --- a/src/gsi/gsi/gsiCallback.h +++ b/src/gsi/gsi/gsiCallback.h @@ -47,7 +47,7 @@ struct GSI_PUBLIC Callee /** * @brief Callback connector object * - * This object holds informations about the actual implementation of the callback + * This object holds information about the actual implementation of the callback * on the scripting client's side. */ struct Callback diff --git a/src/gsi/gsi/gsiClassBase.cc b/src/gsi/gsi/gsiClassBase.cc index e6548ef8f..491a03186 100644 --- a/src/gsi/gsi/gsiClassBase.cc +++ b/src/gsi/gsi/gsiClassBase.cc @@ -390,6 +390,30 @@ sm_assign (const char *name, const gsi::ClassBase *cls) return sm; } +static const std::set > &name_map_for_class (const gsi::ClassBase *cls, std::map > > &cache) +{ + if (! cls) { + static std::set > empty; + return empty; + } + + std::map > >::iterator cc = cache.find (cls); + if (cc != cache.end ()) { + return cc->second; + } + + cc = cache.insert (std::make_pair ((const gsi::ClassBase *) 0, std::set > ())).first; + cc->second = name_map_for_class (cls->base (), cache); + + for (gsi::ClassBase::method_iterator m = cls->begin_methods (); m != cls->end_methods (); ++m) { + for (gsi::MethodBase::synonym_iterator syn = (*m)->begin_synonyms (); syn != (*m)->end_synonyms (); ++syn) { + cc->second.insert (std::make_pair (syn->name, (*m)->is_static ())); + } + } + + return cc->second; +} + void ClassBase::merge_declarations () { @@ -433,6 +457,8 @@ ClassBase::merge_declarations () } } + std::map > > name_maps; + // Add to the classes the special methods and clean up the method table for (gsi::ClassBase::class_iterator c = gsi::ClassBase::begin_new_classes (); c != gsi::ClassBase::end_new_classes (); ++c) { @@ -441,12 +467,7 @@ ClassBase::merge_declarations () continue; } - std::set > name_map; - for (gsi::ClassBase::method_iterator m = c->begin_methods (); m != c->end_methods (); ++m) { - for (gsi::MethodBase::synonym_iterator syn = (*m)->begin_synonyms (); syn != (*m)->end_synonyms (); ++syn) { - name_map.insert (std::make_pair (syn->name, (*m)->is_static ())); - } - } + const std::set > &name_map = name_map_for_class (c.operator-> (), name_maps); // We don't want the declaration object to be non-const except for this case. So // we const_cast here. diff --git a/src/gsi/gsi/gsiDeclBasic.cc b/src/gsi/gsi/gsiDeclBasic.cc index e035e39be..215b7e08a 100644 --- a/src/gsi/gsi/gsiDeclBasic.cc +++ b/src/gsi/gsi/gsiDeclBasic.cc @@ -29,7 +29,7 @@ namespace gsi // --------------------------------------------------------------------------------- -// A generic value wrapper that allows to wrap a plain data type into an object +// A generic value wrapper that allows wrapping a plain data type into an object static gsi::Value *new_vv (const tl::Variant &v) { diff --git a/src/gsi/gsi/gsiDeclInternal.cc b/src/gsi/gsi/gsiDeclInternal.cc index 333ce940c..a055d17a4 100644 --- a/src/gsi/gsi/gsiDeclInternal.cc +++ b/src/gsi/gsi/gsiDeclInternal.cc @@ -42,7 +42,7 @@ namespace gsi { // --------------------------------------------------------------- -// Access to the internal informations of GSI +// Access to the internal information of GSI static int t_void () { return T_void; } static int t_bool () { return T_bool; } diff --git a/src/gsi/gsi/gsiDeclTl.cc b/src/gsi/gsi/gsiDeclTl.cc index 7c4dc3a5b..f9adbbb77 100644 --- a/src/gsi/gsi/gsiDeclTl.cc +++ b/src/gsi/gsi/gsiDeclTl.cc @@ -128,7 +128,7 @@ Class decl_Logger ("tl", "Logger", ), "@brief A logger\n" "\n" - "The logger allows to output messages to the log channels. If the log viewer is open, the " + "The logger outputs messages to the log channels. If the log viewer is open, the " "log messages will be shown in the logger view. Otherwise they will be printed to the terminal " "on Linux for example.\n" "\n" @@ -238,7 +238,7 @@ Class decl_Progress ("tl", "Progress", "@brief A progress reporter\n" "\n" "This is the base class for all progress reporter objects. Progress reporter objects are used " - "to report the progress of some operation and to allow to abort an operation. " + "to report the progress of some operation and to allow aborting an operation. " "Progress reporter objects must be triggered periodically, i.e. a value must be set. " "On the display side, a progress bar usually is used to represent the progress of an operation.\n" "\n" @@ -300,7 +300,7 @@ Class decl_RelativeProgress (decl_Progress, "tl", "Relativ "@brief Sets the progress value\n" "@args value, force_yield\n" "\n" - "This method is equivalent to \\value=, but it allows to force the event loop to be triggered.\n" + "This method is equivalent to \\value=, but it allows forcing the event loop to be triggered.\n" "If \"force_yield\" is true, the event loop will be triggered always, irregardless of the yield interval specified in the constructor.\n" ), "@brief A progress reporter counting progress in relative units\n" @@ -394,7 +394,7 @@ Class decl_AbsoluteProgress (decl_Progress, "tl", "Absolut "@brief Sets the progress value\n" "@args value, force_yield\n" "\n" - "This method is equivalent to \\value=, but it allows to force the event loop to be triggered.\n" + "This method is equivalent to \\value=, but it allows forcing the event loop to be triggered.\n" "If \"force_yield\" is true, the event loop will be triggered always, irregardless of the yield interval specified in the constructor.\n" ), "@brief A progress reporter counting progress in absolute units\n" diff --git a/src/gsi/gsi/gsiInterpreter.h b/src/gsi/gsi/gsiInterpreter.h index adc05276e..3f98fa058 100644 --- a/src/gsi/gsi/gsiInterpreter.h +++ b/src/gsi/gsi/gsiInterpreter.h @@ -105,8 +105,8 @@ public: /** * @brief An interface controlling the execution of a script * - * This interface allows to control the execution of a script. Basically when a script - * is executed, the handler allows to intercept the execution and implement breakpoints + * This interface controls the execution of a script. Basically when a script + * is executed, the handler allows intercepting the execution and implement breakpoints * for example */ class GSI_PUBLIC ExecutionHandler diff --git a/src/gsi/gsi/gsiMethods.h b/src/gsi/gsi/gsiMethods.h index 9d214ef6f..4ea46ff72 100644 --- a/src/gsi/gsi/gsiMethods.h +++ b/src/gsi/gsi/gsiMethods.h @@ -63,7 +63,7 @@ struct IncompatibleReturnTypeException * * A class declaration collects objects of this kind to represent methods and their specific * implementation. - * This class is implemented in various specific ways that bind the abstract call to a specifc + * This class is implemented in various specific ways that bind the abstract call to a specific * C++ method. */ class GSI_PUBLIC MethodBase @@ -612,7 +612,7 @@ private: /** * @brief A collection of methods * - * The basic purpose of this object is to provide the + operator that allows to concatenate + * The basic purpose of this object is to provide the + operator that allows concatenation * method declarations in the class declaration. */ class GSI_PUBLIC Methods diff --git a/src/gsi/gsi/gsiSerialisation.cc b/src/gsi/gsi/gsiSerialisation.cc index e9fa3ff98..b965a37ab 100644 --- a/src/gsi/gsi/gsiSerialisation.cc +++ b/src/gsi/gsi/gsiSerialisation.cc @@ -65,7 +65,7 @@ void AdaptorBase::tie_copies (AdaptorBase *target, tl::Heap &heap) copy_to (target, heap); // This object (which will be destroyed before this is responsible for copying back - // the contents ot target into this once the heap goes out of scope) + // the contents of target into this once the heap goes out of scope) heap.push (new AdaptorSynchronizer (t.release (), this, &heap)); } diff --git a/src/gsi/gsi/gsiSerialisation.h b/src/gsi/gsi/gsiSerialisation.h index 670e5638f..1b62147a2 100644 --- a/src/gsi/gsi/gsiSerialisation.h +++ b/src/gsi/gsi/gsiSerialisation.h @@ -586,6 +586,46 @@ private: } }; +// ------------------------------------------------------------ +// A rebinding of SerialArgs::read to a functor + +template +struct GSI_PUBLIC_TEMPLATE arg_reader +{ + inline X operator() (gsi::SerialArgs &args, tl::Heap &heap) { return args.read (heap); } +}; + +// ------------------------------------------------------------ +// Provides a function analog to arg_reader, but for a static value +// The reasoning behind this functor is to support default arguments. +// Specifically in the case of (const X &) arguments, this must not +// create references to temporaries. + +template +struct GSI_PUBLIC_TEMPLATE arg_maker +{ + inline X operator() (const X &x, tl::Heap &) { return x; } +}; + +template +struct GSI_PUBLIC_TEMPLATE arg_maker +{ + inline X &operator() (X &x, tl::Heap &) { return x; } +}; + +template +struct GSI_PUBLIC_TEMPLATE arg_maker +{ + inline const X &operator() (const X &x, tl::Heap &heap) + { + // avoid references to temp. With this copy we can create a const + // reference from a static value. + X *copy = new X (x); + heap.push (copy); + return *copy; + } +}; + // ------------------------------------------------------------ // Basic adaptor diff --git a/src/gsi/gsi/gsiTypes.h b/src/gsi/gsi/gsiTypes.h index 4f4065285..22a941d09 100644 --- a/src/gsi/gsi/gsiTypes.h +++ b/src/gsi/gsi/gsiTypes.h @@ -1451,7 +1451,7 @@ struct compute_pass_obj * * The type declaration carries the basic type code and flags, if the argument * is an iterator delivering the given types of a vector of the given types and - * adds class informations if the type is "T_object", "T_object_ref", "T_object_cref". + * adds class information if the type is "T_object", "T_object_ref", "T_object_cref". */ class GSI_PUBLIC ArgType { diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractItemModel.cc b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractItemModel.cc index a37f08506..76f04bd9b 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractItemModel.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractItemModel.cc @@ -72,7 +72,7 @@ static void _call_f_buddy_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel *)cls)->buddy (arg1)); } @@ -91,7 +91,7 @@ static void _call_f_canFetchMore_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel *)cls)->canFetchMore (arg1)); } @@ -110,7 +110,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractItemModel *)cls)->columnCount (arg1)); } @@ -131,8 +131,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractItemModel *)cls)->data (arg1, arg2)); } @@ -159,11 +159,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -182,7 +182,7 @@ static void _call_f_fetchMore_2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel *)cls)->fetchMore (arg1); } @@ -202,7 +202,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractItemModel *)cls)->flags (arg1)); } @@ -221,7 +221,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->hasChildren (arg1)); } @@ -244,9 +244,9 @@ static void _call_f_hasIndex_c3713 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->hasIndex (arg1, arg2, arg3)); } @@ -269,9 +269,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractItemModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -294,9 +294,9 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractItemModel *)cls)->index (arg1, arg2, arg3)); } @@ -317,8 +317,8 @@ static void _call_f_insertColumn_3054 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->insertColumn (arg1, arg2)); } @@ -341,9 +341,9 @@ static void _call_f_insertColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->insertColumns (arg1, arg2, arg3)); } @@ -364,8 +364,8 @@ static void _call_f_insertRow_3054 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->insertRow (arg1, arg2)); } @@ -388,9 +388,9 @@ static void _call_f_insertRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->insertRows (arg1, arg2, arg3)); } @@ -409,7 +409,7 @@ static void _call_f_itemData_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractItemModel *)cls)->itemData (arg1)); } @@ -436,11 +436,11 @@ static void _call_f_match_c7932 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(1); - QFlags arg5 = args ? args.read > (heap) : (QFlags)(Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap)); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QAbstractItemModel *)cls)->match (arg1, arg2, arg3, arg4, arg5)); } @@ -459,7 +459,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QAbstractItemModel *)cls)->mimeData (arg1)); } @@ -493,7 +493,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel *)cls)->parent (arg1)); } @@ -529,8 +529,8 @@ static void _call_f_removeColumn_3054 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->removeColumn (arg1, arg2)); } @@ -553,9 +553,9 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->removeColumns (arg1, arg2, arg3)); } @@ -576,8 +576,8 @@ static void _call_f_removeRow_3054 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->removeRow (arg1, arg2)); } @@ -600,9 +600,9 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->removeRows (arg1, arg2, arg3)); } @@ -652,7 +652,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractItemModel *)cls)->rowCount (arg1)); } @@ -675,9 +675,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractItemModel *)cls)->setData (arg1, arg2, arg3)); } @@ -702,10 +702,10 @@ static void _call_f_setHeaderData_5242 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(Qt::EditRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractItemModel *)cls)->setHeaderData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -726,8 +726,8 @@ static void _call_f_setItemData_5414 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAbstractItemModel *)cls)->setItemData (arg1, arg2)); } @@ -746,7 +746,7 @@ static void _call_f_setSupportedDragActions_2456 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel *)cls)->setSupportedDragActions (arg1); } @@ -770,9 +770,9 @@ static void _call_f_sibling_c3713 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel *)cls)->sibling (arg1, arg2, arg3)); } @@ -793,8 +793,8 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel *)cls)->sort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -814,7 +814,7 @@ static void _call_f_span_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractItemModel *)cls)->span (arg1)); } @@ -880,8 +880,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractItemModel::tr (arg1, arg2)); } @@ -904,9 +904,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractItemModel::tr (arg1, arg2, arg3)); } @@ -927,8 +927,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractItemModel::trUtf8 (arg1, arg2)); } @@ -951,9 +951,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractItemModel::trUtf8 (arg1, arg2, arg3)); } @@ -1772,7 +1772,7 @@ static void _call_ctor_QAbstractItemModel_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractItemModel_Adaptor (arg1)); } @@ -1794,9 +1794,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1819,9 +1819,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1848,11 +1848,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1878,11 +1878,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1904,9 +1904,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1929,9 +1929,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -2013,8 +2013,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_changePersistentIndex_4682 (arg1, arg2); } @@ -2035,8 +2035,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -2106,9 +2106,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -2130,9 +2130,9 @@ static void _call_fp_createIndex_c2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_createIndex_c2085 (arg1, arg2, arg3)); } @@ -2154,9 +2154,9 @@ static void _call_fp_createIndex_c2416 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quint32 arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quint32 arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_createIndex_c2416 (arg1, arg2, arg3)); } @@ -2226,8 +2226,8 @@ static void _call_emitter_dataChanged_4682 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QAbstractItemModel_Adaptor *)cls)->emitter_QAbstractItemModel_dataChanged_4682 (arg1, arg2); } @@ -2251,10 +2251,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -2272,7 +2272,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractItemModel_Adaptor *)cls)->emitter_QAbstractItemModel_destroyed_1302 (arg1); } @@ -2351,8 +2351,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_encodeData_c4599 (arg1, arg2); } @@ -2628,9 +2628,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QAbstractItemModel_Adaptor *)cls)->emitter_QAbstractItemModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2900,7 +2900,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_receivers_c1731 (arg1)); } @@ -3135,7 +3135,7 @@ static void _call_fp_setRoleNames_3419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHash &arg1 = args.read & > (heap); + const QHash &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_setRoleNames_3419 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractListModel.cc b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractListModel.cc index 9de52e642..e7553c9f0 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractListModel.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractListModel.cc @@ -80,11 +80,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -107,9 +107,9 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractListModel *)cls)->index (arg1, arg2, arg3)); } @@ -130,8 +130,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractListModel::tr (arg1, arg2)); } @@ -154,9 +154,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractListModel::tr (arg1, arg2, arg3)); } @@ -177,8 +177,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractListModel::trUtf8 (arg1, arg2)); } @@ -201,9 +201,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractListModel::trUtf8 (arg1, arg2, arg3)); } @@ -933,7 +933,7 @@ static void _call_ctor_QAbstractListModel_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractListModel_Adaptor (arg1)); } @@ -955,9 +955,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -980,9 +980,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1009,11 +1009,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1039,11 +1039,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1065,9 +1065,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1090,9 +1090,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -1174,8 +1174,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_changePersistentIndex_4682 (arg1, arg2); } @@ -1196,8 +1196,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -1244,9 +1244,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -1268,9 +1268,9 @@ static void _call_fp_createIndex_c2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_createIndex_c2085 (arg1, arg2, arg3)); } @@ -1292,9 +1292,9 @@ static void _call_fp_createIndex_c2416 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quint32 arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quint32 arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_createIndex_c2416 (arg1, arg2, arg3)); } @@ -1364,8 +1364,8 @@ static void _call_emitter_dataChanged_4682 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QAbstractListModel_Adaptor *)cls)->emitter_QAbstractListModel_dataChanged_4682 (arg1, arg2); } @@ -1389,10 +1389,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -1410,7 +1410,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractListModel_Adaptor *)cls)->emitter_QAbstractListModel_destroyed_1302 (arg1); } @@ -1489,8 +1489,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_encodeData_c4599 (arg1, arg2); } @@ -1743,9 +1743,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QAbstractListModel_Adaptor *)cls)->emitter_QAbstractListModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -1992,7 +1992,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_receivers_c1731 (arg1)); } @@ -2227,7 +2227,7 @@ static void _call_fp_setRoleNames_3419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHash &arg1 = args.read & > (heap); + const QHash &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_setRoleNames_3419 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractTableModel.cc b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractTableModel.cc index d918e6c1c..e1ba72be0 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQAbstractTableModel.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQAbstractTableModel.cc @@ -80,11 +80,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -107,9 +107,9 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractTableModel *)cls)->index (arg1, arg2, arg3)); } @@ -130,8 +130,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractTableModel::tr (arg1, arg2)); } @@ -154,9 +154,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractTableModel::tr (arg1, arg2, arg3)); } @@ -177,8 +177,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractTableModel::trUtf8 (arg1, arg2)); } @@ -201,9 +201,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractTableModel::trUtf8 (arg1, arg2, arg3)); } @@ -950,7 +950,7 @@ static void _call_ctor_QAbstractTableModel_Adaptor_1302 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractTableModel_Adaptor (arg1)); } @@ -972,9 +972,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -997,9 +997,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1026,11 +1026,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1056,11 +1056,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1082,9 +1082,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1107,9 +1107,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -1191,8 +1191,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_changePersistentIndex_4682 (arg1, arg2); } @@ -1213,8 +1213,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -1284,9 +1284,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -1308,9 +1308,9 @@ static void _call_fp_createIndex_c2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_createIndex_c2085 (arg1, arg2, arg3)); } @@ -1332,9 +1332,9 @@ static void _call_fp_createIndex_c2416 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quint32 arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quint32 arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_createIndex_c2416 (arg1, arg2, arg3)); } @@ -1404,8 +1404,8 @@ static void _call_emitter_dataChanged_4682 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QAbstractTableModel_Adaptor *)cls)->emitter_QAbstractTableModel_dataChanged_4682 (arg1, arg2); } @@ -1429,10 +1429,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -1450,7 +1450,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractTableModel_Adaptor *)cls)->emitter_QAbstractTableModel_destroyed_1302 (arg1); } @@ -1529,8 +1529,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_encodeData_c4599 (arg1, arg2); } @@ -1783,9 +1783,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QAbstractTableModel_Adaptor *)cls)->emitter_QAbstractTableModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2032,7 +2032,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_receivers_c1731 (arg1)); } @@ -2267,7 +2267,7 @@ static void _call_fp_setRoleNames_3419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHash &arg1 = args.read & > (heap); + const QHash &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_setRoleNames_3419 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQBasicTimer.cc b/src/gsiqt/qt4/QtCore/gsiDeclQBasicTimer.cc index 8feb33571..b2c6a75ae 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQBasicTimer.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQBasicTimer.cc @@ -83,8 +83,8 @@ static void _call_f_start_1961 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBasicTimer *)cls)->start (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQBuffer.cc b/src/gsiqt/qt4/QtCore/gsiDeclQBuffer.cc index 30861edf3..de2a915c1 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQBuffer.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQBuffer.cc @@ -66,7 +66,7 @@ static void _call_ctor_QBuffer_1302 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QBuffer (arg1)); } @@ -87,8 +87,8 @@ static void _call_ctor_QBuffer_2812 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray *arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + QByteArray *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QBuffer (arg1, arg2)); } @@ -198,7 +198,7 @@ static void _call_f_open_3242 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QBuffer *)cls)->open (arg1)); } @@ -232,7 +232,7 @@ static void _call_f_seek_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBuffer *)cls)->seek (arg1)); } @@ -251,7 +251,7 @@ static void _call_f_setBuffer_1618 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray *arg1 = args.read (heap); + QByteArray *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBuffer *)cls)->setBuffer (arg1); } @@ -271,7 +271,7 @@ static void _call_f_setData_2309 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBuffer *)cls)->setData (arg1); } @@ -293,8 +293,8 @@ static void _call_f_setData_2390 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBuffer *)cls)->setData (arg1, arg2); } @@ -331,8 +331,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QBuffer::tr (arg1, arg2)); } @@ -355,9 +355,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QBuffer::tr (arg1, arg2, arg3)); } @@ -378,8 +378,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QBuffer::trUtf8 (arg1, arg2)); } @@ -402,9 +402,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QBuffer::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQByteArrayMatcher.cc b/src/gsiqt/qt4/QtCore/gsiDeclQByteArrayMatcher.cc index 7a9f5b12f..dc4cd0fb7 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQByteArrayMatcher.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQByteArrayMatcher.cc @@ -65,7 +65,7 @@ static void _call_ctor_QByteArrayMatcher_2309 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write (new QByteArrayMatcher (arg1)); } @@ -86,8 +86,8 @@ static void _call_ctor_QByteArrayMatcher_2390 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QByteArrayMatcher (arg1, arg2)); } @@ -106,7 +106,7 @@ static void _call_ctor_QByteArrayMatcher_3017 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArrayMatcher &arg1 = args.read (heap); + const QByteArrayMatcher &arg1 = gsi::arg_reader() (args, heap); ret.write (new QByteArrayMatcher (arg1)); } @@ -129,9 +129,9 @@ static void _call_f_indexIn_c3049 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QByteArrayMatcher *)cls)->indexIn (arg1, arg2, arg3)); } @@ -150,7 +150,7 @@ static void _call_f_operator_eq__3017 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArrayMatcher &arg1 = args.read (heap); + const QByteArrayMatcher &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArrayMatcher &)((QByteArrayMatcher *)cls)->operator= (arg1)); } @@ -184,7 +184,7 @@ static void _call_f_setPattern_2309 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QByteArrayMatcher *)cls)->setPattern (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQChildEvent.cc b/src/gsiqt/qt4/QtCore/gsiDeclQChildEvent.cc index a0e6ee68a..c122b4096 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQChildEvent.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQChildEvent.cc @@ -187,8 +187,8 @@ static void _call_ctor_QChildEvent_Adaptor_2759 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QObject *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); ret.write (new QChildEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQCoreApplication.cc b/src/gsiqt/qt4/QtCore/gsiDeclQCoreApplication.cc index 048c76143..4cd886b29 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQCoreApplication.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQCoreApplication.cc @@ -71,8 +71,8 @@ static void _call_f_filterEvent_2477 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - void *arg1 = args.read (heap); - long int *arg2 = args.read (heap); + void *arg1 = gsi::arg_reader() (args, heap); + long int *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCoreApplication *)cls)->filterEvent (arg1, arg2)); } @@ -93,8 +93,8 @@ static void _call_f_notify_2411 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCoreApplication *)cls)->notify (arg1, arg2)); } @@ -113,7 +113,7 @@ static void _call_f_addLibraryPath_2025 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::addLibraryPath (arg1); } @@ -253,7 +253,7 @@ static void _call_f_exit_767 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::exit (arg1); } @@ -304,7 +304,7 @@ static void _call_f_installTranslator_1769 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTranslator *arg1 = args.read (heap); + QTranslator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::installTranslator (arg1); } @@ -386,8 +386,8 @@ static void _call_f_postEvent_2411 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::postEvent (arg1, arg2); @@ -412,10 +412,10 @@ static void _call_f_postEvent_3070 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg2); - int arg3 = args.read (heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::postEvent (arg1, arg2, arg3); } @@ -435,7 +435,7 @@ static void _call_f_processEvents_3995 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QEventLoop::AllEvents); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QEventLoop::AllEvents, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::processEvents (arg1); } @@ -457,8 +457,8 @@ static void _call_f_processEvents_4654 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - int arg2 = args.read (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::processEvents (arg1, arg2); } @@ -494,7 +494,7 @@ static void _call_f_removeLibraryPath_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::removeLibraryPath (arg1); } @@ -514,7 +514,7 @@ static void _call_f_removePostedEvents_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::removePostedEvents (arg1); } @@ -536,8 +536,8 @@ static void _call_f_removePostedEvents_1961 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::removePostedEvents (arg1, arg2); } @@ -557,7 +557,7 @@ static void _call_f_removeTranslator_1769 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTranslator *arg1 = args.read (heap); + QTranslator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::removeTranslator (arg1); } @@ -579,8 +579,8 @@ static void _call_f_sendEvent_2411 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QCoreApplication::sendEvent (arg1, arg2)); } @@ -601,8 +601,8 @@ static void _call_f_sendPostedEvents_1961 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::sendPostedEvents (arg1, arg2); } @@ -638,7 +638,7 @@ static void _call_f_setApplicationName_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::setApplicationName (arg1); } @@ -658,7 +658,7 @@ static void _call_f_setApplicationVersion_2025 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::setApplicationVersion (arg1); } @@ -680,8 +680,8 @@ static void _call_f_setAttribute_3593 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::setAttribute (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -701,7 +701,7 @@ static void _call_f_setLibraryPaths_2437 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::setLibraryPaths (arg1); } @@ -721,7 +721,7 @@ static void _call_f_setOrganizationDomain_2025 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::setOrganizationDomain (arg1); } @@ -741,7 +741,7 @@ static void _call_f_setOrganizationName_2025 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::setOrganizationName (arg1); } @@ -776,7 +776,7 @@ static void _call_f_testAttribute_2837 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)QCoreApplication::testAttribute (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -797,8 +797,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCoreApplication::tr (arg1, arg2)); } @@ -821,9 +821,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCoreApplication::tr (arg1, arg2, arg3)); } @@ -844,8 +844,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCoreApplication::trUtf8 (arg1, arg2)); } @@ -868,9 +868,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCoreApplication::trUtf8 (arg1, arg2, arg3)); } @@ -895,10 +895,10 @@ static void _call_f_translate_7842 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const char *arg3 = args ? args.read (heap) : (const char *)(0); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QCoreApplication::CodecForTr)); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QCoreApplication::CodecForTr), heap); ret.write ((QString)QCoreApplication::translate (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -925,11 +925,11 @@ static void _call_f_translate_8501 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const char *arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); - int arg5 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((QString)QCoreApplication::translate (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref(), arg5)); } @@ -1248,7 +1248,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCoreApplication_Adaptor *)cls)->emitter_QCoreApplication_destroyed_1302 (arg1); } @@ -1365,7 +1365,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCoreApplication_Adaptor *)cls)->fp_QCoreApplication_receivers_c1731 (arg1)); } @@ -1421,7 +1421,7 @@ static void _call_emitter_unixSignal_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QCoreApplication_Adaptor *)cls)->emitter_QCoreApplication_unixSignal_767 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQCryptographicHash.cc b/src/gsiqt/qt4/QtCore/gsiDeclQCryptographicHash.cc index 95c05573c..5d248dca7 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQCryptographicHash.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQCryptographicHash.cc @@ -50,7 +50,7 @@ static void _call_ctor_QCryptographicHash_3331 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QCryptographicHash (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -71,8 +71,8 @@ static void _call_f_addData_2390 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCryptographicHash *)cls)->addData (arg1, arg2); } @@ -92,7 +92,7 @@ static void _call_f_addData_2309 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCryptographicHash *)cls)->addData (arg1); } @@ -145,8 +145,8 @@ static void _call_f_hash_5532 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QByteArray)QCryptographicHash::hash (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQDataStream.cc b/src/gsiqt/qt4/QtCore/gsiDeclQDataStream.cc index b6c12e50e..af6b7beaf 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQDataStream.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQDataStream.cc @@ -335,7 +335,7 @@ static void _call_f_setByteOrder_2543 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataStream *)cls)->setByteOrder (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -355,7 +355,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataStream *)cls)->setDevice (arg1); } @@ -375,7 +375,7 @@ static void _call_f_setFloatingPointPrecision_3913 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataStream *)cls)->setFloatingPointPrecision (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -395,7 +395,7 @@ static void _call_f_setStatus_2275 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataStream *)cls)->setStatus (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -415,7 +415,7 @@ static void _call_f_setVersion_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataStream *)cls)->setVersion (arg1); } @@ -435,7 +435,7 @@ static void _call_f_skipRawData_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDataStream *)cls)->skipRawData (arg1)); } @@ -502,8 +502,8 @@ static void _call_f_writeBytes_3395 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); ret.write ((QDataStream &)((QDataStream *)cls)->writeBytes (arg1, arg2)); } @@ -524,8 +524,8 @@ static void _call_f_writeRawData_2390 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QDataStream *)cls)->writeRawData (arg1, arg2)); } @@ -658,7 +658,7 @@ static void _call_ctor_QDataStream_Adaptor_1447 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write (new QDataStream_Adaptor (arg1)); } @@ -678,8 +678,8 @@ static void _call_ctor_QDataStream_Adaptor_4752 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QByteArray *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write (new QDataStream_Adaptor (arg1, arg2)); } @@ -697,7 +697,7 @@ static void _call_ctor_QDataStream_Adaptor_2309 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDataStream_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQDate.cc b/src/gsiqt/qt4/QtCore/gsiDeclQDate.cc index e8e60d533..762feabe3 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQDate.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQDate.cc @@ -69,9 +69,9 @@ static void _call_ctor_QDate_2085 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write (new QDate (arg1, arg2, arg3)); } @@ -90,7 +90,7 @@ static void _call_f_addDays_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDate)((QDate *)cls)->addDays (arg1)); } @@ -109,7 +109,7 @@ static void _call_f_addMonths_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDate)((QDate *)cls)->addMonths (arg1)); } @@ -128,7 +128,7 @@ static void _call_f_addYears_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDate)((QDate *)cls)->addYears (arg1)); } @@ -222,7 +222,7 @@ static void _call_f_daysTo_c1776 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDate *)cls)->daysTo (arg1)); } @@ -245,9 +245,9 @@ static void _call_f_getDate_2643 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDate *)cls)->getDate (arg1, arg2, arg3); } @@ -312,7 +312,7 @@ static void _call_f_operator_excl__eq__c1776 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDate *)cls)->operator!= (arg1)); } @@ -331,7 +331,7 @@ static void _call_f_operator_lt__c1776 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDate *)cls)->operator< (arg1)); } @@ -350,7 +350,7 @@ static void _call_f_operator_lt__eq__c1776 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDate *)cls)->operator<= (arg1)); } @@ -369,7 +369,7 @@ static void _call_f_operator_eq__eq__c1776 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDate *)cls)->operator== (arg1)); } @@ -388,7 +388,7 @@ static void _call_f_operator_gt__c1776 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDate *)cls)->operator> (arg1)); } @@ -407,7 +407,7 @@ static void _call_f_operator_gt__eq__c1776 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDate *)cls)->operator>= (arg1)); } @@ -430,9 +430,9 @@ static void _call_f_setDate_2085 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDate *)cls)->setDate (arg1, arg2, arg3)); } @@ -455,9 +455,9 @@ static void _call_f_setYMD_2085 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDate *)cls)->setYMD (arg1, arg2, arg3)); } @@ -491,7 +491,7 @@ static void _call_f_toString_c1748 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate), heap); ret.write ((QString)((QDate *)cls)->toString (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -510,7 +510,7 @@ static void _call_f_toString_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDate *)cls)->toString (arg1)); } @@ -529,7 +529,7 @@ static void _call_f_weekNumber_c953 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args ? args.read (heap) : (int *)(0); + int *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QDate *)cls)->weekNumber (arg1)); } @@ -578,7 +578,7 @@ static void _call_f_fromJulianDay_767 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDate)QDate::fromJulianDay (arg1)); } @@ -599,8 +599,8 @@ static void _call_f_fromString_3665 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate), heap); ret.write ((QDate)QDate::fromString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -621,8 +621,8 @@ static void _call_f_fromString_3942 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDate)QDate::fromString (arg1, arg2)); } @@ -645,9 +645,9 @@ static void _call_f_gregorianToJulian_2085 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((unsigned int)QDate::gregorianToJulian (arg1, arg2, arg3)); } @@ -666,7 +666,7 @@ static void _call_f_isLeapYear_767 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QDate::isLeapYear (arg1)); } @@ -689,9 +689,9 @@ static void _call_f_isValid_2085 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)QDate::isValid (arg1, arg2, arg3)); } @@ -716,10 +716,10 @@ static void _call_f_julianToGregorian_4295 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - int &arg2 = args.read (heap); - int &arg3 = args.read (heap); - int &arg4 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); + int &arg3 = gsi::arg_reader() (args, heap); + int &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QDate::julianToGregorian (arg1, arg2, arg3, arg4); } @@ -739,7 +739,7 @@ static void _call_f_longDayName_767 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QDate::longDayName (arg1)); } @@ -760,8 +760,8 @@ static void _call_f_longDayName_2995 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QDate::longDayName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -780,7 +780,7 @@ static void _call_f_longMonthName_767 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QDate::longMonthName (arg1)); } @@ -801,8 +801,8 @@ static void _call_f_longMonthName_2995 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QDate::longMonthName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -821,7 +821,7 @@ static void _call_f_shortDayName_767 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QDate::shortDayName (arg1)); } @@ -842,8 +842,8 @@ static void _call_f_shortDayName_2995 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QDate::shortDayName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -862,7 +862,7 @@ static void _call_f_shortMonthName_767 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QDate::shortMonthName (arg1)); } @@ -883,8 +883,8 @@ static void _call_f_shortMonthName_2995 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QDate::shortMonthName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQDateTime.cc b/src/gsiqt/qt4/QtCore/gsiDeclQDateTime.cc index e4e6f23ff..7fd0d0d73 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQDateTime.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQDateTime.cc @@ -67,7 +67,7 @@ static void _call_ctor_QDateTime_1776 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDateTime (arg1)); } @@ -90,9 +90,9 @@ static void _call_ctor_QDateTime_4896 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - const QTime &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LocalTime)); + const QDate &arg1 = gsi::arg_reader() (args, heap); + const QTime &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LocalTime), heap); ret.write (new QDateTime (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -111,7 +111,7 @@ static void _call_ctor_QDateTime_2175 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDateTime (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_addDays_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateTime *)cls)->addDays (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_addMSecs_c986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateTime *)cls)->addMSecs (arg1)); } @@ -168,7 +168,7 @@ static void _call_f_addMonths_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateTime *)cls)->addMonths (arg1)); } @@ -187,7 +187,7 @@ static void _call_f_addSecs_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateTime *)cls)->addSecs (arg1)); } @@ -206,7 +206,7 @@ static void _call_f_addYears_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateTime *)cls)->addYears (arg1)); } @@ -240,7 +240,7 @@ static void _call_f_daysTo_c2175 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDateTime *)cls)->daysTo (arg1)); } @@ -289,7 +289,7 @@ static void _call_f_operator_excl__eq__c2175 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTime *)cls)->operator!= (arg1)); } @@ -308,7 +308,7 @@ static void _call_f_operator_lt__c2175 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTime *)cls)->operator< (arg1)); } @@ -327,7 +327,7 @@ static void _call_f_operator_lt__eq__c2175 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTime *)cls)->operator<= (arg1)); } @@ -346,7 +346,7 @@ static void _call_f_operator_eq__2175 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime &)((QDateTime *)cls)->operator= (arg1)); } @@ -365,7 +365,7 @@ static void _call_f_operator_eq__eq__c2175 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTime *)cls)->operator== (arg1)); } @@ -384,7 +384,7 @@ static void _call_f_operator_gt__c2175 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTime *)cls)->operator> (arg1)); } @@ -403,7 +403,7 @@ static void _call_f_operator_gt__eq__c2175 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTime *)cls)->operator>= (arg1)); } @@ -422,7 +422,7 @@ static void _call_f_secsTo_c2175 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDateTime *)cls)->secsTo (arg1)); } @@ -441,7 +441,7 @@ static void _call_f_setDate_1776 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTime *)cls)->setDate (arg1); } @@ -461,7 +461,7 @@ static void _call_f_setTime_1793 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTime *)cls)->setTime (arg1); } @@ -481,7 +481,7 @@ static void _call_f_setTimeSpec_1543 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTime *)cls)->setTimeSpec (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -501,7 +501,7 @@ static void _call_f_setTime_t_1772 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTime *)cls)->setTime_t (arg1); } @@ -521,7 +521,7 @@ static void _call_f_setUtcOffset_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTime *)cls)->setUtcOffset (arg1); } @@ -586,7 +586,7 @@ static void _call_f_toString_c1748 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate), heap); ret.write ((QString)((QDateTime *)cls)->toString (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -605,7 +605,7 @@ static void _call_f_toString_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDateTime *)cls)->toString (arg1)); } @@ -624,7 +624,7 @@ static void _call_f_toTimeSpec_c1543 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QDateTime)((QDateTime *)cls)->toTimeSpec (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -705,8 +705,8 @@ static void _call_f_fromString_3665 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate), heap); ret.write ((QDateTime)QDateTime::fromString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -727,8 +727,8 @@ static void _call_f_fromString_3942 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)QDateTime::fromString (arg1, arg2)); } @@ -747,7 +747,7 @@ static void _call_f_fromTime_t_1772 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)QDateTime::fromTime_t (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQDir.cc b/src/gsiqt/qt4/QtCore/gsiDeclQDir.cc index dbbdea9bf..8a7075db0 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQDir.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQDir.cc @@ -51,7 +51,7 @@ static void _call_ctor_QDir_1681 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDir (arg1)); } @@ -70,7 +70,7 @@ static void _call_ctor_QDir_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QDir (arg1)); } @@ -95,10 +95,10 @@ static void _call_ctor_QDir_8374 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QDir::SortFlags(QDir::Name | QDir::IgnoreCase)); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QDir::AllEntries); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::SortFlags(QDir::Name | QDir::IgnoreCase), heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::AllEntries, heap); ret.write (new QDir (arg1, arg2, arg3, arg4)); } @@ -117,7 +117,7 @@ static void _call_f_absoluteFilePath_c2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDir *)cls)->absoluteFilePath (arg1)); } @@ -166,7 +166,7 @@ static void _call_f_cd_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->cd (arg1)); } @@ -232,8 +232,8 @@ static void _call_f_entryInfoList_c4540 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QDir::NoFilter); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QDir::NoSort); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoFilter, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoSort, heap); ret.write > ((QList)((QDir *)cls)->entryInfoList (arg1, arg2)); } @@ -256,9 +256,9 @@ static void _call_f_entryInfoList_c6869 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QDir::NoFilter); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QDir::NoSort); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoFilter, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoSort, heap); ret.write > ((QList)((QDir *)cls)->entryInfoList (arg1, arg2, arg3)); } @@ -279,8 +279,8 @@ static void _call_f_entryList_c4540 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QDir::NoFilter); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QDir::NoSort); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoFilter, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoSort, heap); ret.write ((QStringList)((QDir *)cls)->entryList (arg1, arg2)); } @@ -303,9 +303,9 @@ static void _call_f_entryList_c6869 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QDir::NoFilter); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QDir::NoSort); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoFilter, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoSort, heap); ret.write ((QStringList)((QDir *)cls)->entryList (arg1, arg2, arg3)); } @@ -339,7 +339,7 @@ static void _call_f_exists_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->exists (arg1)); } @@ -358,7 +358,7 @@ static void _call_f_filePath_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDir *)cls)->filePath (arg1)); } @@ -467,7 +467,7 @@ static void _call_f_mkdir_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->mkdir (arg1)); } @@ -486,7 +486,7 @@ static void _call_f_mkpath_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->mkpath (arg1)); } @@ -520,7 +520,7 @@ static void _call_f_operator_excl__eq__c1681 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->operator!= (arg1)); } @@ -539,7 +539,7 @@ static void _call_f_operator_eq__1681 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDir &)((QDir *)cls)->operator= (arg1)); } @@ -558,7 +558,7 @@ static void _call_f_operator_eq__2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDir &)((QDir *)cls)->operator= (arg1)); } @@ -577,7 +577,7 @@ static void _call_f_operator_eq__eq__c1681 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->operator== (arg1)); } @@ -596,7 +596,7 @@ static void _call_f_operator_index__c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDir *)cls)->operator[] (arg1)); } @@ -646,7 +646,7 @@ static void _call_f_relativeFilePath_c2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDir *)cls)->relativeFilePath (arg1)); } @@ -665,7 +665,7 @@ static void _call_f_remove_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->remove (arg1)); } @@ -686,8 +686,8 @@ static void _call_f_rename_3942 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->rename (arg1, arg2)); } @@ -706,7 +706,7 @@ static void _call_f_rmdir_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->rmdir (arg1)); } @@ -725,7 +725,7 @@ static void _call_f_rmpath_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->rmpath (arg1)); } @@ -744,7 +744,7 @@ static void _call_f_setFilter_2230 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDir *)cls)->setFilter (arg1); } @@ -764,7 +764,7 @@ static void _call_f_setNameFilters_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDir *)cls)->setNameFilters (arg1); } @@ -784,7 +784,7 @@ static void _call_f_setPath_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDir *)cls)->setPath (arg1); } @@ -804,7 +804,7 @@ static void _call_f_setSorting_2418 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDir *)cls)->setSorting (arg1); } @@ -839,7 +839,7 @@ static void _call_f_addResourceSearchPath_2025 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QDir::addResourceSearchPath (arg1); } @@ -861,8 +861,8 @@ static void _call_f_addSearchPath_3942 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QDir::addSearchPath (arg1, arg2); } @@ -882,7 +882,7 @@ static void _call_f_cleanPath_2025 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QDir::cleanPath (arg1)); } @@ -901,7 +901,7 @@ static void _call_f_convertSeparators_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QDir::convertSeparators (arg1)); } @@ -965,7 +965,7 @@ static void _call_f_fromNativeSeparators_2025 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QDir::fromNativeSeparators (arg1)); } @@ -1014,7 +1014,7 @@ static void _call_f_isAbsolutePath_2025 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QDir::isAbsolutePath (arg1)); } @@ -1033,7 +1033,7 @@ static void _call_f_isRelativePath_2025 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QDir::isRelativePath (arg1)); } @@ -1054,8 +1054,8 @@ static void _call_f_match_4354 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QDir::match (arg1, arg2)); } @@ -1076,8 +1076,8 @@ static void _call_f_match_3942 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QDir::match (arg1, arg2)); } @@ -1096,7 +1096,7 @@ static void _call_f_nameFiltersFromString_2025 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)QDir::nameFiltersFromString (arg1)); } @@ -1145,7 +1145,7 @@ static void _call_f_searchPaths_2025 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)QDir::searchPaths (arg1)); } @@ -1179,7 +1179,7 @@ static void _call_f_setCurrent_2025 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QDir::setCurrent (arg1)); } @@ -1200,8 +1200,8 @@ static void _call_f_setSearchPaths_4354 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QDir::setSearchPaths (arg1, arg2); } @@ -1251,7 +1251,7 @@ static void _call_f_toNativeSeparators_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QDir::toNativeSeparators (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc b/src/gsiqt/qt4/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc index 1e4c78bab..96137a3fc 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc @@ -101,7 +101,7 @@ static void _call_ctor_QDynamicPropertyChangeEvent_Adaptor_2309 (const qt_gsi::G { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDynamicPropertyChangeEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQEasingCurve.cc b/src/gsiqt/qt4/QtCore/gsiDeclQEasingCurve.cc index bc26377e1..0acf9ee71 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQEasingCurve.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQEasingCurve.cc @@ -50,7 +50,7 @@ static void _call_ctor_QEasingCurve_2167 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEasingCurve::Linear)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEasingCurve::Linear), heap); ret.write (new QEasingCurve (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -69,7 +69,7 @@ static void _call_ctor_QEasingCurve_2510 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QEasingCurve &arg1 = args.read (heap); + const QEasingCurve &arg1 = gsi::arg_reader() (args, heap); ret.write (new QEasingCurve (arg1)); } @@ -103,7 +103,7 @@ static void _call_f_operator_excl__eq__c2510 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QEasingCurve &arg1 = args.read (heap); + const QEasingCurve &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEasingCurve *)cls)->operator!= (arg1)); } @@ -122,7 +122,7 @@ static void _call_f_operator_eq__2510 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QEasingCurve &arg1 = args.read (heap); + const QEasingCurve &arg1 = gsi::arg_reader() (args, heap); ret.write ((QEasingCurve &)((QEasingCurve *)cls)->operator= (arg1)); } @@ -141,7 +141,7 @@ static void _call_f_operator_eq__eq__c2510 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QEasingCurve &arg1 = args.read (heap); + const QEasingCurve &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEasingCurve *)cls)->operator== (arg1)); } @@ -190,7 +190,7 @@ static void _call_f_setAmplitude_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEasingCurve *)cls)->setAmplitude (arg1); } @@ -210,7 +210,7 @@ static void _call_f_setOvershoot_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEasingCurve *)cls)->setOvershoot (arg1); } @@ -230,7 +230,7 @@ static void _call_f_setPeriod_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEasingCurve *)cls)->setPeriod (arg1); } @@ -250,7 +250,7 @@ static void _call_f_setType_2167 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEasingCurve *)cls)->setType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -285,7 +285,7 @@ static void _call_f_valueForProgress_c1071 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QEasingCurve *)cls)->valueForProgress (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQEvent.cc b/src/gsiqt/qt4/QtCore/gsiDeclQEvent.cc index 5e9ba697b..c5ef079fa 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQEvent.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQEvent.cc @@ -97,7 +97,7 @@ static void _call_f_setAccepted_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEvent *)cls)->setAccepted (arg1); } @@ -147,7 +147,7 @@ static void _call_f_registerEventType_767 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((int)QEvent::registerEventType (arg1)); } @@ -206,7 +206,7 @@ static void _call_ctor_QEvent_Adaptor_1565 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQEventLoop.cc b/src/gsiqt/qt4/QtCore/gsiDeclQEventLoop.cc index ba24c736e..613f16834 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQEventLoop.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQEventLoop.cc @@ -68,7 +68,7 @@ static void _call_f_exec_3995 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QEventLoop::AllEvents); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QEventLoop::AllEvents, heap); ret.write ((int)((QEventLoop *)cls)->exec (arg1)); } @@ -87,7 +87,7 @@ static void _call_f_exit_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop *)cls)->exit (arg1); } @@ -122,7 +122,7 @@ static void _call_f_processEvents_3995 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QEventLoop::AllEvents); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QEventLoop::AllEvents, heap); ret.write ((bool)((QEventLoop *)cls)->processEvents (arg1)); } @@ -143,8 +143,8 @@ static void _call_f_processEvents_4654 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - int arg2 = args.read (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop *)cls)->processEvents (arg1, arg2); } @@ -198,8 +198,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QEventLoop::tr (arg1, arg2)); } @@ -222,9 +222,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QEventLoop::tr (arg1, arg2, arg3)); } @@ -245,8 +245,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QEventLoop::trUtf8 (arg1, arg2)); } @@ -269,9 +269,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QEventLoop::trUtf8 (arg1, arg2, arg3)); } @@ -455,7 +455,7 @@ static void _call_ctor_QEventLoop_Adaptor_1302 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QEventLoop_Adaptor (arg1)); } @@ -521,7 +521,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QEventLoop_Adaptor *)cls)->emitter_QEventLoop_destroyed_1302 (arg1); } @@ -612,7 +612,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QEventLoop_Adaptor *)cls)->fp_QEventLoop_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQFile.cc b/src/gsiqt/qt4/QtCore/gsiDeclQFile.cc index d14114958..7dbfe66b7 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQFile.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQFile.cc @@ -81,7 +81,7 @@ static void _call_ctor_QFile_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFile (arg1)); } @@ -100,7 +100,7 @@ static void _call_ctor_QFile_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QFile (arg1)); } @@ -121,8 +121,8 @@ static void _call_ctor_QFile_3219 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); ret.write (new QFile (arg1, arg2)); } @@ -172,7 +172,7 @@ static void _call_f_copy_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFile *)cls)->copy (arg1)); } @@ -281,7 +281,7 @@ static void _call_f_link_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFile *)cls)->link (arg1)); } @@ -300,7 +300,7 @@ static void _call_f_open_3242 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QFile *)cls)->open (arg1)); } @@ -379,7 +379,7 @@ static void _call_f_rename_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFile *)cls)->rename (arg1)); } @@ -398,7 +398,7 @@ static void _call_f_resize_986 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFile *)cls)->resize (arg1)); } @@ -417,7 +417,7 @@ static void _call_f_seek_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFile *)cls)->seek (arg1)); } @@ -436,7 +436,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFile *)cls)->setFileName (arg1); } @@ -456,7 +456,7 @@ static void _call_f_setPermissions_2778 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QFile *)cls)->setPermissions (arg1)); } @@ -523,8 +523,8 @@ static void _call_f_copy_3942 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QFile::copy (arg1, arg2)); } @@ -543,7 +543,7 @@ static void _call_f_decodeName_1731 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QFile::decodeName (arg1)); } @@ -562,7 +562,7 @@ static void _call_f_encodeName_2025 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)QFile::encodeName (arg1)); } @@ -581,7 +581,7 @@ static void _call_f_exists_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QFile::exists (arg1)); } @@ -602,8 +602,8 @@ static void _call_f_link_3942 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QFile::link (arg1, arg2)); } @@ -622,7 +622,7 @@ static void _call_f_permissions_2025 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)QFile::permissions (arg1)); } @@ -641,7 +641,7 @@ static void _call_f_readLink_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QFile::readLink (arg1)); } @@ -660,7 +660,7 @@ static void _call_f_remove_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QFile::remove (arg1)); } @@ -681,8 +681,8 @@ static void _call_f_rename_3942 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QFile::rename (arg1, arg2)); } @@ -703,8 +703,8 @@ static void _call_f_resize_2903 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - qint64 arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QFile::resize (arg1, arg2)); } @@ -725,8 +725,8 @@ static void _call_f_setPermissions_4695 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((bool)QFile::setPermissions (arg1, arg2)); } @@ -745,7 +745,7 @@ static void _call_f_symLinkTarget_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QFile::symLinkTarget (arg1)); } @@ -766,8 +766,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFile::tr (arg1, arg2)); } @@ -790,9 +790,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFile::tr (arg1, arg2, arg3)); } @@ -813,8 +813,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFile::trUtf8 (arg1, arg2)); } @@ -837,9 +837,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFile::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQFileInfo.cc b/src/gsiqt/qt4/QtCore/gsiDeclQFileInfo.cc index 8bc175c32..eb0f50c12 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQFileInfo.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQFileInfo.cc @@ -68,7 +68,7 @@ static void _call_ctor_QFileInfo_2025 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFileInfo (arg1)); } @@ -87,7 +87,7 @@ static void _call_ctor_QFileInfo_1778 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFile &arg1 = args.read (heap); + const QFile &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFileInfo (arg1)); } @@ -108,8 +108,8 @@ static void _call_ctor_QFileInfo_3598 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write (new QFileInfo (arg1, arg2)); } @@ -128,7 +128,7 @@ static void _call_ctor_QFileInfo_2174 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFileInfo (arg1)); } @@ -628,7 +628,7 @@ static void _call_f_operator_excl__eq__2174 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileInfo *)cls)->operator!= (arg1)); } @@ -647,7 +647,7 @@ static void _call_f_operator_excl__eq__c2174 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileInfo *)cls)->operator!= (arg1)); } @@ -666,7 +666,7 @@ static void _call_f_operator_eq__2174 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFileInfo &)((QFileInfo *)cls)->operator= (arg1)); } @@ -685,7 +685,7 @@ static void _call_f_operator_eq__eq__2174 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileInfo *)cls)->operator== (arg1)); } @@ -704,7 +704,7 @@ static void _call_f_operator_eq__eq__c2174 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileInfo *)cls)->operator== (arg1)); } @@ -768,7 +768,7 @@ static void _call_f_permission_c2778 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QFileInfo *)cls)->permission (arg1)); } @@ -833,7 +833,7 @@ static void _call_f_setCaching_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileInfo *)cls)->setCaching (arg1); } @@ -853,7 +853,7 @@ static void _call_f_setFile_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileInfo *)cls)->setFile (arg1); } @@ -873,7 +873,7 @@ static void _call_f_setFile_1778 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFile &arg1 = args.read (heap); + const QFile &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileInfo *)cls)->setFile (arg1); } @@ -895,8 +895,8 @@ static void _call_f_setFile_3598 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileInfo *)cls)->setFile (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQFileSystemWatcher.cc b/src/gsiqt/qt4/QtCore/gsiDeclQFileSystemWatcher.cc index e3c370f82..b0e745a01 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQFileSystemWatcher.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQFileSystemWatcher.cc @@ -68,7 +68,7 @@ static void _call_f_addPath_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher *)cls)->addPath (arg1); } @@ -88,7 +88,7 @@ static void _call_f_addPaths_2437 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher *)cls)->addPaths (arg1); } @@ -138,7 +138,7 @@ static void _call_f_removePath_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher *)cls)->removePath (arg1); } @@ -158,7 +158,7 @@ static void _call_f_removePaths_2437 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemWatcher *)cls)->removePaths (arg1); } @@ -180,8 +180,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFileSystemWatcher::tr (arg1, arg2)); } @@ -204,9 +204,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFileSystemWatcher::tr (arg1, arg2, arg3)); } @@ -227,8 +227,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFileSystemWatcher::trUtf8 (arg1, arg2)); } @@ -251,9 +251,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFileSystemWatcher::trUtf8 (arg1, arg2, arg3)); } @@ -462,7 +462,7 @@ static void _call_ctor_QFileSystemWatcher_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFileSystemWatcher_Adaptor (arg1)); } @@ -482,8 +482,8 @@ static void _call_ctor_QFileSystemWatcher_Adaptor_3631 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFileSystemWatcher_Adaptor (arg1, arg2)); } @@ -549,7 +549,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFileSystemWatcher_Adaptor *)cls)->emitter_QFileSystemWatcher_destroyed_1302 (arg1); } @@ -567,7 +567,7 @@ static void _call_emitter_directoryChanged_2025 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFileSystemWatcher_Adaptor *)cls)->emitter_QFileSystemWatcher_directoryChanged_2025 (arg1); } @@ -658,7 +658,7 @@ static void _call_emitter_fileChanged_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFileSystemWatcher_Adaptor *)cls)->emitter_QFileSystemWatcher_fileChanged_2025 (arg1); } @@ -676,7 +676,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFileSystemWatcher_Adaptor *)cls)->fp_QFileSystemWatcher_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQIODevice.cc b/src/gsiqt/qt4/QtCore/gsiDeclQIODevice.cc index 6fef00817..cdf821f7c 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQIODevice.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQIODevice.cc @@ -232,7 +232,7 @@ static void _call_f_open_3242 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QIODevice *)cls)->open (arg1)); } @@ -266,7 +266,7 @@ static void _call_f_peek_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QIODevice *)cls)->peek (arg1)); } @@ -300,7 +300,7 @@ static void _call_f_putChar_850 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - char arg1 = args.read (heap); + char arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIODevice *)cls)->putChar (arg1)); } @@ -319,7 +319,7 @@ static void _call_f_read_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QIODevice *)cls)->read (arg1)); } @@ -353,7 +353,7 @@ static void _call_f_readLine_986 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args ? args.read (heap) : (qint64)(0); + qint64 arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QByteArray)((QIODevice *)cls)->readLine (arg1)); } @@ -387,7 +387,7 @@ static void _call_f_seek_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIODevice *)cls)->seek (arg1)); } @@ -406,7 +406,7 @@ static void _call_f_setTextModeEnabled_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIODevice *)cls)->setTextModeEnabled (arg1); } @@ -441,7 +441,7 @@ static void _call_f_ungetChar_850 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - char arg1 = args.read (heap); + char arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIODevice *)cls)->ungetChar (arg1); } @@ -461,7 +461,7 @@ static void _call_f_waitForBytesWritten_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIODevice *)cls)->waitForBytesWritten (arg1)); } @@ -480,7 +480,7 @@ static void _call_f_waitForReadyRead_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIODevice *)cls)->waitForReadyRead (arg1)); } @@ -501,8 +501,8 @@ static void _call_f_write_2609 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - qint64 arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QIODevice *)cls)->write (arg1, arg2)); } @@ -521,7 +521,7 @@ static void _call_f_write_2309 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QIODevice *)cls)->write (arg1)); } @@ -542,8 +542,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QIODevice::tr (arg1, arg2)); } @@ -566,9 +566,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QIODevice::tr (arg1, arg2, arg3)); } @@ -589,8 +589,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QIODevice::trUtf8 (arg1, arg2)); } @@ -613,9 +613,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QIODevice::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQLibrary.cc b/src/gsiqt/qt4/QtCore/gsiDeclQLibrary.cc index cf504f3a6..bcf0d0a2a 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQLibrary.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQLibrary.cc @@ -143,7 +143,7 @@ static void _call_f_resolve_1731 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((void *)((QLibrary *)cls)->resolve (arg1)); } @@ -162,7 +162,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary *)cls)->setFileName (arg1); } @@ -184,8 +184,8 @@ static void _call_f_setFileNameAndVersion_2684 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary *)cls)->setFileNameAndVersion (arg1, arg2); } @@ -207,8 +207,8 @@ static void _call_f_setFileNameAndVersion_3942 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary *)cls)->setFileNameAndVersion (arg1, arg2); } @@ -228,7 +228,7 @@ static void _call_f_setLoadHints_2841 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary *)cls)->setLoadHints (arg1); } @@ -263,7 +263,7 @@ static void _call_f_isLibrary_2025 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QLibrary::isLibrary (arg1)); } @@ -284,8 +284,8 @@ static void _call_f_resolve_3648 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); ret.write ((void *)QLibrary::resolve (arg1, arg2)); } @@ -308,9 +308,9 @@ static void _call_f_resolve_4307 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args.read (heap); - const char *arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); ret.write ((void *)QLibrary::resolve (arg1, arg2, arg3)); } @@ -333,9 +333,9 @@ static void _call_f_resolve_5565 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const char *arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); ret.write ((void *)QLibrary::resolve (arg1, arg2, arg3)); } @@ -356,8 +356,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QLibrary::tr (arg1, arg2)); } @@ -380,9 +380,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QLibrary::tr (arg1, arg2, arg3)); } @@ -403,8 +403,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QLibrary::trUtf8 (arg1, arg2)); } @@ -427,9 +427,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QLibrary::trUtf8 (arg1, arg2, arg3)); } @@ -657,7 +657,7 @@ static void _call_ctor_QLibrary_Adaptor_1302 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLibrary_Adaptor (arg1)); } @@ -677,8 +677,8 @@ static void _call_ctor_QLibrary_Adaptor_3219 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLibrary_Adaptor (arg1, arg2)); } @@ -700,9 +700,9 @@ static void _call_ctor_QLibrary_Adaptor_3878 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args.read (heap); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLibrary_Adaptor (arg1, arg2, arg3)); } @@ -724,9 +724,9 @@ static void _call_ctor_QLibrary_Adaptor_5136 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLibrary_Adaptor (arg1, arg2, arg3)); } @@ -792,7 +792,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QLibrary_Adaptor *)cls)->emitter_QLibrary_destroyed_1302 (arg1); } @@ -883,7 +883,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLibrary_Adaptor *)cls)->fp_QLibrary_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQLibraryInfo.cc b/src/gsiqt/qt4/QtCore/gsiDeclQLibraryInfo.cc index a24e99430..4ae813c73 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQLibraryInfo.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQLibraryInfo.cc @@ -111,7 +111,7 @@ static void _call_f_location_3304 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QLibraryInfo::location (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQLine.cc b/src/gsiqt/qt4/QtCore/gsiDeclQLine.cc index cec38e5ae..7bd5c3684 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQLine.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQLine.cc @@ -68,8 +68,8 @@ static void _call_ctor_QLine_3724 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); ret.write (new QLine (arg1, arg2)); } @@ -94,10 +94,10 @@ static void _call_ctor_QLine_2744 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write (new QLine (arg1, arg2, arg3, arg4)); } @@ -161,7 +161,7 @@ static void _call_f_operator_excl__eq__c1786 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLine &arg1 = args.read (heap); + const QLine &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLine *)cls)->operator!= (arg1)); } @@ -180,7 +180,7 @@ static void _call_f_operator_eq__eq__c1786 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLine &arg1 = args.read (heap); + const QLine &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLine *)cls)->operator== (arg1)); } @@ -235,10 +235,10 @@ static void _call_f_setLine_2744 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLine *)cls)->setLine (arg1, arg2, arg3, arg4); } @@ -258,7 +258,7 @@ static void _call_f_setP1_1916 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLine *)cls)->setP1 (arg1); } @@ -278,7 +278,7 @@ static void _call_f_setP2_1916 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLine *)cls)->setP2 (arg1); } @@ -300,8 +300,8 @@ static void _call_f_setPoints_3724 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLine *)cls)->setPoints (arg1, arg2); } @@ -321,7 +321,7 @@ static void _call_f_translate_1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLine *)cls)->translate (arg1); } @@ -343,8 +343,8 @@ static void _call_f_translate_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLine *)cls)->translate (arg1, arg2); } @@ -364,7 +364,7 @@ static void _call_f_translated_c1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QLine)((QLine *)cls)->translated (arg1)); } @@ -385,8 +385,8 @@ static void _call_f_translated_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QLine)((QLine *)cls)->translated (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQLineF.cc b/src/gsiqt/qt4/QtCore/gsiDeclQLineF.cc index 6426b5c9d..93a2d22d8 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQLineF.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQLineF.cc @@ -69,8 +69,8 @@ static void _call_ctor_QLineF_3864 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); ret.write (new QLineF (arg1, arg2)); } @@ -95,10 +95,10 @@ static void _call_ctor_QLineF_3960 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write (new QLineF (arg1, arg2, arg3, arg4)); } @@ -117,7 +117,7 @@ static void _call_ctor_QLineF_1786 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLine &arg1 = args.read (heap); + const QLine &arg1 = gsi::arg_reader() (args, heap); ret.write (new QLineF (arg1)); } @@ -151,7 +151,7 @@ static void _call_f_angle_c1856 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QLineF *)cls)->angle (arg1)); } @@ -170,7 +170,7 @@ static void _call_f_angleTo_c1856 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QLineF *)cls)->angleTo (arg1)); } @@ -221,8 +221,8 @@ static void _call_f_intersect_c3043 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); - QPointF *arg2 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); + QPointF *arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QLineF *)cls)->intersect (arg1, arg2))); } @@ -286,7 +286,7 @@ static void _call_f_operator_excl__eq__c1856 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineF *)cls)->operator!= (arg1)); } @@ -305,7 +305,7 @@ static void _call_f_operator_eq__eq__c1856 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineF *)cls)->operator== (arg1)); } @@ -354,7 +354,7 @@ static void _call_f_pointAt_c1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QLineF *)cls)->pointAt (arg1)); } @@ -373,7 +373,7 @@ static void _call_f_setAngle_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->setAngle (arg1); } @@ -393,7 +393,7 @@ static void _call_f_setLength_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->setLength (arg1); } @@ -419,10 +419,10 @@ static void _call_f_setLine_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->setLine (arg1, arg2, arg3, arg4); } @@ -442,7 +442,7 @@ static void _call_f_setP1_1986 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->setP1 (arg1); } @@ -462,7 +462,7 @@ static void _call_f_setP2_1986 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->setP2 (arg1); } @@ -484,8 +484,8 @@ static void _call_f_setPoints_3864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->setPoints (arg1, arg2); } @@ -520,7 +520,7 @@ static void _call_f_translate_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->translate (arg1); } @@ -542,8 +542,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->translate (arg1, arg2); } @@ -563,7 +563,7 @@ static void _call_f_translated_c1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QLineF)((QLineF *)cls)->translated (arg1)); } @@ -584,8 +584,8 @@ static void _call_f_translated_c2034 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QLineF)((QLineF *)cls)->translated (arg1, arg2)); } @@ -681,8 +681,8 @@ static void _call_f_fromPolar_2034 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QLineF)QLineF::fromPolar (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQLocale.cc b/src/gsiqt/qt4/QtCore/gsiDeclQLocale.cc index 365597bc4..b7b3f317e 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQLocale.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQLocale.cc @@ -68,7 +68,7 @@ static void _call_ctor_QLocale_2025 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QLocale (arg1)); } @@ -89,8 +89,8 @@ static void _call_ctor_QLocale_3902 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::AnyCountry)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::AnyCountry), heap); ret.write (new QLocale (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -109,7 +109,7 @@ static void _call_ctor_QLocale_1986 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); ret.write (new QLocale (arg1)); } @@ -158,7 +158,7 @@ static void _call_f_dateFormat_c2260 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->dateFormat (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -177,7 +177,7 @@ static void _call_f_dateTimeFormat_c2260 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->dateTimeFormat (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -198,8 +198,8 @@ static void _call_f_dayName_c2919 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->dayName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -295,8 +295,8 @@ static void _call_f_monthName_c2919 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->monthName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -360,7 +360,7 @@ static void _call_f_operator_excl__eq__c1986 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLocale *)cls)->operator!= (arg1)); } @@ -379,7 +379,7 @@ static void _call_f_operator_eq__1986 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); ret.write ((QLocale &)((QLocale *)cls)->operator= (arg1)); } @@ -398,7 +398,7 @@ static void _call_f_operator_eq__eq__c1986 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLocale *)cls)->operator== (arg1)); } @@ -462,7 +462,7 @@ static void _call_f_setNumberOptions_3171 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocale *)cls)->setNumberOptions (arg1); } @@ -484,8 +484,8 @@ static void _call_f_standaloneDayName_c2919 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->standaloneDayName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -506,8 +506,8 @@ static void _call_f_standaloneMonthName_c2919 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->standaloneMonthName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -526,7 +526,7 @@ static void _call_f_timeFormat_c2260 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->timeFormat (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -547,8 +547,8 @@ static void _call_f_toDate_c4177 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QDate)((QLocale *)cls)->toDate (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -569,8 +569,8 @@ static void _call_f_toDate_c3942 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDate)((QLocale *)cls)->toDate (arg1, arg2)); } @@ -591,8 +591,8 @@ static void _call_f_toDateTime_c4177 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QDateTime)((QLocale *)cls)->toDateTime (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -613,8 +613,8 @@ static void _call_f_toDateTime_c3942 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QLocale *)cls)->toDateTime (arg1, arg2)); } @@ -635,8 +635,8 @@ static void _call_f_toDouble_c2967 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((double)((QLocale *)cls)->toDouble (arg1, arg2)); } @@ -657,8 +657,8 @@ static void _call_f_toFloat_c2967 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((float)((QLocale *)cls)->toFloat (arg1, arg2)); } @@ -681,9 +681,9 @@ static void _call_f_toInt_c3626 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); - int arg3 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QLocale *)cls)->toInt (arg1, arg2, arg3)); } @@ -706,9 +706,9 @@ static void _call_f_toLongLong_c3626 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); - int arg3 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((qlonglong)((QLocale *)cls)->toLongLong (arg1, arg2, arg3)); } @@ -731,9 +731,9 @@ static void _call_f_toShort_c3626 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); - int arg3 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((short int)((QLocale *)cls)->toShort (arg1, arg2, arg3)); } @@ -752,7 +752,7 @@ static void _call_f_toString_c1413 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qlonglong arg1 = args.read (heap); + qlonglong arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1)); } @@ -771,7 +771,7 @@ static void _call_f_toString_c1530 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qulonglong arg1 = args.read (heap); + qulonglong arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1)); } @@ -790,7 +790,7 @@ static void _call_f_toString_c1471 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - short int arg1 = args.read (heap); + short int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1)); } @@ -809,7 +809,7 @@ static void _call_f_toString_c2476 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned short int arg1 = args.read (heap); + unsigned short int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1)); } @@ -828,7 +828,7 @@ static void _call_f_toString_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1)); } @@ -847,7 +847,7 @@ static void _call_f_toString_c1772 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1)); } @@ -870,9 +870,9 @@ static void _call_f_toString_c2472 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - char arg2 = args ? args.read (heap) : (char)('g'); - int arg3 = args ? args.read (heap) : (int)(6); + double arg1 = gsi::arg_reader() (args, heap); + char arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() ('g', heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (6, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, arg2, arg3)); } @@ -895,9 +895,9 @@ static void _call_f_toString_c2371 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - char arg2 = args ? args.read (heap) : (char)('g'); - int arg3 = args ? args.read (heap) : (int)(6); + float arg1 = gsi::arg_reader() (args, heap); + char arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() ('g', heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (6, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, arg2, arg3)); } @@ -918,8 +918,8 @@ static void _call_f_toString_c3693 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, arg2)); } @@ -940,8 +940,8 @@ static void _call_f_toString_c3928 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const QDate &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -962,8 +962,8 @@ static void _call_f_toString_c3710 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, arg2)); } @@ -984,8 +984,8 @@ static void _call_f_toString_c3945 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const QTime &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1006,8 +1006,8 @@ static void _call_f_toString_c4327 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1028,8 +1028,8 @@ static void _call_f_toString_c4092 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, arg2)); } @@ -1050,8 +1050,8 @@ static void _call_f_toTime_c4177 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QTime)((QLocale *)cls)->toTime (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1072,8 +1072,8 @@ static void _call_f_toTime_c3942 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QTime)((QLocale *)cls)->toTime (arg1, arg2)); } @@ -1096,9 +1096,9 @@ static void _call_f_toUInt_c3626 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); - int arg3 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((unsigned int)((QLocale *)cls)->toUInt (arg1, arg2, arg3)); } @@ -1121,9 +1121,9 @@ static void _call_f_toULongLong_c3626 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); - int arg3 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((qlonglong)((QLocale *)cls)->toULongLong (arg1, arg2, arg3)); } @@ -1146,9 +1146,9 @@ static void _call_f_toUShort_c3626 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); - int arg3 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((unsigned short int)((QLocale *)cls)->toUShort (arg1, arg2, arg3)); } @@ -1197,7 +1197,7 @@ static void _call_f_countriesForLanguage_2029 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QList)QLocale::countriesForLanguage (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1216,7 +1216,7 @@ static void _call_f_countryToString_1981 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QLocale::countryToString (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1235,7 +1235,7 @@ static void _call_f_languageToString_2029 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QLocale::languageToString (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1254,7 +1254,7 @@ static void _call_f_setDefault_1986 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QLocale::setDefault (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQMargins.cc b/src/gsiqt/qt4/QtCore/gsiDeclQMargins.cc index c504c8329..702ca2c21 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQMargins.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQMargins.cc @@ -71,10 +71,10 @@ static void _call_ctor_QMargins_2744 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write (new QMargins (arg1, arg2, arg3, arg4)); } @@ -153,7 +153,7 @@ static void _call_f_setBottom_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMargins *)cls)->setBottom (arg1); } @@ -173,7 +173,7 @@ static void _call_f_setLeft_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMargins *)cls)->setLeft (arg1); } @@ -193,7 +193,7 @@ static void _call_f_setRight_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMargins *)cls)->setRight (arg1); } @@ -213,7 +213,7 @@ static void _call_f_setTop_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMargins *)cls)->setTop (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQMetaEnum.cc b/src/gsiqt/qt4/QtCore/gsiDeclQMetaEnum.cc index 26aa0773c..2edd9cbe4 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQMetaEnum.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQMetaEnum.cc @@ -111,7 +111,7 @@ static void _call_f_key_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const char *)((QMetaEnum *)cls)->key (arg1)); } @@ -145,7 +145,7 @@ static void _call_f_keyToValue_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaEnum *)cls)->keyToValue (arg1)); } @@ -164,7 +164,7 @@ static void _call_f_keysToValue_c1731 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaEnum *)cls)->keysToValue (arg1)); } @@ -213,7 +213,7 @@ static void _call_f_value_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaEnum *)cls)->value (arg1)); } @@ -232,7 +232,7 @@ static void _call_f_valueToKey_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const char *)((QMetaEnum *)cls)->valueToKey (arg1)); } @@ -251,7 +251,7 @@ static void _call_f_valueToKeys_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QMetaEnum *)cls)->valueToKeys (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQMetaObject.cc b/src/gsiqt/qt4/QtCore/gsiDeclQMetaObject.cc index ed38f3325..9dc71c8e7 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQMetaObject.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQMetaObject.cc @@ -70,7 +70,7 @@ static void _call_f_cast_c1302 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((QObject *)((QMetaObject *)cls)->cast (arg1)); } @@ -89,7 +89,7 @@ static void _call_f_classInfo_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMetaClassInfo)((QMetaObject *)cls)->classInfo (arg1)); } @@ -153,7 +153,7 @@ static void _call_f_constructor_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMetaMethod)((QMetaObject *)cls)->constructor (arg1)); } @@ -187,7 +187,7 @@ static void _call_f_enumerator_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMetaEnum)((QMetaObject *)cls)->enumerator (arg1)); } @@ -236,7 +236,7 @@ static void _call_f_indexOfClassInfo_c1731 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaObject *)cls)->indexOfClassInfo (arg1)); } @@ -255,7 +255,7 @@ static void _call_f_indexOfConstructor_c1731 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaObject *)cls)->indexOfConstructor (arg1)); } @@ -274,7 +274,7 @@ static void _call_f_indexOfEnumerator_c1731 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaObject *)cls)->indexOfEnumerator (arg1)); } @@ -293,7 +293,7 @@ static void _call_f_indexOfMethod_c1731 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaObject *)cls)->indexOfMethod (arg1)); } @@ -312,7 +312,7 @@ static void _call_f_indexOfProperty_c1731 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaObject *)cls)->indexOfProperty (arg1)); } @@ -331,7 +331,7 @@ static void _call_f_indexOfSignal_c1731 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaObject *)cls)->indexOfSignal (arg1)); } @@ -350,7 +350,7 @@ static void _call_f_indexOfSlot_c1731 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaObject *)cls)->indexOfSlot (arg1)); } @@ -369,7 +369,7 @@ static void _call_f_method_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMetaMethod)((QMetaObject *)cls)->method (arg1)); } @@ -418,7 +418,7 @@ static void _call_f_property_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMetaProperty)((QMetaObject *)cls)->property (arg1)); } @@ -484,8 +484,8 @@ static void _call_f_tr_c3354 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QMetaObject *)cls)->tr (arg1, arg2)); } @@ -508,9 +508,9 @@ static void _call_f_tr_c4013 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)((QMetaObject *)cls)->tr (arg1, arg2, arg3)); } @@ -531,8 +531,8 @@ static void _call_f_trUtf8_c3354 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QMetaObject *)cls)->trUtf8 (arg1, arg2)); } @@ -555,9 +555,9 @@ static void _call_f_trUtf8_c4013 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)((QMetaObject *)cls)->trUtf8 (arg1, arg2, arg3)); } @@ -593,8 +593,8 @@ static void _call_f_checkConnectArgs_3354 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QMetaObject::checkConnectArgs (arg1, arg2)); } @@ -623,12 +623,12 @@ static void _call_f_connect_6708 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args ? args.read (heap) : (int)(0); - int *arg6 = args ? args.read (heap) : (int *)(0); + const QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)QMetaObject::connect (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -647,7 +647,7 @@ static void _call_f_connectSlotsByName_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QMetaObject::connectSlotsByName (arg1); } @@ -673,10 +673,10 @@ static void _call_f_disconnect_5204 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - int arg4 = args.read (heap); + const QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)QMetaObject::disconnect (arg1, arg2, arg3, arg4)); } @@ -701,10 +701,10 @@ static void _call_f_disconnectOne_5204 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - int arg4 = args.read (heap); + const QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)QMetaObject::disconnectOne (arg1, arg2, arg3, arg4)); } @@ -723,7 +723,7 @@ static void _call_f_normalizedSignature_1731 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)QMetaObject::normalizedSignature (arg1)); } @@ -742,7 +742,7 @@ static void _call_f_normalizedType_1731 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)QMetaObject::normalizedType (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQMetaProperty.cc b/src/gsiqt/qt4/QtCore/gsiDeclQMetaProperty.cc index e6f51e2b7..4cb9cc96a 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQMetaProperty.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQMetaProperty.cc @@ -144,7 +144,7 @@ static void _call_f_isDesignable_c1997 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args ? args.read (heap) : (const QObject *)(0); + const QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QMetaProperty *)cls)->isDesignable (arg1)); } @@ -163,7 +163,7 @@ static void _call_f_isEditable_c1997 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args ? args.read (heap) : (const QObject *)(0); + const QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QMetaProperty *)cls)->isEditable (arg1)); } @@ -257,7 +257,7 @@ static void _call_f_isScriptable_c1997 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args ? args.read (heap) : (const QObject *)(0); + const QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QMetaProperty *)cls)->isScriptable (arg1)); } @@ -276,7 +276,7 @@ static void _call_f_isStored_c1997 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args ? args.read (heap) : (const QObject *)(0); + const QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QMetaProperty *)cls)->isStored (arg1)); } @@ -295,7 +295,7 @@ static void _call_f_isUser_c1997 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args ? args.read (heap) : (const QObject *)(0); + const QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QMetaProperty *)cls)->isUser (arg1)); } @@ -404,7 +404,7 @@ static void _call_f_read_c1997 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); + const QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QMetaProperty *)cls)->read (arg1)); } @@ -423,7 +423,7 @@ static void _call_f_reset_c1302 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMetaProperty *)cls)->reset (arg1)); } @@ -489,8 +489,8 @@ static void _call_f_write_c3313 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMetaProperty *)cls)->write (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQMetaType.cc b/src/gsiqt/qt4/QtCore/gsiDeclQMetaType.cc index 27679d332..9a276f923 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQMetaType.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQMetaType.cc @@ -68,8 +68,8 @@ static void _call_f_construct_2410 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const void *arg2 = args ? args.read (heap) : (const void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + const void *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((void *)QMetaType::construct (arg1, arg2)); } @@ -90,8 +90,8 @@ static void _call_f_destroy_1715 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - void *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QMetaType::destroy (arg1, arg2); } @@ -111,7 +111,7 @@ static void _call_f_isRegistered_767 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QMetaType::isRegistered (arg1)); } @@ -134,9 +134,9 @@ static void _call_f_load_3304 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)QMetaType::load (arg1, arg2, arg3)); } @@ -159,9 +159,9 @@ static void _call_f_save_3999 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); - int arg2 = args.read (heap); - const void *arg3 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const void *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)QMetaType::save (arg1, arg2, arg3)); } @@ -180,7 +180,7 @@ static void _call_f_type_1731 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)QMetaType::type (arg1)); } @@ -199,7 +199,7 @@ static void _call_f_typeName_767 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const char *)QMetaType::typeName (arg1)); } @@ -218,7 +218,7 @@ static void _call_f_unregisterType_1731 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QMetaType::unregisterType (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQMimeData.cc b/src/gsiqt/qt4/QtCore/gsiDeclQMimeData.cc index 7062bce96..c70c196c0 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQMimeData.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQMimeData.cc @@ -100,7 +100,7 @@ static void _call_f_data_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QMimeData *)cls)->data (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_hasFormat_c2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeData *)cls)->hasFormat (arg1)); } @@ -258,7 +258,7 @@ static void _call_f_removeFormat_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData *)cls)->removeFormat (arg1); } @@ -278,7 +278,7 @@ static void _call_f_setColorData_2119 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData *)cls)->setColorData (arg1); } @@ -300,8 +300,8 @@ static void _call_f_setData_4226 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData *)cls)->setData (arg1, arg2); } @@ -321,7 +321,7 @@ static void _call_f_setHtml_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData *)cls)->setHtml (arg1); } @@ -341,7 +341,7 @@ static void _call_f_setImageData_2119 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData *)cls)->setImageData (arg1); } @@ -361,7 +361,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData *)cls)->setText (arg1); } @@ -381,7 +381,7 @@ static void _call_f_setUrls_2316 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData *)cls)->setUrls (arg1); } @@ -433,8 +433,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMimeData::tr (arg1, arg2)); } @@ -457,9 +457,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMimeData::tr (arg1, arg2, arg3)); } @@ -480,8 +480,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMimeData::trUtf8 (arg1, arg2)); } @@ -504,9 +504,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMimeData::trUtf8 (arg1, arg2, arg3)); } @@ -808,7 +808,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMimeData_Adaptor *)cls)->emitter_QMimeData_destroyed_1302 (arg1); } @@ -941,7 +941,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMimeData_Adaptor *)cls)->fp_QMimeData_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQModelIndex.cc b/src/gsiqt/qt4/QtCore/gsiDeclQModelIndex.cc index 243c4a237..353a8d41b 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQModelIndex.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQModelIndex.cc @@ -66,7 +66,7 @@ static void _call_ctor_QModelIndex_2395 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write (new QModelIndex (arg1)); } @@ -87,8 +87,8 @@ static void _call_f_child_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QModelIndex *)cls)->child (arg1, arg2)); } @@ -122,7 +122,7 @@ static void _call_f_data_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QModelIndex *)cls)->data (arg1)); } @@ -216,7 +216,7 @@ static void _call_f_operator_excl__eq__c2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QModelIndex *)cls)->operator!= (arg1)); } @@ -235,7 +235,7 @@ static void _call_f_operator_lt__c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QModelIndex *)cls)->operator< (arg1)); } @@ -254,7 +254,7 @@ static void _call_f_operator_eq__eq__c2395 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QModelIndex *)cls)->operator== (arg1)); } @@ -305,8 +305,8 @@ static void _call_f_sibling_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QModelIndex *)cls)->sibling (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQMutex.cc b/src/gsiqt/qt4/QtCore/gsiDeclQMutex.cc index fbbce01cd..d6ef28604 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQMutex.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQMutex.cc @@ -50,7 +50,7 @@ static void _call_ctor_QMutex_2507 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QMutex::NonRecursive)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QMutex::NonRecursive), heap); ret.write (new QMutex (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -100,7 +100,7 @@ static void _call_f_tryLock_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMutex *)cls)->tryLock (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQObject.cc b/src/gsiqt/qt4/QtCore/gsiDeclQObject.cc index 0279bf23f..ac57e32c0 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQObject.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQObject.cc @@ -68,7 +68,7 @@ static void _call_f_blockSignals_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject *)cls)->blockSignals (arg1)); } @@ -108,10 +108,10 @@ static void _call_f_connect_c7342 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const char *arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AutoConnection)); + const QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AutoConnection), heap); ret.write ((bool)((QObject *)cls)->connect (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -150,9 +150,9 @@ static void _call_f_disconnect_5243 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args ? args.read (heap) : (const char *)(0); - const QObject *arg2 = args ? args.read (heap) : (const QObject *)(0); - const char *arg3 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QObject *)cls)->disconnect (arg1, arg2, arg3)); } @@ -173,8 +173,8 @@ static void _call_f_disconnect_3620 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QObject *)cls)->disconnect (arg1, arg2)); } @@ -240,7 +240,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject *)cls)->event (arg1)); } @@ -261,8 +261,8 @@ static void _call_f_eventFilter_2411 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject *)cls)->eventFilter (arg1, arg2)); } @@ -281,7 +281,7 @@ static void _call_f_inherits_c1731 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject *)cls)->inherits (arg1)); } @@ -300,7 +300,7 @@ static void _call_f_installEventFilter_1302 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject *)cls)->installEventFilter (arg1); } @@ -335,7 +335,7 @@ static void _call_f_killTimer_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject *)cls)->killTimer (arg1); } @@ -355,7 +355,7 @@ static void _call_f_moveToThread_1303 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QThread *arg1 = args.read (heap); + QThread *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject *)cls)->moveToThread (arg1); } @@ -405,7 +405,7 @@ static void _call_f_property_c1731 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QObject *)cls)->property (arg1)); } @@ -424,7 +424,7 @@ static void _call_f_removeEventFilter_1302 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject *)cls)->removeEventFilter (arg1); } @@ -444,7 +444,7 @@ static void _call_f_setObjectName_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject *)cls)->setObjectName (arg1); } @@ -464,7 +464,7 @@ static void _call_f_setParent_1302 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject *)cls)->setParent (arg1); } @@ -486,8 +486,8 @@ static void _call_f_setProperty_3742 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject *)cls)->setProperty (arg1, arg2)); } @@ -521,7 +521,7 @@ static void _call_f_startTimer_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QObject *)cls)->startTimer (arg1)); } @@ -563,11 +563,11 @@ static void _call_f_connect_9231 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - const char *arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AutoConnection)); + const QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + const char *arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AutoConnection), heap); ret.write ((bool)QObject::connect (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -592,10 +592,10 @@ static void _call_f_disconnect_7132 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - const char *arg4 = args.read (heap); + const QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + const char *arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)QObject::disconnect (arg1, arg2, arg3, arg4)); } @@ -631,8 +631,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QObject::tr (arg1, arg2)); } @@ -655,9 +655,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QObject::tr (arg1, arg2, arg3)); } @@ -678,8 +678,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QObject::trUtf8 (arg1, arg2)); } @@ -702,9 +702,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QObject::trUtf8 (arg1, arg2, arg3)); } @@ -908,7 +908,7 @@ static void _call_ctor_QObject_Adaptor_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QObject_Adaptor (arg1)); } @@ -974,7 +974,7 @@ static void _call_fp_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject_Adaptor *)cls)->fp_QObject_destroyed_1302 (arg1); } @@ -1066,7 +1066,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QObject_Adaptor *)cls)->fp_QObject_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQPersistentModelIndex.cc b/src/gsiqt/qt4/QtCore/gsiDeclQPersistentModelIndex.cc index b64d1e6b6..b2eebda43 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQPersistentModelIndex.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQPersistentModelIndex.cc @@ -71,7 +71,7 @@ static void _call_ctor_QPersistentModelIndex_2395 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPersistentModelIndex (arg1)); } @@ -90,7 +90,7 @@ static void _call_ctor_QPersistentModelIndex_3468 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPersistentModelIndex &arg1 = args.read (heap); + const QPersistentModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPersistentModelIndex (arg1)); } @@ -111,8 +111,8 @@ static void _call_f_child_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QPersistentModelIndex *)cls)->child (arg1, arg2)); } @@ -146,7 +146,7 @@ static void _call_f_data_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QPersistentModelIndex *)cls)->data (arg1)); } @@ -240,7 +240,7 @@ static void _call_f_operator_excl__eq__c3468 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPersistentModelIndex &arg1 = args.read (heap); + const QPersistentModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPersistentModelIndex *)cls)->operator!= (arg1)); } @@ -259,7 +259,7 @@ static void _call_f_operator_excl__eq__c2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPersistentModelIndex *)cls)->operator!= (arg1)); } @@ -278,7 +278,7 @@ static void _call_f_operator_lt__c3468 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPersistentModelIndex &arg1 = args.read (heap); + const QPersistentModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPersistentModelIndex *)cls)->operator< (arg1)); } @@ -297,7 +297,7 @@ static void _call_f_operator_eq__3468 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPersistentModelIndex &arg1 = args.read (heap); + const QPersistentModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPersistentModelIndex &)((QPersistentModelIndex *)cls)->operator= (arg1)); } @@ -316,7 +316,7 @@ static void _call_f_operator_eq__2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPersistentModelIndex &)((QPersistentModelIndex *)cls)->operator= (arg1)); } @@ -335,7 +335,7 @@ static void _call_f_operator_eq__eq__c3468 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPersistentModelIndex &arg1 = args.read (heap); + const QPersistentModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPersistentModelIndex *)cls)->operator== (arg1)); } @@ -354,7 +354,7 @@ static void _call_f_operator_eq__eq__c2395 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPersistentModelIndex *)cls)->operator== (arg1)); } @@ -405,8 +405,8 @@ static void _call_f_sibling_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QPersistentModelIndex *)cls)->sibling (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQPluginLoader.cc b/src/gsiqt/qt4/QtCore/gsiDeclQPluginLoader.cc index a6b3a8f50..e34759d8a 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQPluginLoader.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQPluginLoader.cc @@ -158,7 +158,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader *)cls)->setFileName (arg1); } @@ -178,7 +178,7 @@ static void _call_f_setLoadHints_2841 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader *)cls)->setLoadHints (arg1); } @@ -230,8 +230,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPluginLoader::tr (arg1, arg2)); } @@ -254,9 +254,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPluginLoader::tr (arg1, arg2, arg3)); } @@ -277,8 +277,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPluginLoader::trUtf8 (arg1, arg2)); } @@ -301,9 +301,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPluginLoader::trUtf8 (arg1, arg2, arg3)); } @@ -502,7 +502,7 @@ static void _call_ctor_QPluginLoader_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPluginLoader_Adaptor (arg1)); } @@ -522,8 +522,8 @@ static void _call_ctor_QPluginLoader_Adaptor_3219 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPluginLoader_Adaptor (arg1, arg2)); } @@ -589,7 +589,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPluginLoader_Adaptor *)cls)->emitter_QPluginLoader_destroyed_1302 (arg1); } @@ -680,7 +680,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPluginLoader_Adaptor *)cls)->fp_QPluginLoader_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQPoint.cc b/src/gsiqt/qt4/QtCore/gsiDeclQPoint.cc index 2910e0216..cb8f5ca05 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQPoint.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQPoint.cc @@ -69,8 +69,8 @@ static void _call_ctor_QPoint_1426 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QPoint (arg1, arg2)); } @@ -119,7 +119,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint &)((QPoint *)cls)->operator*= (arg1)); } @@ -138,7 +138,7 @@ static void _call_f_operator_plus__eq__1916 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint &)((QPoint *)cls)->operator+= (arg1)); } @@ -157,7 +157,7 @@ static void _call_f_operator_minus__eq__1916 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint &)((QPoint *)cls)->operator-= (arg1)); } @@ -176,7 +176,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint &)((QPoint *)cls)->operator/= (arg1)); } @@ -225,7 +225,7 @@ static void _call_f_setX_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPoint *)cls)->setX (arg1); } @@ -245,7 +245,7 @@ static void _call_f_setY_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPoint *)cls)->setY (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQPointF.cc b/src/gsiqt/qt4/QtCore/gsiDeclQPointF.cc index 19504b591..631654358 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQPointF.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQPointF.cc @@ -67,7 +67,7 @@ static void _call_ctor_QPointF_1916 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPointF (arg1)); } @@ -88,8 +88,8 @@ static void _call_ctor_QPointF_2034 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write (new QPointF (arg1, arg2)); } @@ -138,7 +138,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF &)((QPointF *)cls)->operator*= (arg1)); } @@ -157,7 +157,7 @@ static void _call_f_operator_plus__eq__1986 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF &)((QPointF *)cls)->operator+= (arg1)); } @@ -176,7 +176,7 @@ static void _call_f_operator_minus__eq__1986 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF &)((QPointF *)cls)->operator-= (arg1)); } @@ -195,7 +195,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF &)((QPointF *)cls)->operator/= (arg1)); } @@ -244,7 +244,7 @@ static void _call_f_setX_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPointF *)cls)->setX (arg1); } @@ -264,7 +264,7 @@ static void _call_f_setY_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPointF *)cls)->setY (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQProcess.cc b/src/gsiqt/qt4/QtCore/gsiDeclQProcess.cc index 793e953d5..a2fb6fb1b 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQProcess.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQProcess.cc @@ -67,7 +67,7 @@ static void _call_ctor_QProcess_1302 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QProcess (arg1)); } @@ -162,7 +162,7 @@ static void _call_f_closeReadChannel_2800 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->closeReadChannel (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -394,7 +394,7 @@ static void _call_f_setEnvironment_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setEnvironment (arg1); } @@ -414,7 +414,7 @@ static void _call_f_setProcessChannelMode_3189 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setProcessChannelMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -434,7 +434,7 @@ static void _call_f_setProcessEnvironment_3302 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QProcessEnvironment &arg1 = args.read (heap); + const QProcessEnvironment &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setProcessEnvironment (arg1); } @@ -454,7 +454,7 @@ static void _call_f_setReadChannel_2800 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setReadChannel (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -474,7 +474,7 @@ static void _call_f_setReadChannelMode_3189 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setReadChannelMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -496,8 +496,8 @@ static void _call_f_setStandardErrorFile_5159 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QIODevice::Truncate); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::Truncate, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setStandardErrorFile (arg1, arg2); } @@ -517,7 +517,7 @@ static void _call_f_setStandardInputFile_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setStandardInputFile (arg1); } @@ -539,8 +539,8 @@ static void _call_f_setStandardOutputFile_5159 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QIODevice::Truncate); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::Truncate, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setStandardOutputFile (arg1, arg2); } @@ -560,7 +560,7 @@ static void _call_f_setStandardOutputProcess_1438 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QProcess *arg1 = args.read (heap); + QProcess *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setStandardOutputProcess (arg1); } @@ -580,7 +580,7 @@ static void _call_f_setWorkingDirectory_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setWorkingDirectory (arg1); } @@ -604,9 +604,9 @@ static void _call_f_start_7488 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->start (arg1, arg2, arg3); } @@ -628,8 +628,8 @@ static void _call_f_start_5159 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->start (arg1, arg2); } @@ -680,7 +680,7 @@ static void _call_f_waitForBytesWritten_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QProcess *)cls)->waitForBytesWritten (arg1)); } @@ -699,7 +699,7 @@ static void _call_f_waitForFinished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QProcess *)cls)->waitForFinished (arg1)); } @@ -718,7 +718,7 @@ static void _call_f_waitForReadyRead_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QProcess *)cls)->waitForReadyRead (arg1)); } @@ -737,7 +737,7 @@ static void _call_f_waitForStarted_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QProcess *)cls)->waitForStarted (arg1)); } @@ -773,8 +773,8 @@ static void _call_f_execute_4354 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)QProcess::execute (arg1, arg2)); } @@ -793,7 +793,7 @@ static void _call_f_execute_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)QProcess::execute (arg1)); } @@ -818,10 +818,10 @@ static void _call_f_startDetached_7335 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - qint64 *arg4 = args ? args.read (heap) : (qint64 *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + qint64 *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)QProcess::startDetached (arg1, arg2, arg3, arg4)); } @@ -842,8 +842,8 @@ static void _call_f_startDetached_4354 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QProcess::startDetached (arg1, arg2)); } @@ -862,7 +862,7 @@ static void _call_f_startDetached_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QProcess::startDetached (arg1)); } @@ -898,8 +898,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QProcess::tr (arg1, arg2)); } @@ -922,9 +922,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QProcess::tr (arg1, arg2, arg3)); } @@ -945,8 +945,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QProcess::trUtf8 (arg1, arg2)); } @@ -969,9 +969,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QProcess::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQProcessEnvironment.cc b/src/gsiqt/qt4/QtCore/gsiDeclQProcessEnvironment.cc index 8bf10fc02..7f299353b 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQProcessEnvironment.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQProcessEnvironment.cc @@ -65,7 +65,7 @@ static void _call_ctor_QProcessEnvironment_3302 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QProcessEnvironment &arg1 = args.read (heap); + const QProcessEnvironment &arg1 = gsi::arg_reader() (args, heap); ret.write (new QProcessEnvironment (arg1)); } @@ -100,7 +100,7 @@ static void _call_f_contains_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProcessEnvironment *)cls)->contains (arg1)); } @@ -121,8 +121,8 @@ static void _call_f_insert_3942 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcessEnvironment *)cls)->insert (arg1, arg2); } @@ -157,7 +157,7 @@ static void _call_f_operator_excl__eq__c3302 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QProcessEnvironment &arg1 = args.read (heap); + const QProcessEnvironment &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProcessEnvironment *)cls)->operator!= (arg1)); } @@ -176,7 +176,7 @@ static void _call_f_operator_eq__3302 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QProcessEnvironment &arg1 = args.read (heap); + const QProcessEnvironment &arg1 = gsi::arg_reader() (args, heap); ret.write ((QProcessEnvironment &)((QProcessEnvironment *)cls)->operator= (arg1)); } @@ -195,7 +195,7 @@ static void _call_f_operator_eq__eq__c3302 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QProcessEnvironment &arg1 = args.read (heap); + const QProcessEnvironment &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProcessEnvironment *)cls)->operator== (arg1)); } @@ -214,7 +214,7 @@ static void _call_f_remove_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcessEnvironment *)cls)->remove (arg1); } @@ -251,8 +251,8 @@ static void _call_f_value_c3942 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QString)((QProcessEnvironment *)cls)->value (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQReadLocker.cc b/src/gsiqt/qt4/QtCore/gsiDeclQReadLocker.cc index ab9873e02..f3e42891b 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQReadLocker.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQReadLocker.cc @@ -51,7 +51,7 @@ static void _call_ctor_QReadLocker_1999 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QReadWriteLock *arg1 = args.read (heap); + QReadWriteLock *arg1 = gsi::arg_reader() (args, heap); ret.write (new QReadLocker (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQReadWriteLock.cc b/src/gsiqt/qt4/QtCore/gsiDeclQReadWriteLock.cc index 86a10c110..af23cb03c 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQReadWriteLock.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQReadWriteLock.cc @@ -65,7 +65,7 @@ static void _call_ctor_QReadWriteLock_3272 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QReadWriteLock (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -131,7 +131,7 @@ static void _call_f_tryLockForRead_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QReadWriteLock *)cls)->tryLockForRead (arg1)); } @@ -165,7 +165,7 @@ static void _call_f_tryLockForWrite_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QReadWriteLock *)cls)->tryLockForWrite (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQRect.cc b/src/gsiqt/qt4/QtCore/gsiDeclQRect.cc index 71bea2873..97d5fe962 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQRect.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQRect.cc @@ -69,8 +69,8 @@ static void _call_ctor_QRect_3724 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); ret.write (new QRect (arg1, arg2)); } @@ -91,8 +91,8 @@ static void _call_ctor_QRect_3613 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); ret.write (new QRect (arg1, arg2)); } @@ -117,10 +117,10 @@ static void _call_ctor_QRect_2744 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write (new QRect (arg1, arg2, arg3, arg4)); } @@ -145,10 +145,10 @@ static void _call_f_adjust_2744 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->adjust (arg1, arg2, arg3, arg4); } @@ -174,10 +174,10 @@ static void _call_f_adjusted_c2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->adjusted (arg1, arg2, arg3, arg4)); } @@ -258,8 +258,8 @@ static void _call_f_contains_c2672 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((bool)((QRect *)cls)->contains (arg1, arg2)); } @@ -280,8 +280,8 @@ static void _call_f_contains_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRect *)cls)->contains (arg1, arg2)); } @@ -304,9 +304,9 @@ static void _call_f_contains_c2182 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - bool arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + bool arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRect *)cls)->contains (arg1, arg2, arg3)); } @@ -327,8 +327,8 @@ static void _call_f_contains_c2548 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QRect &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((bool)((QRect *)cls)->contains (arg1, arg2)); } @@ -353,10 +353,10 @@ static void _call_f_getCoords_c3488 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->getCoords (arg1, arg2, arg3, arg4); } @@ -382,10 +382,10 @@ static void _call_f_getRect_c3488 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->getRect (arg1, arg2, arg3, arg4); } @@ -420,7 +420,7 @@ static void _call_f_intersect_c1792 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->intersect (arg1)); } @@ -439,7 +439,7 @@ static void _call_f_intersected_c1792 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->intersected (arg1)); } @@ -458,7 +458,7 @@ static void _call_f_intersects_c1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRect *)cls)->intersects (arg1)); } @@ -537,7 +537,7 @@ static void _call_f_moveBottom_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveBottom (arg1); } @@ -557,7 +557,7 @@ static void _call_f_moveBottomLeft_1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveBottomLeft (arg1); } @@ -577,7 +577,7 @@ static void _call_f_moveBottomRight_1916 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveBottomRight (arg1); } @@ -597,7 +597,7 @@ static void _call_f_moveCenter_1916 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveCenter (arg1); } @@ -617,7 +617,7 @@ static void _call_f_moveLeft_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveLeft (arg1); } @@ -637,7 +637,7 @@ static void _call_f_moveRight_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveRight (arg1); } @@ -659,8 +659,8 @@ static void _call_f_moveTo_1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveTo (arg1, arg2); } @@ -680,7 +680,7 @@ static void _call_f_moveTo_1916 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveTo (arg1); } @@ -700,7 +700,7 @@ static void _call_f_moveTop_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveTop (arg1); } @@ -720,7 +720,7 @@ static void _call_f_moveTopLeft_1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveTopLeft (arg1); } @@ -740,7 +740,7 @@ static void _call_f_moveTopRight_1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveTopRight (arg1); } @@ -775,7 +775,7 @@ static void _call_f_operator_amp__c1792 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->operator& (arg1)); } @@ -794,7 +794,7 @@ static void _call_f_operator_amp__eq__1792 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect &)((QRect *)cls)->operator&= (arg1)); } @@ -813,7 +813,7 @@ static void _call_f_operator_pipe__c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->operator| (arg1)); } @@ -832,7 +832,7 @@ static void _call_f_operator_pipe__eq__1792 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect &)((QRect *)cls)->operator|= (arg1)); } @@ -866,7 +866,7 @@ static void _call_f_setBottom_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setBottom (arg1); } @@ -886,7 +886,7 @@ static void _call_f_setBottomLeft_1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setBottomLeft (arg1); } @@ -906,7 +906,7 @@ static void _call_f_setBottomRight_1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setBottomRight (arg1); } @@ -932,10 +932,10 @@ static void _call_f_setCoords_2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setCoords (arg1, arg2, arg3, arg4); } @@ -955,7 +955,7 @@ static void _call_f_setHeight_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setHeight (arg1); } @@ -975,7 +975,7 @@ static void _call_f_setLeft_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setLeft (arg1); } @@ -1001,10 +1001,10 @@ static void _call_f_setRect_2744 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setRect (arg1, arg2, arg3, arg4); } @@ -1024,7 +1024,7 @@ static void _call_f_setRight_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setRight (arg1); } @@ -1044,7 +1044,7 @@ static void _call_f_setSize_1805 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setSize (arg1); } @@ -1064,7 +1064,7 @@ static void _call_f_setTop_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setTop (arg1); } @@ -1084,7 +1084,7 @@ static void _call_f_setTopLeft_1916 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setTopLeft (arg1); } @@ -1104,7 +1104,7 @@ static void _call_f_setTopRight_1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setTopRight (arg1); } @@ -1124,7 +1124,7 @@ static void _call_f_setWidth_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setWidth (arg1); } @@ -1144,7 +1144,7 @@ static void _call_f_setX_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setX (arg1); } @@ -1164,7 +1164,7 @@ static void _call_f_setY_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setY (arg1); } @@ -1246,8 +1246,8 @@ static void _call_f_translate_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->translate (arg1, arg2); } @@ -1267,7 +1267,7 @@ static void _call_f_translate_1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->translate (arg1); } @@ -1289,8 +1289,8 @@ static void _call_f_translated_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->translated (arg1, arg2)); } @@ -1309,7 +1309,7 @@ static void _call_f_translated_c1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->translated (arg1)); } @@ -1328,7 +1328,7 @@ static void _call_f_unite_c1792 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->unite (arg1)); } @@ -1347,7 +1347,7 @@ static void _call_f_united_c1792 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->united (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQRectF.cc b/src/gsiqt/qt4/QtCore/gsiDeclQRectF.cc index ee0658878..643c42c73 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQRectF.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQRectF.cc @@ -70,8 +70,8 @@ static void _call_ctor_QRectF_3753 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QSizeF &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QSizeF &arg2 = gsi::arg_reader() (args, heap); ret.write (new QRectF (arg1, arg2)); } @@ -92,8 +92,8 @@ static void _call_ctor_QRectF_3864 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); ret.write (new QRectF (arg1, arg2)); } @@ -118,10 +118,10 @@ static void _call_ctor_QRectF_3960 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write (new QRectF (arg1, arg2, arg3, arg4)); } @@ -140,7 +140,7 @@ static void _call_ctor_QRectF_1792 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write (new QRectF (arg1)); } @@ -165,10 +165,10 @@ static void _call_f_adjust_3960 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->adjust (arg1, arg2, arg3, arg4); } @@ -194,10 +194,10 @@ static void _call_f_adjusted_c3960 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->adjusted (arg1, arg2, arg3, arg4)); } @@ -276,7 +276,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRectF *)cls)->contains (arg1)); } @@ -297,8 +297,8 @@ static void _call_f_contains_c2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRectF *)cls)->contains (arg1, arg2)); } @@ -317,7 +317,7 @@ static void _call_f_contains_c1862 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRectF *)cls)->contains (arg1)); } @@ -342,10 +342,10 @@ static void _call_f_getCoords_c4704 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->getCoords (arg1, arg2, arg3, arg4); } @@ -371,10 +371,10 @@ static void _call_f_getRect_c4704 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->getRect (arg1, arg2, arg3, arg4); } @@ -409,7 +409,7 @@ static void _call_f_intersect_c1862 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->intersect (arg1)); } @@ -428,7 +428,7 @@ static void _call_f_intersected_c1862 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->intersected (arg1)); } @@ -447,7 +447,7 @@ static void _call_f_intersects_c1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRectF *)cls)->intersects (arg1)); } @@ -526,7 +526,7 @@ static void _call_f_moveBottom_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveBottom (arg1); } @@ -546,7 +546,7 @@ static void _call_f_moveBottomLeft_1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveBottomLeft (arg1); } @@ -566,7 +566,7 @@ static void _call_f_moveBottomRight_1986 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveBottomRight (arg1); } @@ -586,7 +586,7 @@ static void _call_f_moveCenter_1986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveCenter (arg1); } @@ -606,7 +606,7 @@ static void _call_f_moveLeft_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveLeft (arg1); } @@ -626,7 +626,7 @@ static void _call_f_moveRight_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveRight (arg1); } @@ -648,8 +648,8 @@ static void _call_f_moveTo_2034 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveTo (arg1, arg2); } @@ -669,7 +669,7 @@ static void _call_f_moveTo_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveTo (arg1); } @@ -689,7 +689,7 @@ static void _call_f_moveTop_1071 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveTop (arg1); } @@ -709,7 +709,7 @@ static void _call_f_moveTopLeft_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveTopLeft (arg1); } @@ -729,7 +729,7 @@ static void _call_f_moveTopRight_1986 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveTopRight (arg1); } @@ -764,7 +764,7 @@ static void _call_f_operator_amp__c1862 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->operator& (arg1)); } @@ -783,7 +783,7 @@ static void _call_f_operator_amp__eq__1862 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF &)((QRectF *)cls)->operator&= (arg1)); } @@ -802,7 +802,7 @@ static void _call_f_operator_pipe__c1862 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->operator| (arg1)); } @@ -821,7 +821,7 @@ static void _call_f_operator_pipe__eq__1862 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF &)((QRectF *)cls)->operator|= (arg1)); } @@ -855,7 +855,7 @@ static void _call_f_setBottom_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setBottom (arg1); } @@ -875,7 +875,7 @@ static void _call_f_setBottomLeft_1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setBottomLeft (arg1); } @@ -895,7 +895,7 @@ static void _call_f_setBottomRight_1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setBottomRight (arg1); } @@ -921,10 +921,10 @@ static void _call_f_setCoords_3960 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setCoords (arg1, arg2, arg3, arg4); } @@ -944,7 +944,7 @@ static void _call_f_setHeight_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setHeight (arg1); } @@ -964,7 +964,7 @@ static void _call_f_setLeft_1071 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setLeft (arg1); } @@ -990,10 +990,10 @@ static void _call_f_setRect_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setRect (arg1, arg2, arg3, arg4); } @@ -1013,7 +1013,7 @@ static void _call_f_setRight_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setRight (arg1); } @@ -1033,7 +1033,7 @@ static void _call_f_setSize_1875 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setSize (arg1); } @@ -1053,7 +1053,7 @@ static void _call_f_setTop_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setTop (arg1); } @@ -1073,7 +1073,7 @@ static void _call_f_setTopLeft_1986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setTopLeft (arg1); } @@ -1093,7 +1093,7 @@ static void _call_f_setTopRight_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setTopRight (arg1); } @@ -1113,7 +1113,7 @@ static void _call_f_setWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setWidth (arg1); } @@ -1133,7 +1133,7 @@ static void _call_f_setX_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setX (arg1); } @@ -1153,7 +1153,7 @@ static void _call_f_setY_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setY (arg1); } @@ -1265,8 +1265,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->translate (arg1, arg2); } @@ -1286,7 +1286,7 @@ static void _call_f_translate_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->translate (arg1); } @@ -1308,8 +1308,8 @@ static void _call_f_translated_c2034 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->translated (arg1, arg2)); } @@ -1328,7 +1328,7 @@ static void _call_f_translated_c1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->translated (arg1)); } @@ -1347,7 +1347,7 @@ static void _call_f_unite_c1862 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->unite (arg1)); } @@ -1366,7 +1366,7 @@ static void _call_f_united_c1862 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->united (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQRegExp.cc b/src/gsiqt/qt4/QtCore/gsiDeclQRegExp.cc index c56974b28..e3cfacf50 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQRegExp.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQRegExp.cc @@ -69,9 +69,9 @@ static void _call_ctor_QRegExp_6734 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::CaseSensitive)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegExp::RegExp)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::CaseSensitive), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegExp::RegExp), heap); ret.write (new QRegExp (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -90,7 +90,7 @@ static void _call_ctor_QRegExp_1981 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); ret.write (new QRegExp (arg1)); } @@ -109,7 +109,7 @@ static void _call_f_cap_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QRegExp *)cls)->cap (arg1)); } @@ -128,7 +128,7 @@ static void _call_f_cap_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QRegExp *)cls)->cap (arg1)); } @@ -237,7 +237,7 @@ static void _call_f_exactMatch_c2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegExp *)cls)->exactMatch (arg1)); } @@ -260,9 +260,9 @@ static void _call_f_indexIn_c4680 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegExp::CaretAtZero)); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegExp::CaretAtZero), heap); ret.write ((int)((QRegExp *)cls)->indexIn (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -330,9 +330,9 @@ static void _call_f_lastIndexIn_c4680 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(-1); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegExp::CaretAtZero)); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegExp::CaretAtZero), heap); ret.write ((int)((QRegExp *)cls)->lastIndexIn (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -381,7 +381,7 @@ static void _call_f_operator_excl__eq__c1981 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegExp *)cls)->operator!= (arg1)); } @@ -400,7 +400,7 @@ static void _call_f_operator_eq__1981 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegExp &)((QRegExp *)cls)->operator= (arg1)); } @@ -419,7 +419,7 @@ static void _call_f_operator_eq__eq__c1981 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegExp *)cls)->operator== (arg1)); } @@ -468,7 +468,7 @@ static void _call_f_pos_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QRegExp *)cls)->pos (arg1)); } @@ -487,7 +487,7 @@ static void _call_f_pos_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QRegExp *)cls)->pos (arg1)); } @@ -506,7 +506,7 @@ static void _call_f_setCaseSensitivity_2324 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExp *)cls)->setCaseSensitivity (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -526,7 +526,7 @@ static void _call_f_setMinimal_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExp *)cls)->setMinimal (arg1); } @@ -546,7 +546,7 @@ static void _call_f_setPattern_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExp *)cls)->setPattern (arg1); } @@ -566,7 +566,7 @@ static void _call_f_setPatternSyntax_2601 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExp *)cls)->setPatternSyntax (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -586,7 +586,7 @@ static void _call_f_escape_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QRegExp::escape (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQResource.cc b/src/gsiqt/qt4/QtCore/gsiDeclQResource.cc index 0b155ee8d..8ed468a69 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQResource.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQResource.cc @@ -53,8 +53,8 @@ static void _call_ctor_QResource_3903 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); - const QLocale &arg2 = args ? args.read (heap) : (const QLocale &)(QLocale()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QLocale &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QLocale(), heap); ret.write (new QResource (arg1, arg2)); } @@ -163,7 +163,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QResource *)cls)->setFileName (arg1); } @@ -183,7 +183,7 @@ static void _call_f_setLocale_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QResource *)cls)->setLocale (arg1); } @@ -218,7 +218,7 @@ static void _call_f_addSearchPath_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QResource::addSearchPath (arg1); } @@ -240,8 +240,8 @@ static void _call_f_registerResource_3942 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)QResource::registerResource (arg1, arg2)); } @@ -262,8 +262,8 @@ static void _call_f_registerResource_4653 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const unsigned char *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const unsigned char *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)QResource::registerResource (arg1, arg2)); } @@ -299,8 +299,8 @@ static void _call_f_unregisterResource_3942 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)QResource::unregisterResource (arg1, arg2)); } @@ -321,8 +321,8 @@ static void _call_f_unregisterResource_4653 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const unsigned char *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const unsigned char *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)QResource::unregisterResource (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQSemaphore.cc b/src/gsiqt/qt4/QtCore/gsiDeclQSemaphore.cc index cee3bac17..bdeea43f6 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQSemaphore.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQSemaphore.cc @@ -50,7 +50,7 @@ static void _call_ctor_QSemaphore_767 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSemaphore (arg1)); } @@ -69,7 +69,7 @@ static void _call_f_acquire_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSemaphore *)cls)->acquire (arg1); } @@ -104,7 +104,7 @@ static void _call_f_release_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSemaphore *)cls)->release (arg1); } @@ -124,7 +124,7 @@ static void _call_f_tryAcquire_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write ((bool)((QSemaphore *)cls)->tryAcquire (arg1)); } @@ -145,8 +145,8 @@ static void _call_f_tryAcquire_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSemaphore *)cls)->tryAcquire (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQSettings.cc b/src/gsiqt/qt4/QtCore/gsiDeclQSettings.cc index 75528551d..aea20975e 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQSettings.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQSettings.cc @@ -98,7 +98,7 @@ static void _call_f_beginGroup_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings *)cls)->beginGroup (arg1); } @@ -118,7 +118,7 @@ static void _call_f_beginReadArray_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSettings *)cls)->beginReadArray (arg1)); } @@ -139,8 +139,8 @@ static void _call_f_beginWriteArray_2684 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(-1); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings *)cls)->beginWriteArray (arg1, arg2); } @@ -206,7 +206,7 @@ static void _call_f_contains_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSettings *)cls)->contains (arg1)); } @@ -347,7 +347,7 @@ static void _call_f_remove_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings *)cls)->remove (arg1); } @@ -382,7 +382,7 @@ static void _call_f_setArrayIndex_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings *)cls)->setArrayIndex (arg1); } @@ -402,7 +402,7 @@ static void _call_f_setFallbacksEnabled_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings *)cls)->setFallbacksEnabled (arg1); } @@ -424,8 +424,8 @@ static void _call_f_setValue_4036 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings *)cls)->setValue (arg1, arg2); } @@ -478,8 +478,8 @@ static void _call_f_value_c4036 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args ? args.read (heap) : (const QVariant &)(QVariant()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QVariant(), heap); ret.write ((QVariant)((QSettings *)cls)->value (arg1, arg2)); } @@ -513,7 +513,7 @@ static void _call_f_setDefaultFormat_2099 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSettings::setDefaultFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -537,9 +537,9 @@ static void _call_f_setPath_5896 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QString &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSettings::setPath (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -559,7 +559,7 @@ static void _call_f_setSystemIniPath_2025 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSettings::setSystemIniPath (arg1); } @@ -579,7 +579,7 @@ static void _call_f_setUserIniPath_2025 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSettings::setUserIniPath (arg1); } @@ -601,8 +601,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSettings::tr (arg1, arg2)); } @@ -625,9 +625,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSettings::tr (arg1, arg2, arg3)); } @@ -648,8 +648,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSettings::trUtf8 (arg1, arg2)); } @@ -672,9 +672,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSettings::trUtf8 (arg1, arg2, arg3)); } @@ -951,9 +951,9 @@ static void _call_ctor_QSettings_Adaptor_5136 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSettings_Adaptor (arg1, arg2, arg3)); } @@ -977,10 +977,10 @@ static void _call_ctor_QSettings_Adaptor_7016 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - QObject *arg4 = args ? args.read (heap) : (QObject *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QObject *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSettings_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -1006,11 +1006,11 @@ static void _call_ctor_QSettings_Adaptor_9007 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - QObject *arg5 = args ? args.read (heap) : (QObject *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QObject *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSettings_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -1032,9 +1032,9 @@ static void _call_ctor_QSettings_Adaptor_5210 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSettings_Adaptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -1052,7 +1052,7 @@ static void _call_ctor_QSettings_Adaptor_1302 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSettings_Adaptor (arg1)); } @@ -1118,7 +1118,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSettings_Adaptor *)cls)->emitter_QSettings_destroyed_1302 (arg1); } @@ -1209,7 +1209,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSettings_Adaptor *)cls)->fp_QSettings_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQSignalMapper.cc b/src/gsiqt/qt4/QtCore/gsiDeclQSignalMapper.cc index 64f8b9d4d..c28823bbd 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQSignalMapper.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQSignalMapper.cc @@ -85,7 +85,7 @@ static void _call_f_map_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper *)cls)->map (arg1); } @@ -105,7 +105,7 @@ static void _call_f_mapping_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QObject *)((QSignalMapper *)cls)->mapping (arg1)); } @@ -124,7 +124,7 @@ static void _call_f_mapping_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QObject *)((QSignalMapper *)cls)->mapping (arg1)); } @@ -143,7 +143,7 @@ static void _call_f_mapping_c1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QObject *)((QSignalMapper *)cls)->mapping (arg1)); } @@ -162,7 +162,7 @@ static void _call_f_mapping_c1302 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((QObject *)((QSignalMapper *)cls)->mapping (arg1)); } @@ -181,7 +181,7 @@ static void _call_f_removeMappings_1302 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper *)cls)->removeMappings (arg1); } @@ -203,8 +203,8 @@ static void _call_f_setMapping_1961 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper *)cls)->setMapping (arg1, arg2); } @@ -226,8 +226,8 @@ static void _call_f_setMapping_3219 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper *)cls)->setMapping (arg1, arg2); } @@ -249,8 +249,8 @@ static void _call_f_setMapping_2509 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper *)cls)->setMapping (arg1, arg2); } @@ -272,8 +272,8 @@ static void _call_f_setMapping_2496 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper *)cls)->setMapping (arg1, arg2); } @@ -295,8 +295,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSignalMapper::tr (arg1, arg2)); } @@ -319,9 +319,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSignalMapper::tr (arg1, arg2, arg3)); } @@ -342,8 +342,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSignalMapper::trUtf8 (arg1, arg2)); } @@ -366,9 +366,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSignalMapper::trUtf8 (arg1, arg2, arg3)); } @@ -584,7 +584,7 @@ static void _call_ctor_QSignalMapper_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSignalMapper_Adaptor (arg1)); } @@ -650,7 +650,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSignalMapper_Adaptor *)cls)->emitter_QSignalMapper_destroyed_1302 (arg1); } @@ -741,7 +741,7 @@ static void _call_emitter_mapped_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSignalMapper_Adaptor *)cls)->emitter_QSignalMapper_mapped_767 (arg1); } @@ -759,7 +759,7 @@ static void _call_emitter_mapped_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSignalMapper_Adaptor *)cls)->emitter_QSignalMapper_mapped_2025 (arg1); } @@ -777,7 +777,7 @@ static void _call_emitter_mapped_1315 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ((QSignalMapper_Adaptor *)cls)->emitter_QSignalMapper_mapped_1315 (arg1); } @@ -795,7 +795,7 @@ static void _call_emitter_mapped_1302 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ((QSignalMapper_Adaptor *)cls)->emitter_QSignalMapper_mapped_1302 (arg1); } @@ -813,7 +813,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSignalMapper_Adaptor *)cls)->fp_QSignalMapper_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQSize.cc b/src/gsiqt/qt4/QtCore/gsiDeclQSize.cc index 3da021af3..43de4b102 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQSize.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQSize.cc @@ -67,8 +67,8 @@ static void _call_ctor_QSize_1426 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QSize (arg1, arg2)); } @@ -87,7 +87,7 @@ static void _call_f_boundedTo_c1805 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSize *)cls)->boundedTo (arg1)); } @@ -106,7 +106,7 @@ static void _call_f_expandedTo_c1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSize *)cls)->expandedTo (arg1)); } @@ -185,7 +185,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize &)((QSize *)cls)->operator*= (arg1)); } @@ -204,7 +204,7 @@ static void _call_f_operator_plus__eq__1805 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize &)((QSize *)cls)->operator+= (arg1)); } @@ -223,7 +223,7 @@ static void _call_f_operator_minus__eq__1805 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize &)((QSize *)cls)->operator-= (arg1)); } @@ -242,7 +242,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize &)((QSize *)cls)->operator/= (arg1)); } @@ -295,9 +295,9 @@ static void _call_f_scale_3575 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSize *)cls)->scale (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -319,8 +319,8 @@ static void _call_f_scale_3954 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSize *)cls)->scale (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -340,7 +340,7 @@ static void _call_f_setHeight_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSize *)cls)->setHeight (arg1); } @@ -360,7 +360,7 @@ static void _call_f_setWidth_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSize *)cls)->setWidth (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQSizeF.cc b/src/gsiqt/qt4/QtCore/gsiDeclQSizeF.cc index eff589bf0..a64800263 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQSizeF.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQSizeF.cc @@ -66,7 +66,7 @@ static void _call_ctor_QSizeF_1805 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSizeF (arg1)); } @@ -87,8 +87,8 @@ static void _call_ctor_QSizeF_2034 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write (new QSizeF (arg1, arg2)); } @@ -107,7 +107,7 @@ static void _call_f_boundedTo_c1875 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSizeF)((QSizeF *)cls)->boundedTo (arg1)); } @@ -126,7 +126,7 @@ static void _call_f_expandedTo_c1875 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSizeF)((QSizeF *)cls)->expandedTo (arg1)); } @@ -205,7 +205,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QSizeF &)((QSizeF *)cls)->operator*= (arg1)); } @@ -224,7 +224,7 @@ static void _call_f_operator_plus__eq__1875 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSizeF &)((QSizeF *)cls)->operator+= (arg1)); } @@ -243,7 +243,7 @@ static void _call_f_operator_minus__eq__1875 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSizeF &)((QSizeF *)cls)->operator-= (arg1)); } @@ -262,7 +262,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QSizeF &)((QSizeF *)cls)->operator/= (arg1)); } @@ -315,9 +315,9 @@ static void _call_f_scale_4183 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeF *)cls)->scale (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -339,8 +339,8 @@ static void _call_f_scale_4024 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeF *)cls)->scale (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -360,7 +360,7 @@ static void _call_f_setHeight_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeF *)cls)->setHeight (arg1); } @@ -380,7 +380,7 @@ static void _call_f_setWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeF *)cls)->setWidth (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQSocketNotifier.cc b/src/gsiqt/qt4/QtCore/gsiDeclQSocketNotifier.cc index 8922ce473..4f76c611c 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQSocketNotifier.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQSocketNotifier.cc @@ -83,7 +83,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSocketNotifier *)cls)->setEnabled (arg1); } @@ -135,8 +135,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSocketNotifier::tr (arg1, arg2)); } @@ -159,9 +159,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSocketNotifier::tr (arg1, arg2, arg3)); } @@ -182,8 +182,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSocketNotifier::trUtf8 (arg1, arg2)); } @@ -206,9 +206,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSocketNotifier::trUtf8 (arg1, arg2, arg3)); } @@ -400,9 +400,9 @@ static void _call_ctor_QSocketNotifier_Adaptor_4353 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSocketNotifier_Adaptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -420,7 +420,7 @@ static void _call_emitter_activated_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSocketNotifier_Adaptor *)cls)->emitter_QSocketNotifier_activated_767 (arg1); } @@ -486,7 +486,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSocketNotifier_Adaptor *)cls)->emitter_QSocketNotifier_destroyed_1302 (arg1); } @@ -577,7 +577,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSocketNotifier_Adaptor *)cls)->fp_QSocketNotifier_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQStringMatcher.cc b/src/gsiqt/qt4/QtCore/gsiDeclQStringMatcher.cc index b3c806ba9..815f82106 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQStringMatcher.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQStringMatcher.cc @@ -67,8 +67,8 @@ static void _call_ctor_QStringMatcher_4241 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::CaseSensitive)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::CaseSensitive), heap); ret.write (new QStringMatcher (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -87,7 +87,7 @@ static void _call_ctor_QStringMatcher_2733 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringMatcher &arg1 = args.read (heap); + const QStringMatcher &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStringMatcher (arg1)); } @@ -123,8 +123,8 @@ static void _call_f_indexIn_c2684 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStringMatcher *)cls)->indexIn (arg1, arg2)); } @@ -143,7 +143,7 @@ static void _call_f_operator_eq__2733 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringMatcher &arg1 = args.read (heap); + const QStringMatcher &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringMatcher &)((QStringMatcher *)cls)->operator= (arg1)); } @@ -177,7 +177,7 @@ static void _call_f_setCaseSensitivity_2324 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringMatcher *)cls)->setCaseSensitivity (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -197,7 +197,7 @@ static void _call_f_setPattern_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringMatcher *)cls)->setPattern (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQSystemLocale.cc b/src/gsiqt/qt4/QtCore/gsiDeclQSystemLocale.cc index 86be1daed..9eca3417d 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQSystemLocale.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQSystemLocale.cc @@ -68,8 +68,8 @@ static void _call_f_query_c3956 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QVariant arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QVariant arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSystemLocale *)cls)->query (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTemporaryFile.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTemporaryFile.cc index 1ba6fb315..e2881813c 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTemporaryFile.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTemporaryFile.cc @@ -82,7 +82,7 @@ static void _call_ctor_QTemporaryFile_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTemporaryFile (arg1)); } @@ -101,7 +101,7 @@ static void _call_ctor_QTemporaryFile_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTemporaryFile (arg1)); } @@ -122,8 +122,8 @@ static void _call_ctor_QTemporaryFile_3219 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); ret.write (new QTemporaryFile (arg1, arg2)); } @@ -202,7 +202,7 @@ static void _call_f_setAutoRemove_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTemporaryFile *)cls)->setAutoRemove (arg1); } @@ -222,7 +222,7 @@ static void _call_f_setFileTemplate_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTemporaryFile *)cls)->setFileTemplate (arg1); } @@ -242,7 +242,7 @@ static void _call_f_createLocalFile_2025 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTemporaryFile *)QTemporaryFile::createLocalFile (arg1)); } @@ -261,7 +261,7 @@ static void _call_f_createLocalFile_1083 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFile &arg1 = args.read (heap); + QFile &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTemporaryFile *)QTemporaryFile::createLocalFile (arg1)); } @@ -282,8 +282,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTemporaryFile::tr (arg1, arg2)); } @@ -306,9 +306,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTemporaryFile::tr (arg1, arg2, arg3)); } @@ -329,8 +329,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTemporaryFile::trUtf8 (arg1, arg2)); } @@ -353,9 +353,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTemporaryFile::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTextCodec.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTextCodec.cc index 0dd2cd73b..8ff7fdaf7 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTextCodec.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTextCodec.cc @@ -67,7 +67,7 @@ static void _call_f_canEncode_c899 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QTextCodec *)cls)->canEncode (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -86,7 +86,7 @@ static void _call_f_canEncode_c2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCodec *)cls)->canEncode (arg1)); } @@ -105,7 +105,7 @@ static void _call_f_fromUnicode_c2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QTextCodec *)cls)->fromUnicode (arg1)); } @@ -184,7 +184,7 @@ static void _call_f_toUnicode_c1731 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextCodec *)cls)->toUnicode (arg1)); } @@ -207,9 +207,9 @@ static void _call_f_toUnicode_c5465 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); - QTextCodec::ConverterState *arg3 = args ? args.read (heap) : (QTextCodec::ConverterState *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QTextCodec::ConverterState *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QTextCodec *)cls)->toUnicode (arg1, arg2, arg3)); } @@ -273,7 +273,7 @@ static void _call_f_codecForHtml_2309 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCodec *)QTextCodec::codecForHtml (arg1)); } @@ -294,8 +294,8 @@ static void _call_f_codecForHtml_3803 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - QTextCodec *arg2 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + QTextCodec *arg2 = gsi::arg_reader() (args, heap); ret.write ((QTextCodec *)QTextCodec::codecForHtml (arg1, arg2)); } @@ -329,7 +329,7 @@ static void _call_f_codecForMib_767 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCodec *)QTextCodec::codecForMib (arg1)); } @@ -348,7 +348,7 @@ static void _call_f_codecForName_1731 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCodec *)QTextCodec::codecForName (arg1)); } @@ -382,7 +382,7 @@ static void _call_f_codecForUtfText_2309 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCodec *)QTextCodec::codecForUtfText (arg1)); } @@ -403,8 +403,8 @@ static void _call_f_codecForUtfText_3803 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - QTextCodec *arg2 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + QTextCodec *arg2 = gsi::arg_reader() (args, heap); ret.write ((QTextCodec *)QTextCodec::codecForUtfText (arg1, arg2)); } @@ -423,7 +423,7 @@ static void _call_f_setCodecForCStrings_1602 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextCodec *arg1 = args.read (heap); + QTextCodec *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QTextCodec::setCodecForCStrings (arg1); } @@ -443,7 +443,7 @@ static void _call_f_setCodecForLocale_1602 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextCodec *arg1 = args.read (heap); + QTextCodec *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QTextCodec::setCodecForLocale (arg1); } @@ -463,7 +463,7 @@ static void _call_f_setCodecForTr_1602 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextCodec *arg1 = args.read (heap); + QTextCodec *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QTextCodec::setCodecForTr (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTextCodec_ConverterState.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTextCodec_ConverterState.cc index c5aadee02..bcadd4e35 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTextCodec_ConverterState.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTextCodec_ConverterState.cc @@ -50,7 +50,7 @@ static void _call_ctor_QTextCodec_ConverterState_3668 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QTextCodec::DefaultConversion); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QTextCodec::DefaultConversion, heap); ret.write (new QTextCodec::ConverterState (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTextDecoder.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTextDecoder.cc index 0b14f26f8..62d70edde 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTextDecoder.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTextDecoder.cc @@ -51,7 +51,7 @@ static void _call_ctor_QTextDecoder_2297 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCodec *arg1 = args.read (heap); + const QTextCodec *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextDecoder (arg1)); } @@ -87,8 +87,8 @@ static void _call_f_toUnicode_2390 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextDecoder *)cls)->toUnicode (arg1, arg2)); } @@ -107,7 +107,7 @@ static void _call_f_toUnicode_2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextDecoder *)cls)->toUnicode (arg1)); } @@ -130,9 +130,9 @@ static void _call_f_toUnicode_3616 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + QString *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDecoder *)cls)->toUnicode (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTextEncoder.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTextEncoder.cc index 9ad7ccdf9..e4c348ed5 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTextEncoder.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTextEncoder.cc @@ -51,7 +51,7 @@ static void _call_ctor_QTextEncoder_2297 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCodec *arg1 = args.read (heap); + const QTextCodec *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextEncoder (arg1)); } @@ -70,7 +70,7 @@ static void _call_f_fromUnicode_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QTextEncoder *)cls)->fromUnicode (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTextStream.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTextStream.cc index e0b5c2ef5..0c3147b89 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTextStream.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTextStream.cc @@ -394,7 +394,7 @@ static void _call_f_read_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextStream *)cls)->read (arg1)); } @@ -428,7 +428,7 @@ static void _call_f_readLine_986 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args ? args.read (heap) : (qint64)(0); + qint64 arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QTextStream *)cls)->readLine (arg1)); } @@ -509,7 +509,7 @@ static void _call_f_seek_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextStream *)cls)->seek (arg1)); } @@ -528,7 +528,7 @@ static void _call_f_setAutoDetectUnicode_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setAutoDetectUnicode (arg1); } @@ -548,7 +548,7 @@ static void _call_f_setCodec_1602 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextCodec *arg1 = args.read (heap); + QTextCodec *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setCodec (arg1); } @@ -568,7 +568,7 @@ static void _call_f_setCodec_1731 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setCodec (arg1); } @@ -588,7 +588,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setDevice (arg1); } @@ -608,7 +608,7 @@ static void _call_f_setFieldAlignment_3085 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setFieldAlignment (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -628,7 +628,7 @@ static void _call_f_setFieldWidth_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setFieldWidth (arg1); } @@ -648,7 +648,7 @@ static void _call_f_setGenerateByteOrderMark_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setGenerateByteOrderMark (arg1); } @@ -668,7 +668,7 @@ static void _call_f_setIntegerBase_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setIntegerBase (arg1); } @@ -688,7 +688,7 @@ static void _call_f_setLocale_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setLocale (arg1); } @@ -708,7 +708,7 @@ static void _call_f_setNumberFlags_3365 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setNumberFlags (arg1); } @@ -728,7 +728,7 @@ static void _call_f_setPadChar_899 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setPadChar (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -748,7 +748,7 @@ static void _call_f_setRealNumberNotation_3523 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setRealNumberNotation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -768,7 +768,7 @@ static void _call_f_setRealNumberPrecision_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setRealNumberPrecision (arg1); } @@ -788,7 +788,7 @@ static void _call_f_setStatus_2318 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setStatus (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -810,8 +810,8 @@ static void _call_f_setString_4468 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString *arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + QString *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setString (arg1, arg2); } @@ -1004,7 +1004,7 @@ static void _call_ctor_QTextStream_Adaptor_1447 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextStream_Adaptor (arg1)); } @@ -1024,8 +1024,8 @@ static void _call_ctor_QTextStream_Adaptor_4468 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString *arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + QString *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); ret.write (new QTextStream_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQThread.cc b/src/gsiqt/qt4/QtCore/gsiDeclQThread.cc index d31bab25f..4829fe15b 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQThread.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQThread.cc @@ -67,7 +67,7 @@ static void _call_f_exit_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread *)cls)->exit (arg1); } @@ -148,7 +148,7 @@ static void _call_f_setPriority_2099 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread *)cls)->setPriority (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -168,7 +168,7 @@ static void _call_f_setStackSize_1772 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread *)cls)->setStackSize (arg1); } @@ -203,7 +203,7 @@ static void _call_f_start_2099 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QThread::InheritPriority)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QThread::InheritPriority), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread *)cls)->start (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -239,7 +239,7 @@ static void _call_f_wait_2348 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args ? args.read (heap) : (unsigned long int)(ULONG_MAX); + unsigned long int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (ULONG_MAX, heap); ret.write ((bool)((QThread *)cls)->wait (arg1)); } @@ -305,8 +305,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QThread::tr (arg1, arg2)); } @@ -329,9 +329,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QThread::tr (arg1, arg2, arg3)); } @@ -352,8 +352,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QThread::trUtf8 (arg1, arg2)); } @@ -376,9 +376,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QThread::trUtf8 (arg1, arg2, arg3)); } @@ -648,7 +648,7 @@ static void _call_ctor_QThread_Adaptor_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QThread_Adaptor (arg1)); } @@ -714,7 +714,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QThread_Adaptor *)cls)->emitter_QThread_destroyed_1302 (arg1); } @@ -833,7 +833,7 @@ static void _call_fp_msleep_2348 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args.read (heap); + unsigned long int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QThread_Adaptor::fp_QThread_msleep_2348 (arg1); } @@ -852,7 +852,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QThread_Adaptor *)cls)->fp_QThread_receivers_c1731 (arg1)); } @@ -904,7 +904,7 @@ static void _call_fp_setTerminationEnabled_864 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); QThread_Adaptor::fp_QThread_setTerminationEnabled_864 (arg1); } @@ -923,7 +923,7 @@ static void _call_fp_sleep_2348 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args.read (heap); + unsigned long int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QThread_Adaptor::fp_QThread_sleep_2348 (arg1); } @@ -994,7 +994,7 @@ static void _call_fp_usleep_2348 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args.read (heap); + unsigned long int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QThread_Adaptor::fp_QThread_usleep_2348 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTime.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTime.cc index ca8caf145..a1583c277 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTime.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTime.cc @@ -71,10 +71,10 @@ static void _call_ctor_QTime_2744 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); - int arg4 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTime (arg1, arg2, arg3, arg4)); } @@ -93,7 +93,7 @@ static void _call_f_addMSecs_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTime)((QTime *)cls)->addMSecs (arg1)); } @@ -112,7 +112,7 @@ static void _call_f_addSecs_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTime)((QTime *)cls)->addSecs (arg1)); } @@ -221,7 +221,7 @@ static void _call_f_msecsTo_c1793 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTime *)cls)->msecsTo (arg1)); } @@ -240,7 +240,7 @@ static void _call_f_operator_excl__eq__c1793 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTime *)cls)->operator!= (arg1)); } @@ -259,7 +259,7 @@ static void _call_f_operator_lt__c1793 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTime *)cls)->operator< (arg1)); } @@ -278,7 +278,7 @@ static void _call_f_operator_lt__eq__c1793 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTime *)cls)->operator<= (arg1)); } @@ -297,7 +297,7 @@ static void _call_f_operator_eq__eq__c1793 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTime *)cls)->operator== (arg1)); } @@ -316,7 +316,7 @@ static void _call_f_operator_gt__c1793 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTime *)cls)->operator> (arg1)); } @@ -335,7 +335,7 @@ static void _call_f_operator_gt__eq__c1793 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTime *)cls)->operator>= (arg1)); } @@ -384,7 +384,7 @@ static void _call_f_secsTo_c1793 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTime *)cls)->secsTo (arg1)); } @@ -409,10 +409,10 @@ static void _call_f_setHMS_2744 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QTime *)cls)->setHMS (arg1, arg2, arg3, arg4)); } @@ -447,7 +447,7 @@ static void _call_f_toString_c1748 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate), heap); ret.write ((QString)((QTime *)cls)->toString (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -466,7 +466,7 @@ static void _call_f_toString_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTime *)cls)->toString (arg1)); } @@ -502,8 +502,8 @@ static void _call_f_fromString_3665 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate), heap); ret.write ((QTime)QTime::fromString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -524,8 +524,8 @@ static void _call_f_fromString_3942 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QTime)QTime::fromString (arg1, arg2)); } @@ -550,10 +550,10 @@ static void _call_f_isValid_2744 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)QTime::isValid (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTimeLine.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTimeLine.cc index da3bcfdda..f7fb36f7f 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTimeLine.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTimeLine.cc @@ -189,7 +189,7 @@ static void _call_f_frameForTime_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTimeLine *)cls)->frameForTime (arg1)); } @@ -239,7 +239,7 @@ static void _call_f_setCurrentTime_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setCurrentTime (arg1); } @@ -259,7 +259,7 @@ static void _call_f_setCurveShape_2438 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setCurveShape (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -279,7 +279,7 @@ static void _call_f_setDirection_2353 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -299,7 +299,7 @@ static void _call_f_setDuration_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setDuration (arg1); } @@ -319,7 +319,7 @@ static void _call_f_setEasingCurve_2510 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QEasingCurve &arg1 = args.read (heap); + const QEasingCurve &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setEasingCurve (arg1); } @@ -339,7 +339,7 @@ static void _call_f_setEndFrame_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setEndFrame (arg1); } @@ -361,8 +361,8 @@ static void _call_f_setFrameRange_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setFrameRange (arg1, arg2); } @@ -382,7 +382,7 @@ static void _call_f_setLoopCount_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setLoopCount (arg1); } @@ -402,7 +402,7 @@ static void _call_f_setPaused_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setPaused (arg1); } @@ -422,7 +422,7 @@ static void _call_f_setStartFrame_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setStartFrame (arg1); } @@ -442,7 +442,7 @@ static void _call_f_setUpdateInterval_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setUpdateInterval (arg1); } @@ -555,7 +555,7 @@ static void _call_f_valueForTime_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QTimeLine *)cls)->valueForTime (arg1)); } @@ -576,8 +576,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTimeLine::tr (arg1, arg2)); } @@ -600,9 +600,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTimeLine::tr (arg1, arg2, arg3)); } @@ -623,8 +623,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTimeLine::trUtf8 (arg1, arg2)); } @@ -647,9 +647,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTimeLine::trUtf8 (arg1, arg2, arg3)); } @@ -907,8 +907,8 @@ static void _call_ctor_QTimeLine_Adaptor_1961 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1000); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1000, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTimeLine_Adaptor (arg1, arg2)); } @@ -974,7 +974,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTimeLine_Adaptor *)cls)->emitter_QTimeLine_destroyed_1302 (arg1); } @@ -1079,7 +1079,7 @@ static void _call_emitter_frameChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QTimeLine_Adaptor *)cls)->emitter_QTimeLine_frameChanged_767 (arg1); } @@ -1097,7 +1097,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTimeLine_Adaptor *)cls)->fp_QTimeLine_receivers_c1731 (arg1)); } @@ -1129,7 +1129,7 @@ static void _call_emitter_stateChanged_1937 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QTimeLine_Adaptor *)cls)->emitter_QTimeLine_stateChanged_1937 (arg1); } @@ -1171,7 +1171,7 @@ static void _call_emitter_valueChanged_1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QTimeLine_Adaptor *)cls)->emitter_QTimeLine_valueChanged_1071 (arg1); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTimer.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTimer.cc index 56003e799..b1e33be96 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTimer.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTimer.cc @@ -113,7 +113,7 @@ static void _call_f_setInterval_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer *)cls)->setInterval (arg1); } @@ -133,7 +133,7 @@ static void _call_f_setSingleShot_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer *)cls)->setSingleShot (arg1); } @@ -153,7 +153,7 @@ static void _call_f_start_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer *)cls)->start (arg1); } @@ -222,8 +222,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTimer::tr (arg1, arg2)); } @@ -246,9 +246,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTimer::tr (arg1, arg2, arg3)); } @@ -269,8 +269,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTimer::trUtf8 (arg1, arg2)); } @@ -293,9 +293,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTimer::trUtf8 (arg1, arg2, arg3)); } @@ -488,7 +488,7 @@ static void _call_ctor_QTimer_Adaptor_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTimer_Adaptor (arg1)); } @@ -554,7 +554,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTimer_Adaptor *)cls)->emitter_QTimer_destroyed_1302 (arg1); } @@ -645,7 +645,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTimer_Adaptor *)cls)->fp_QTimer_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTimerEvent.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTimerEvent.cc index e2947a1a8..35a9b6405 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTimerEvent.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTimerEvent.cc @@ -101,7 +101,7 @@ static void _call_ctor_QTimerEvent_Adaptor_767 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write (new QTimerEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQTranslator.cc b/src/gsiqt/qt4/QtCore/gsiDeclQTranslator.cc index 2163765e8..05098b467 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQTranslator.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQTranslator.cc @@ -89,10 +89,10 @@ static void _call_f_load_7776 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QTranslator *)cls)->load (arg1, arg2, arg3, arg4)); } @@ -113,8 +113,8 @@ static void _call_f_load_3395 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const unsigned char *arg1 = args.read (heap); - int arg2 = args.read (heap); + const unsigned char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTranslator *)cls)->load (arg1, arg2)); } @@ -137,9 +137,9 @@ static void _call_f_translate_c4977 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const char *arg3 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QTranslator *)cls)->translate (arg1, arg2, arg3)); } @@ -164,10 +164,10 @@ static void _call_f_translate_c5636 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const char *arg3 = args.read (heap); - int arg4 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTranslator *)cls)->translate (arg1, arg2, arg3, arg4)); } @@ -188,8 +188,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTranslator::tr (arg1, arg2)); } @@ -212,9 +212,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTranslator::tr (arg1, arg2, arg3)); } @@ -235,8 +235,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTranslator::trUtf8 (arg1, arg2)); } @@ -259,9 +259,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTranslator::trUtf8 (arg1, arg2, arg3)); } @@ -475,7 +475,7 @@ static void _call_ctor_QTranslator_Adaptor_1302 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTranslator_Adaptor (arg1)); } @@ -541,7 +541,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTranslator_Adaptor *)cls)->emitter_QTranslator_destroyed_1302 (arg1); } @@ -651,7 +651,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTranslator_Adaptor *)cls)->fp_QTranslator_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQUrl.cc b/src/gsiqt/qt4/QtCore/gsiDeclQUrl.cc index fbba6067f..201c9710c 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQUrl.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQUrl.cc @@ -65,7 +65,7 @@ static void _call_ctor_QUrl_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QUrl (arg1)); } @@ -86,8 +86,8 @@ static void _call_ctor_QUrl_3970 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QUrl (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -106,7 +106,7 @@ static void _call_ctor_QUrl_1701 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write (new QUrl (arg1)); } @@ -127,8 +127,8 @@ static void _call_f_addEncodedQueryItem_4510 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->addEncodedQueryItem (arg1, arg2); } @@ -150,8 +150,8 @@ static void _call_f_addQueryItem_3942 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->addQueryItem (arg1, arg2); } @@ -171,7 +171,7 @@ static void _call_f_allEncodedQueryItemValues_c2309 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QUrl *)cls)->allEncodedQueryItemValues (arg1)); } @@ -190,7 +190,7 @@ static void _call_f_allQueryItemValues_c2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QUrl *)cls)->allQueryItemValues (arg1)); } @@ -331,7 +331,7 @@ static void _call_f_encodedQueryItemValue_c2309 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QUrl *)cls)->encodedQueryItemValue (arg1)); } @@ -410,7 +410,7 @@ static void _call_f_hasEncodedQueryItem_c2309 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUrl *)cls)->hasEncodedQueryItem (arg1)); } @@ -459,7 +459,7 @@ static void _call_f_hasQueryItem_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUrl *)cls)->hasQueryItem (arg1)); } @@ -523,7 +523,7 @@ static void _call_f_isParentOf_c1701 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUrl *)cls)->isParentOf (arg1)); } @@ -572,7 +572,7 @@ static void _call_f_operator_excl__eq__c1701 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUrl *)cls)->operator != (arg1)); } @@ -591,7 +591,7 @@ static void _call_f_operator_lt__c1701 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUrl *)cls)->operator < (arg1)); } @@ -610,7 +610,7 @@ static void _call_f_operator_eq__1701 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl &)((QUrl *)cls)->operator = (arg1)); } @@ -629,7 +629,7 @@ static void _call_f_operator_eq__2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl &)((QUrl *)cls)->operator = (arg1)); } @@ -648,7 +648,7 @@ static void _call_f_operator_eq__eq__c1701 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUrl *)cls)->operator == (arg1)); } @@ -712,7 +712,7 @@ static void _call_f_port_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUrl *)cls)->port (arg1)); } @@ -731,7 +731,7 @@ static void _call_f_queryItemValue_c2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QUrl *)cls)->queryItemValue (arg1)); } @@ -795,7 +795,7 @@ static void _call_f_removeAllEncodedQueryItems_2309 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->removeAllEncodedQueryItems (arg1); } @@ -815,7 +815,7 @@ static void _call_f_removeAllQueryItems_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->removeAllQueryItems (arg1); } @@ -835,7 +835,7 @@ static void _call_f_removeEncodedQueryItem_2309 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->removeEncodedQueryItem (arg1); } @@ -855,7 +855,7 @@ static void _call_f_removeQueryItem_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->removeQueryItem (arg1); } @@ -875,7 +875,7 @@ static void _call_f_resolved_c1701 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl)((QUrl *)cls)->resolved (arg1)); } @@ -909,7 +909,7 @@ static void _call_f_setAuthority_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setAuthority (arg1); } @@ -929,7 +929,7 @@ static void _call_f_setEncodedFragment_2309 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setEncodedFragment (arg1); } @@ -949,7 +949,7 @@ static void _call_f_setEncodedHost_2309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setEncodedHost (arg1); } @@ -969,7 +969,7 @@ static void _call_f_setEncodedPassword_2309 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setEncodedPassword (arg1); } @@ -989,7 +989,7 @@ static void _call_f_setEncodedPath_2309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setEncodedPath (arg1); } @@ -1009,7 +1009,7 @@ static void _call_f_setEncodedQuery_2309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setEncodedQuery (arg1); } @@ -1029,7 +1029,7 @@ static void _call_f_setEncodedQueryItems_4851 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList > &arg1 = args.read > & > (heap); + const QList > &arg1 = gsi::arg_reader > & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setEncodedQueryItems (arg1); } @@ -1049,7 +1049,7 @@ static void _call_f_setEncodedUrl_2309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setEncodedUrl (arg1); } @@ -1071,8 +1071,8 @@ static void _call_f_setEncodedUrl_4254 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setEncodedUrl (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1092,7 +1092,7 @@ static void _call_f_setEncodedUserName_2309 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setEncodedUserName (arg1); } @@ -1112,7 +1112,7 @@ static void _call_f_setFragment_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setFragment (arg1); } @@ -1132,7 +1132,7 @@ static void _call_f_setHost_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setHost (arg1); } @@ -1152,7 +1152,7 @@ static void _call_f_setPassword_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setPassword (arg1); } @@ -1172,7 +1172,7 @@ static void _call_f_setPath_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setPath (arg1); } @@ -1192,7 +1192,7 @@ static void _call_f_setPort_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setPort (arg1); } @@ -1214,8 +1214,8 @@ static void _call_f_setQueryDelimiters_1592 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - char arg1 = args.read (heap); - char arg2 = args.read (heap); + char arg1 = gsi::arg_reader() (args, heap); + char arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setQueryDelimiters (arg1, arg2); } @@ -1235,7 +1235,7 @@ static void _call_f_setQueryItems_4283 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList > &arg1 = args.read > & > (heap); + const QList > &arg1 = gsi::arg_reader > & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setQueryItems (arg1); } @@ -1255,7 +1255,7 @@ static void _call_f_setScheme_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setScheme (arg1); } @@ -1275,7 +1275,7 @@ static void _call_f_setUrl_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setUrl (arg1); } @@ -1297,8 +1297,8 @@ static void _call_f_setUrl_3970 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setUrl (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1318,7 +1318,7 @@ static void _call_f_setUserInfo_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setUserInfo (arg1); } @@ -1338,7 +1338,7 @@ static void _call_f_setUserName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setUserName (arg1); } @@ -1358,7 +1358,7 @@ static void _call_f_toEncoded_c3320 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QUrl::None); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::None, heap); ret.write ((QByteArray)((QUrl *)cls)->toEncoded (arg1)); } @@ -1392,7 +1392,7 @@ static void _call_f_toString_c3320 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QUrl::None); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::None, heap); ret.write ((QString)((QUrl *)cls)->toString (arg1)); } @@ -1441,7 +1441,7 @@ static void _call_f_fromAce_2309 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QUrl::fromAce (arg1)); } @@ -1460,7 +1460,7 @@ static void _call_f_fromEncoded_2309 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl)QUrl::fromEncoded (arg1)); } @@ -1481,8 +1481,8 @@ static void _call_f_fromEncoded_4254 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QUrl)QUrl::fromEncoded (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1501,7 +1501,7 @@ static void _call_f_fromLocalFile_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl)QUrl::fromLocalFile (arg1)); } @@ -1520,7 +1520,7 @@ static void _call_f_fromPercentEncoding_2309 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QUrl::fromPercentEncoding (arg1)); } @@ -1539,7 +1539,7 @@ static void _call_f_fromPunycode_2309 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QUrl::fromPunycode (arg1)); } @@ -1558,7 +1558,7 @@ static void _call_f_fromUserInput_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl)QUrl::fromUserInput (arg1)); } @@ -1592,7 +1592,7 @@ static void _call_f_setIdnWhitelist_2437 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QUrl::setIdnWhitelist (arg1); } @@ -1612,7 +1612,7 @@ static void _call_f_toAce_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)QUrl::toAce (arg1)); } @@ -1635,9 +1635,9 @@ static void _call_f_toPercentEncoding_6427 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - const QByteArray &arg3 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); + const QByteArray &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write ((QByteArray)QUrl::toPercentEncoding (arg1, arg2, arg3)); } @@ -1656,7 +1656,7 @@ static void _call_f_toPunycode_2025 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)QUrl::toPunycode (arg1)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQWaitCondition.cc b/src/gsiqt/qt4/QtCore/gsiDeclQWaitCondition.cc index e9c386b87..6859c08f7 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQWaitCondition.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQWaitCondition.cc @@ -69,8 +69,8 @@ static void _call_f_wait_3474 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMutex *arg1 = args.read (heap); - unsigned long int arg2 = args ? args.read (heap) : (unsigned long int)(ULONG_MAX); + QMutex *arg1 = gsi::arg_reader() (args, heap); + unsigned long int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (ULONG_MAX, heap); ret.write ((bool)((QWaitCondition *)cls)->wait (arg1, arg2)); } @@ -91,8 +91,8 @@ static void _call_f_wait_4239 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QReadWriteLock *arg1 = args.read (heap); - unsigned long int arg2 = args ? args.read (heap) : (unsigned long int)(ULONG_MAX); + QReadWriteLock *arg1 = gsi::arg_reader() (args, heap); + unsigned long int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (ULONG_MAX, heap); ret.write ((bool)((QWaitCondition *)cls)->wait (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtCore/gsiDeclQWriteLocker.cc b/src/gsiqt/qt4/QtCore/gsiDeclQWriteLocker.cc index d151177e7..5bef127da 100644 --- a/src/gsiqt/qt4/QtCore/gsiDeclQWriteLocker.cc +++ b/src/gsiqt/qt4/QtCore/gsiDeclQWriteLocker.cc @@ -51,7 +51,7 @@ static void _call_ctor_QWriteLocker_1999 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QReadWriteLock *arg1 = args.read (heap); + QReadWriteLock *arg1 = gsi::arg_reader() (args, heap); ret.write (new QWriteLocker (arg1)); } diff --git a/src/gsiqt/qt4/QtDesigner/gsiDeclQAbstractFormBuilder.cc b/src/gsiqt/qt4/QtDesigner/gsiDeclQAbstractFormBuilder.cc index a67de5a9d..dc63e7e9c 100644 --- a/src/gsiqt/qt4/QtDesigner/gsiDeclQAbstractFormBuilder.cc +++ b/src/gsiqt/qt4/QtDesigner/gsiDeclQAbstractFormBuilder.cc @@ -85,8 +85,8 @@ static void _call_f_load_2654 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QWidget *)((QAbstractFormBuilder *)cls)->load (arg1, arg2)); } @@ -107,8 +107,8 @@ static void _call_f_save_2654 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractFormBuilder *)cls)->save (arg1, arg2); } @@ -128,7 +128,7 @@ static void _call_f_setScriptingEnabled_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractFormBuilder *)cls)->setScriptingEnabled (arg1); } @@ -148,7 +148,7 @@ static void _call_f_setWorkingDirectory_1681 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractFormBuilder *)cls)->setWorkingDirectory (arg1); } diff --git a/src/gsiqt/qt4/QtDesigner/gsiDeclQFormBuilder.cc b/src/gsiqt/qt4/QtDesigner/gsiDeclQFormBuilder.cc index 059f3d742..d978b324d 100644 --- a/src/gsiqt/qt4/QtDesigner/gsiDeclQFormBuilder.cc +++ b/src/gsiqt/qt4/QtDesigner/gsiDeclQFormBuilder.cc @@ -68,7 +68,7 @@ static void _call_f_addPluginPath_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormBuilder *)cls)->addPluginPath (arg1); } @@ -119,7 +119,7 @@ static void _call_f_setPluginPath_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormBuilder *)cls)->setPluginPath (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractButton.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractButton.cc index 6dc65331f..c592315a0 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractButton.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractButton.cc @@ -112,7 +112,7 @@ static void _call_f_animateClick_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(100); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (100, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->animateClick (arg1); } @@ -298,7 +298,7 @@ static void _call_f_setAutoExclusive_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setAutoExclusive (arg1); } @@ -318,7 +318,7 @@ static void _call_f_setAutoRepeat_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setAutoRepeat (arg1); } @@ -338,7 +338,7 @@ static void _call_f_setAutoRepeatDelay_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setAutoRepeatDelay (arg1); } @@ -358,7 +358,7 @@ static void _call_f_setAutoRepeatInterval_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setAutoRepeatInterval (arg1); } @@ -378,7 +378,7 @@ static void _call_f_setCheckable_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setCheckable (arg1); } @@ -398,7 +398,7 @@ static void _call_f_setChecked_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setChecked (arg1); } @@ -418,7 +418,7 @@ static void _call_f_setDown_864 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setDown (arg1); } @@ -438,7 +438,7 @@ static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setIcon (arg1); } @@ -458,7 +458,7 @@ static void _call_f_setIconSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setIconSize (arg1); } @@ -478,7 +478,7 @@ static void _call_f_setShortcut_2516 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setShortcut (arg1); } @@ -498,7 +498,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setText (arg1); } @@ -566,8 +566,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractButton::tr (arg1, arg2)); } @@ -590,9 +590,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractButton::tr (arg1, arg2, arg3)); } @@ -613,8 +613,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractButton::trUtf8 (arg1, arg2)); } @@ -637,9 +637,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractButton::trUtf8 (arg1, arg2, arg3)); } @@ -1596,7 +1596,7 @@ static void _call_ctor_QAbstractButton_Adaptor_1315 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractButton_Adaptor (arg1)); } @@ -1706,7 +1706,7 @@ static void _call_emitter_clicked_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QAbstractButton_Adaptor *)cls)->emitter_QAbstractButton_clicked_864 (arg1); } @@ -1776,9 +1776,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->fp_QAbstractButton_create_2208 (arg1, arg2, arg3); } @@ -1797,7 +1797,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QAbstractButton_Adaptor *)cls)->emitter_QAbstractButton_customContextMenuRequested_1916 (arg1); } @@ -1841,8 +1841,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->fp_QAbstractButton_destroy_1620 (arg1, arg2); } @@ -1861,7 +1861,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractButton_Adaptor *)cls)->emitter_QAbstractButton_destroyed_1302 (arg1); } @@ -2691,7 +2691,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractButton_Adaptor *)cls)->fp_QAbstractButton_receivers_c1731 (arg1)); } @@ -2915,7 +2915,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QAbstractButton_Adaptor *)cls)->emitter_QAbstractButton_toggled_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractGraphicsShapeItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractGraphicsShapeItem.cc index 2b51d19fb..72c06c205 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractGraphicsShapeItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractGraphicsShapeItem.cc @@ -94,7 +94,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem *)cls)->isObscuredBy (arg1)); } @@ -143,7 +143,7 @@ static void _call_f_setBrush_1910 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem *)cls)->setBrush (arg1); } @@ -163,7 +163,7 @@ static void _call_f_setPen_1685 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem *)cls)->setPen (arg1); } @@ -815,8 +815,8 @@ static void _call_ctor_QAbstractGraphicsShapeItem_Adaptor_3825 (const qt_gsi::Ge { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg2 = args ? args.read (heap) : (QGraphicsScene *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractGraphicsShapeItem_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemDelegate.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemDelegate.cc index 7f830eccb..a2f4e7011 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemDelegate.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemDelegate.cc @@ -81,9 +81,9 @@ static void _call_f_createEditor_c6860 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QAbstractItemDelegate *)cls)->createEditor (arg1, arg2, arg3)); } @@ -108,10 +108,10 @@ static void _call_f_editorEvent_9073 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate *)cls)->editorEvent (arg1, arg2, arg3, arg4)); } @@ -136,10 +136,10 @@ static void _call_f_helpEvent_9380 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHelpEvent *arg1 = args.read (heap); - QAbstractItemView *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QHelpEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemView *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate *)cls)->helpEvent (arg1, arg2, arg3, arg4)); } @@ -162,9 +162,9 @@ static void _call_f_paint_c6971 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate *)cls)->paint (arg1, arg2, arg3); } @@ -186,8 +186,8 @@ static void _call_f_setEditorData_c3602 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate *)cls)->setEditorData (arg1, arg2); } @@ -211,9 +211,9 @@ static void _call_f_setModelData_c5913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate *)cls)->setModelData (arg1, arg2, arg3); } @@ -235,8 +235,8 @@ static void _call_f_sizeHint_c5653 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractItemDelegate *)cls)->sizeHint (arg1, arg2)); } @@ -259,9 +259,9 @@ static void _call_f_updateEditorGeometry_c6860 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate *)cls)->updateEditorGeometry (arg1, arg2, arg3); } @@ -287,10 +287,10 @@ static void _call_f_elidedText_7038 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QString &arg4 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractItemDelegate::elidedText (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -311,8 +311,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractItemDelegate::tr (arg1, arg2)); } @@ -335,9 +335,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractItemDelegate::tr (arg1, arg2, arg3)); } @@ -358,8 +358,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractItemDelegate::trUtf8 (arg1, arg2)); } @@ -382,9 +382,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractItemDelegate::trUtf8 (arg1, arg2, arg3)); } @@ -708,7 +708,7 @@ static void _call_ctor_QAbstractItemDelegate_Adaptor_1302 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractItemDelegate_Adaptor (arg1)); } @@ -752,8 +752,8 @@ static void _call_emitter_closeEditor_4926 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemDelegate::NoHint)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemDelegate::NoHint), heap); ((QAbstractItemDelegate_Adaptor *)cls)->emitter_QAbstractItemDelegate_closeEditor_4926 (arg1, arg2); } @@ -771,7 +771,7 @@ static void _call_emitter_commitData_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemDelegate_Adaptor *)cls)->emitter_QAbstractItemDelegate_commitData_1315 (arg1); } @@ -842,7 +842,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractItemDelegate_Adaptor *)cls)->emitter_QAbstractItemDelegate_destroyed_1302 (arg1); } @@ -995,7 +995,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemDelegate_Adaptor *)cls)->fp_QAbstractItemDelegate_receivers_c1731 (arg1)); } @@ -1110,7 +1110,7 @@ static void _call_emitter_sizeHintChanged_2395 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemDelegate_Adaptor *)cls)->emitter_QAbstractItemDelegate_sizeHintChanged_2395 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemView.cc index 53380ac28..541048864 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractItemView.cc @@ -164,7 +164,7 @@ static void _call_f_closePersistentEditor_2395 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->closePersistentEditor (arg1); } @@ -275,7 +275,7 @@ static void _call_f_edit_2395 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->edit (arg1); } @@ -355,7 +355,7 @@ static void _call_f_indexAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemView *)cls)->indexAt (arg1)); } @@ -374,7 +374,7 @@ static void _call_f_indexWidget_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QAbstractItemView *)cls)->indexWidget (arg1)); } @@ -393,7 +393,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractItemView *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -427,7 +427,7 @@ static void _call_f_itemDelegate_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QAbstractItemView *)cls)->itemDelegate (arg1)); } @@ -446,7 +446,7 @@ static void _call_f_itemDelegateForColumn_c767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QAbstractItemView *)cls)->itemDelegateForColumn (arg1)); } @@ -465,7 +465,7 @@ static void _call_f_itemDelegateForRow_c767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QAbstractItemView *)cls)->itemDelegateForRow (arg1)); } @@ -484,7 +484,7 @@ static void _call_f_keyboardSearch_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->keyboardSearch (arg1); } @@ -519,7 +519,7 @@ static void _call_f_openPersistentEditor_2395 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->openPersistentEditor (arg1); } @@ -572,8 +572,8 @@ static void _call_f_scrollTo_5576 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->scrollTo (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -686,7 +686,7 @@ static void _call_f_setAlternatingRowColors_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setAlternatingRowColors (arg1); } @@ -706,7 +706,7 @@ static void _call_f_setAutoScroll_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setAutoScroll (arg1); } @@ -726,7 +726,7 @@ static void _call_f_setAutoScrollMargin_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setAutoScrollMargin (arg1); } @@ -746,7 +746,7 @@ static void _call_f_setCurrentIndex_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setCurrentIndex (arg1); } @@ -766,7 +766,7 @@ static void _call_f_setDefaultDropAction_1760 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setDefaultDropAction (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -786,7 +786,7 @@ static void _call_f_setDragDropMode_3439 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setDragDropMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -806,7 +806,7 @@ static void _call_f_setDragDropOverwriteMode_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setDragDropOverwriteMode (arg1); } @@ -826,7 +826,7 @@ static void _call_f_setDragEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setDragEnabled (arg1); } @@ -846,7 +846,7 @@ static void _call_f_setDropIndicatorShown_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setDropIndicatorShown (arg1); } @@ -866,7 +866,7 @@ static void _call_f_setEditTriggers_4073 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setEditTriggers (arg1); } @@ -886,7 +886,7 @@ static void _call_f_setHorizontalScrollMode_3275 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setHorizontalScrollMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -906,7 +906,7 @@ static void _call_f_setIconSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setIconSize (arg1); } @@ -928,8 +928,8 @@ static void _call_f_setIndexWidget_3602 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setIndexWidget (arg1, arg2); } @@ -949,7 +949,7 @@ static void _call_f_setItemDelegate_2717 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemDelegate *arg1 = args.read (heap); + QAbstractItemDelegate *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setItemDelegate (arg1); } @@ -971,8 +971,8 @@ static void _call_f_setItemDelegateForColumn_3376 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QAbstractItemDelegate *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QAbstractItemDelegate *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setItemDelegateForColumn (arg1, arg2); } @@ -994,8 +994,8 @@ static void _call_f_setItemDelegateForRow_3376 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QAbstractItemDelegate *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QAbstractItemDelegate *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setItemDelegateForRow (arg1, arg2); } @@ -1015,7 +1015,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setModel (arg1); } @@ -1035,7 +1035,7 @@ static void _call_f_setRootIndex_2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setRootIndex (arg1); } @@ -1055,7 +1055,7 @@ static void _call_f_setSelectionBehavior_4013 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setSelectionBehavior (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1075,7 +1075,7 @@ static void _call_f_setSelectionMode_3586 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setSelectionMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1095,7 +1095,7 @@ static void _call_f_setSelectionModel_2533 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setSelectionModel (arg1); } @@ -1115,7 +1115,7 @@ static void _call_f_setTabKeyNavigation_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setTabKeyNavigation (arg1); } @@ -1135,7 +1135,7 @@ static void _call_f_setTextElideMode_2042 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setTextElideMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1155,7 +1155,7 @@ static void _call_f_setVerticalScrollMode_3275 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setVerticalScrollMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1190,7 +1190,7 @@ static void _call_f_sizeHintForColumn_c767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemView *)cls)->sizeHintForColumn (arg1)); } @@ -1209,7 +1209,7 @@ static void _call_f_sizeHintForIndex_c2395 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractItemView *)cls)->sizeHintForIndex (arg1)); } @@ -1228,7 +1228,7 @@ static void _call_f_sizeHintForRow_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemView *)cls)->sizeHintForRow (arg1)); } @@ -1277,7 +1277,7 @@ static void _call_f_update_2006 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->update (arg1); } @@ -1297,7 +1297,7 @@ static void _call_f_update_2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->update (arg1); } @@ -1332,7 +1332,7 @@ static void _call_f_visualRect_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QAbstractItemView *)cls)->visualRect (arg1)); } @@ -1353,8 +1353,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractItemView::tr (arg1, arg2)); } @@ -1377,9 +1377,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractItemView::tr (arg1, arg2, arg3)); } @@ -1400,8 +1400,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractItemView::trUtf8 (arg1, arg2)); } @@ -1424,9 +1424,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractItemView::trUtf8 (arg1, arg2, arg3)); } @@ -3135,7 +3135,7 @@ static void _call_ctor_QAbstractItemView_Adaptor_1315 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractItemView_Adaptor (arg1)); } @@ -3177,7 +3177,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_activated_2395 (arg1); } @@ -3243,7 +3243,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_clicked_2395 (arg1); } @@ -3364,9 +3364,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_create_2208 (arg1, arg2, arg3); } @@ -3412,7 +3412,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_customContextMenuRequested_1916 (arg1); } @@ -3483,8 +3483,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_destroy_1620 (arg1, arg2); } @@ -3503,7 +3503,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_destroyed_1302 (arg1); } @@ -3594,7 +3594,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_doubleClicked_2395 (arg1); } @@ -3684,7 +3684,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_drawFrame_1426 (arg1); } @@ -3842,7 +3842,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_entered_2395 (arg1); } @@ -4639,7 +4639,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_pressed_2395 (arg1); } @@ -4657,7 +4657,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_receivers_c1731 (arg1)); } @@ -4838,8 +4838,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_scrollDirtyRegion_1426 (arg1, arg2); } @@ -4991,7 +4991,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_setDirtyRegion_2006 (arg1); } @@ -5010,7 +5010,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_setHorizontalStepsPerItem_767 (arg1); } @@ -5128,7 +5128,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_setState_2776 (arg1); } @@ -5147,7 +5147,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_setVerticalStepsPerItem_767 (arg1); } @@ -5172,10 +5172,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -5194,7 +5194,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_setViewportMargins_2115 (arg1); } @@ -5237,7 +5237,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_setupViewport_1315 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPageSetupDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPageSetupDialog.cc index 0ce9482b6..d005dff64 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPageSetupDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPageSetupDialog.cc @@ -112,7 +112,7 @@ static void _call_f_done_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog *)cls)->done (arg1); } @@ -164,8 +164,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractPageSetupDialog::tr (arg1, arg2)); } @@ -188,9 +188,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractPageSetupDialog::tr (arg1, arg2, arg3)); } @@ -211,8 +211,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractPageSetupDialog::trUtf8 (arg1, arg2)); } @@ -235,9 +235,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractPageSetupDialog::trUtf8 (arg1, arg2, arg3)); } @@ -1176,8 +1176,8 @@ static void _call_ctor_QAbstractPageSetupDialog_Adaptor_2650 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QPrinter *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractPageSetupDialog_Adaptor (arg1, arg2)); } @@ -1254,7 +1254,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->fp_QAbstractPageSetupDialog_adjustPosition_1315 (arg1); } @@ -1373,9 +1373,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->fp_QAbstractPageSetupDialog_create_2208 (arg1, arg2, arg3); } @@ -1394,7 +1394,7 @@ static void _call_fp_customContextMenuRequested_1916 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->fp_QAbstractPageSetupDialog_customContextMenuRequested_1916 (arg1); } @@ -1439,8 +1439,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->fp_QAbstractPageSetupDialog_destroy_1620 (arg1, arg2); } @@ -1459,7 +1459,7 @@ static void _call_fp_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->fp_QAbstractPageSetupDialog_destroyed_1302 (arg1); } @@ -1738,7 +1738,7 @@ static void _call_fp_finished_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPageSetupDialog_Adaptor *)cls)->fp_QAbstractPageSetupDialog_finished_767 (arg1); } @@ -2295,7 +2295,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractPageSetupDialog_Adaptor *)cls)->fp_QAbstractPageSetupDialog_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPrintDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPrintDialog.cc index e4decf277..dc26ccc93 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPrintDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractPrintDialog.cc @@ -112,7 +112,7 @@ static void _call_f_addEnabledOption_4320 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog *)cls)->addEnabledOption (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -177,7 +177,7 @@ static void _call_f_isOptionEnabled_c4320 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QAbstractPrintDialog *)cls)->isOptionEnabled (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -256,7 +256,7 @@ static void _call_f_setEnabledOptions_5016 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog *)cls)->setEnabledOptions (arg1); } @@ -278,8 +278,8 @@ static void _call_f_setFromTo_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog *)cls)->setFromTo (arg1, arg2); } @@ -301,8 +301,8 @@ static void _call_f_setMinMax_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog *)cls)->setMinMax (arg1, arg2); } @@ -322,7 +322,7 @@ static void _call_f_setOptionTabs_2663 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog *)cls)->setOptionTabs (arg1); } @@ -342,7 +342,7 @@ static void _call_f_setPrintRange_3588 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog *)cls)->setPrintRange (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -379,8 +379,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractPrintDialog::tr (arg1, arg2)); } @@ -403,9 +403,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractPrintDialog::tr (arg1, arg2, arg3)); } @@ -426,8 +426,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractPrintDialog::trUtf8 (arg1, arg2)); } @@ -450,9 +450,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractPrintDialog::trUtf8 (arg1, arg2, arg3)); } @@ -1413,8 +1413,8 @@ static void _call_ctor_QAbstractPrintDialog_Adaptor_2650 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QPrinter *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractPrintDialog_Adaptor (arg1, arg2)); } @@ -1490,7 +1490,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->fp_QAbstractPrintDialog_adjustPosition_1315 (arg1); } @@ -1609,9 +1609,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->fp_QAbstractPrintDialog_create_2208 (arg1, arg2, arg3); } @@ -1630,7 +1630,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QAbstractPrintDialog_Adaptor *)cls)->emitter_QAbstractPrintDialog_customContextMenuRequested_1916 (arg1); } @@ -1674,8 +1674,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->fp_QAbstractPrintDialog_destroy_1620 (arg1, arg2); } @@ -1694,7 +1694,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractPrintDialog_Adaptor *)cls)->emitter_QAbstractPrintDialog_destroyed_1302 (arg1); } @@ -1972,7 +1972,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QAbstractPrintDialog_Adaptor *)cls)->emitter_QAbstractPrintDialog_finished_767 (arg1); } @@ -2528,7 +2528,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractPrintDialog_Adaptor *)cls)->fp_QAbstractPrintDialog_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractProxyModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractProxyModel.cc index 3479664ac..08982950e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractProxyModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractProxyModel.cc @@ -76,8 +76,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractProxyModel *)cls)->data (arg1, arg2)); } @@ -96,7 +96,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractProxyModel *)cls)->flags (arg1)); } @@ -119,9 +119,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QAbstractProxyModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -140,7 +140,7 @@ static void _call_f_itemData_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractProxyModel *)cls)->itemData (arg1)); } @@ -159,7 +159,7 @@ static void _call_f_mapFromSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel *)cls)->mapFromSource (arg1)); } @@ -178,7 +178,7 @@ static void _call_f_mapSelectionFromSource_c2727 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QAbstractProxyModel *)cls)->mapSelectionFromSource (arg1)); } @@ -197,7 +197,7 @@ static void _call_f_mapSelectionToSource_c2727 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QAbstractProxyModel *)cls)->mapSelectionToSource (arg1)); } @@ -216,7 +216,7 @@ static void _call_f_mapToSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel *)cls)->mapToSource (arg1)); } @@ -255,9 +255,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractProxyModel *)cls)->setData (arg1, arg2, arg3)); } @@ -282,10 +282,10 @@ static void _call_f_setHeaderData_5242 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(Qt::EditRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractProxyModel *)cls)->setHeaderData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -304,7 +304,7 @@ static void _call_f_setSourceModel_2419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel *)cls)->setSourceModel (arg1); } @@ -356,8 +356,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractProxyModel::tr (arg1, arg2)); } @@ -380,9 +380,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractProxyModel::tr (arg1, arg2, arg3)); } @@ -403,8 +403,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractProxyModel::trUtf8 (arg1, arg2)); } @@ -427,9 +427,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractProxyModel::trUtf8 (arg1, arg2, arg3)); } @@ -1304,7 +1304,7 @@ static void _call_ctor_QAbstractProxyModel_Adaptor_1302 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractProxyModel_Adaptor (arg1)); } @@ -1326,9 +1326,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1351,9 +1351,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1380,11 +1380,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1410,11 +1410,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1436,9 +1436,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1461,9 +1461,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -1545,8 +1545,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_changePersistentIndex_4682 (arg1, arg2); } @@ -1567,8 +1567,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -1638,9 +1638,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -1662,9 +1662,9 @@ static void _call_fp_createIndex_c2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_createIndex_c2085 (arg1, arg2, arg3)); } @@ -1686,9 +1686,9 @@ static void _call_fp_createIndex_c2416 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quint32 arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quint32 arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_createIndex_c2416 (arg1, arg2, arg3)); } @@ -1758,8 +1758,8 @@ static void _call_emitter_dataChanged_4682 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QAbstractProxyModel_Adaptor *)cls)->emitter_QAbstractProxyModel_dataChanged_4682 (arg1, arg2); } @@ -1783,10 +1783,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -1804,7 +1804,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractProxyModel_Adaptor *)cls)->emitter_QAbstractProxyModel_destroyed_1302 (arg1); } @@ -1883,8 +1883,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_encodeData_c4599 (arg1, arg2); } @@ -2160,9 +2160,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QAbstractProxyModel_Adaptor *)cls)->emitter_QAbstractProxyModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2524,7 +2524,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_receivers_c1731 (arg1)); } @@ -2759,7 +2759,7 @@ static void _call_fp_setRoleNames_3419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHash &arg1 = args.read & > (heap); + const QHash &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_setRoleNames_3419 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractScrollArea.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractScrollArea.cc index 48fc8ab93..6a702317d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractScrollArea.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractScrollArea.cc @@ -114,8 +114,8 @@ static void _call_f_addScrollBarWidget_3957 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->addScrollBarWidget (arg1, arg2); } @@ -210,7 +210,7 @@ static void _call_f_scrollBarWidgets_2750 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write > ((QList)((QAbstractScrollArea *)cls)->scrollBarWidgets (arg1)); } @@ -229,7 +229,7 @@ static void _call_f_setCornerWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->setCornerWidget (arg1); } @@ -249,7 +249,7 @@ static void _call_f_setHorizontalScrollBar_1603 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScrollBar *arg1 = args.read (heap); + QScrollBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->setHorizontalScrollBar (arg1); } @@ -269,7 +269,7 @@ static void _call_f_setHorizontalScrollBarPolicy_2273 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->setHorizontalScrollBarPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -289,7 +289,7 @@ static void _call_f_setVerticalScrollBar_1603 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScrollBar *arg1 = args.read (heap); + QScrollBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->setVerticalScrollBar (arg1); } @@ -309,7 +309,7 @@ static void _call_f_setVerticalScrollBarPolicy_2273 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->setVerticalScrollBarPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -329,7 +329,7 @@ static void _call_f_setViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->setViewport (arg1); } @@ -411,8 +411,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractScrollArea::tr (arg1, arg2)); } @@ -435,9 +435,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractScrollArea::tr (arg1, arg2, arg3)); } @@ -458,8 +458,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractScrollArea::trUtf8 (arg1, arg2)); } @@ -482,9 +482,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractScrollArea::trUtf8 (arg1, arg2, arg3)); } @@ -1407,7 +1407,7 @@ static void _call_ctor_QAbstractScrollArea_Adaptor_1315 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractScrollArea_Adaptor (arg1)); } @@ -1549,9 +1549,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->fp_QAbstractScrollArea_create_2208 (arg1, arg2, arg3); } @@ -1570,7 +1570,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QAbstractScrollArea_Adaptor *)cls)->emitter_QAbstractScrollArea_customContextMenuRequested_1916 (arg1); } @@ -1614,8 +1614,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->fp_QAbstractScrollArea_destroy_1620 (arg1, arg2); } @@ -1634,7 +1634,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractScrollArea_Adaptor *)cls)->emitter_QAbstractScrollArea_destroyed_1302 (arg1); } @@ -1748,7 +1748,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->fp_QAbstractScrollArea_drawFrame_1426 (arg1); } @@ -2426,7 +2426,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractScrollArea_Adaptor *)cls)->fp_QAbstractScrollArea_receivers_c1731 (arg1)); } @@ -2530,10 +2530,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->fp_QAbstractScrollArea_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -2552,7 +2552,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->fp_QAbstractScrollArea_setViewportMargins_2115 (arg1); } @@ -2595,7 +2595,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->fp_QAbstractScrollArea_setupViewport_1315 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSlider.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSlider.cc index da148efd0..2ca1e75eb 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSlider.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSlider.cc @@ -231,7 +231,7 @@ static void _call_f_setInvertedAppearance_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setInvertedAppearance (arg1); } @@ -251,7 +251,7 @@ static void _call_f_setInvertedControls_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setInvertedControls (arg1); } @@ -271,7 +271,7 @@ static void _call_f_setMaximum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setMaximum (arg1); } @@ -291,7 +291,7 @@ static void _call_f_setMinimum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setMinimum (arg1); } @@ -311,7 +311,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -331,7 +331,7 @@ static void _call_f_setPageStep_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setPageStep (arg1); } @@ -353,8 +353,8 @@ static void _call_f_setRange_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setRange (arg1, arg2); } @@ -374,7 +374,7 @@ static void _call_f_setSingleStep_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setSingleStep (arg1); } @@ -394,7 +394,7 @@ static void _call_f_setSliderDown_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setSliderDown (arg1); } @@ -414,7 +414,7 @@ static void _call_f_setSliderPosition_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setSliderPosition (arg1); } @@ -434,7 +434,7 @@ static void _call_f_setTracking_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setTracking (arg1); } @@ -454,7 +454,7 @@ static void _call_f_setValue_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setValue (arg1); } @@ -504,7 +504,7 @@ static void _call_f_triggerAction_3281 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->triggerAction (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -541,8 +541,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractSlider::tr (arg1, arg2)); } @@ -565,9 +565,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractSlider::tr (arg1, arg2, arg3)); } @@ -588,8 +588,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractSlider::trUtf8 (arg1, arg2)); } @@ -612,9 +612,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractSlider::trUtf8 (arg1, arg2, arg3)); } @@ -1560,7 +1560,7 @@ static void _call_ctor_QAbstractSlider_Adaptor_1315 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractSlider_Adaptor (arg1)); } @@ -1602,7 +1602,7 @@ static void _call_emitter_actionTriggered_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QAbstractSlider_Adaptor *)cls)->emitter_QAbstractSlider_actionTriggered_767 (arg1); } @@ -1720,9 +1720,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->fp_QAbstractSlider_create_2208 (arg1, arg2, arg3); } @@ -1741,7 +1741,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QAbstractSlider_Adaptor *)cls)->emitter_QAbstractSlider_customContextMenuRequested_1916 (arg1); } @@ -1785,8 +1785,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->fp_QAbstractSlider_destroy_1620 (arg1, arg2); } @@ -1805,7 +1805,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractSlider_Adaptor *)cls)->emitter_QAbstractSlider_destroyed_1302 (arg1); } @@ -2580,8 +2580,8 @@ static void _call_emitter_rangeChanged_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QAbstractSlider_Adaptor *)cls)->emitter_QAbstractSlider_rangeChanged_1426 (arg1, arg2); } @@ -2599,7 +2599,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractSlider_Adaptor *)cls)->fp_QAbstractSlider_receivers_c1731 (arg1)); } @@ -2688,9 +2688,9 @@ static void _call_fp_setRepeatAction_4599 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args ? args.read (heap) : (int)(500); - int arg3 = args ? args.read (heap) : (int)(50); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (500, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->fp_QAbstractSlider_setRepeatAction_4599 (arg1, arg2, arg3); } @@ -2800,7 +2800,7 @@ static void _call_emitter_sliderMoved_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QAbstractSlider_Adaptor *)cls)->emitter_QAbstractSlider_sliderMoved_767 (arg1); } @@ -2933,7 +2933,7 @@ static void _call_emitter_valueChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QAbstractSlider_Adaptor *)cls)->emitter_QAbstractSlider_valueChanged_767 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSpinBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSpinBox.cc index 8149081ef..99d4c3e64 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSpinBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractSpinBox.cc @@ -174,7 +174,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSpinBox *)cls)->event (arg1)); } @@ -193,7 +193,7 @@ static void _call_f_fixup_c1330 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->fixup (arg1); } @@ -243,7 +243,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractSpinBox *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -354,7 +354,7 @@ static void _call_f_setAccelerated_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setAccelerated (arg1); } @@ -374,7 +374,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setAlignment (arg1); } @@ -394,7 +394,7 @@ static void _call_f_setButtonSymbols_3541 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setButtonSymbols (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -414,7 +414,7 @@ static void _call_f_setCorrectionMode_3597 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setCorrectionMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -434,7 +434,7 @@ static void _call_f_setFrame_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setFrame (arg1); } @@ -454,7 +454,7 @@ static void _call_f_setKeyboardTracking_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setKeyboardTracking (arg1); } @@ -474,7 +474,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setReadOnly (arg1); } @@ -494,7 +494,7 @@ static void _call_f_setSpecialValueText_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setSpecialValueText (arg1); } @@ -514,7 +514,7 @@ static void _call_f_setWrapping_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setWrapping (arg1); } @@ -564,7 +564,7 @@ static void _call_f_stepBy_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->stepBy (arg1); } @@ -633,8 +633,8 @@ static void _call_f_validate_c2171 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QAbstractSpinBox *)cls)->validate (arg1, arg2))); } @@ -670,8 +670,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractSpinBox::tr (arg1, arg2)); } @@ -694,9 +694,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractSpinBox::tr (arg1, arg2, arg3)); } @@ -717,8 +717,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractSpinBox::trUtf8 (arg1, arg2)); } @@ -741,9 +741,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractSpinBox::trUtf8 (arg1, arg2, arg3)); } @@ -1731,7 +1731,7 @@ static void _call_ctor_QAbstractSpinBox_Adaptor_1315 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractSpinBox_Adaptor (arg1)); } @@ -1893,9 +1893,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->fp_QAbstractSpinBox_create_2208 (arg1, arg2, arg3); } @@ -1914,7 +1914,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QAbstractSpinBox_Adaptor *)cls)->emitter_QAbstractSpinBox_customContextMenuRequested_1916 (arg1); } @@ -1958,8 +1958,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->fp_QAbstractSpinBox_destroy_1620 (arg1, arg2); } @@ -1978,7 +1978,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractSpinBox_Adaptor *)cls)->emitter_QAbstractSpinBox_destroyed_1302 (arg1); } @@ -2421,7 +2421,7 @@ static void _call_fp_initStyleOption_c2572 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->fp_QAbstractSpinBox_initStyleOption_c2572 (arg1); } @@ -2822,7 +2822,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractSpinBox_Adaptor *)cls)->fp_QAbstractSpinBox_receivers_c1731 (arg1)); } @@ -2893,7 +2893,7 @@ static void _call_fp_setLineEdit_1485 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLineEdit *arg1 = args.read (heap); + QLineEdit *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->fp_QAbstractSpinBox_setLineEdit_1485 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractTextDocumentLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractTextDocumentLayout.cc index 73f7b445c..2297b14bf 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAbstractTextDocumentLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAbstractTextDocumentLayout.cc @@ -80,7 +80,7 @@ static void _call_f_anchorAt_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAbstractTextDocumentLayout *)cls)->anchorAt (arg1)); } @@ -99,7 +99,7 @@ static void _call_f_blockBoundingRect_c2306 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QAbstractTextDocumentLayout *)cls)->blockBoundingRect (arg1)); } @@ -150,8 +150,8 @@ static void _call_f_draw_6787 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QAbstractTextDocumentLayout::PaintContext &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QAbstractTextDocumentLayout::PaintContext &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout *)cls)->draw (arg1, arg2); } @@ -171,7 +171,7 @@ static void _call_f_frameBoundingRect_c1615 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextFrame *arg1 = args.read (heap); + QTextFrame *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QAbstractTextDocumentLayout *)cls)->frameBoundingRect (arg1)); } @@ -190,7 +190,7 @@ static void _call_f_handlerForObject_c767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextObjectInterface *)((QAbstractTextDocumentLayout *)cls)->handlerForObject (arg1)); } @@ -211,8 +211,8 @@ static void _call_f_hitTest_c4147 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractTextDocumentLayout *)cls)->hitTest (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -263,8 +263,8 @@ static void _call_f_registerHandler_1961 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout *)cls)->registerHandler (arg1, arg2); } @@ -284,7 +284,7 @@ static void _call_f_setPaintDevice_1803 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout *)cls)->setPaintDevice (arg1); } @@ -306,8 +306,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractTextDocumentLayout::tr (arg1, arg2)); } @@ -330,9 +330,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractTextDocumentLayout::tr (arg1, arg2, arg3)); } @@ -353,8 +353,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractTextDocumentLayout::trUtf8 (arg1, arg2)); } @@ -377,9 +377,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractTextDocumentLayout::trUtf8 (arg1, arg2, arg3)); } @@ -769,7 +769,7 @@ static void _call_ctor_QAbstractTextDocumentLayout_Adaptor_1955 (const qt_gsi::G { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QAbstractTextDocumentLayout_Adaptor (arg1)); } @@ -858,7 +858,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractTextDocumentLayout_Adaptor *)cls)->emitter_QAbstractTextDocumentLayout_destroyed_1302 (arg1); } @@ -949,7 +949,7 @@ static void _call_emitter_documentSizeChanged_1875 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); ((QAbstractTextDocumentLayout_Adaptor *)cls)->emitter_QAbstractTextDocumentLayout_documentSizeChanged_1875 (arg1); } @@ -1079,7 +1079,7 @@ static void _call_fp_format_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCharFormat)((QAbstractTextDocumentLayout_Adaptor *)cls)->fp_QAbstractTextDocumentLayout_format_767 (arg1)); } @@ -1097,7 +1097,7 @@ static void _call_fp_formatIndex_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractTextDocumentLayout_Adaptor *)cls)->fp_QAbstractTextDocumentLayout_formatIndex_767 (arg1)); } @@ -1183,7 +1183,7 @@ static void _call_emitter_pageCountChanged_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QAbstractTextDocumentLayout_Adaptor *)cls)->emitter_QAbstractTextDocumentLayout_pageCountChanged_767 (arg1); } @@ -1231,7 +1231,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractTextDocumentLayout_Adaptor *)cls)->fp_QAbstractTextDocumentLayout_receivers_c1731 (arg1)); } @@ -1317,7 +1317,7 @@ static void _call_emitter_update_1862 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args ? args.read (heap) : (const QRectF &)(QRectF(0., 0., 1000000000., 1000000000.)); + const QRectF &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(0., 0., 1000000000., 1000000000.), heap); ((QAbstractTextDocumentLayout_Adaptor *)cls)->emitter_QAbstractTextDocumentLayout_update_1862 (arg1); } @@ -1335,7 +1335,7 @@ static void _call_emitter_updateBlock_2306 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ((QAbstractTextDocumentLayout_Adaptor *)cls)->emitter_QAbstractTextDocumentLayout_updateBlock_2306 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAccessible.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAccessible.cc index feb310c39..7ad54f800 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAccessible.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAccessible.cc @@ -98,7 +98,7 @@ static void _call_f_queryAccessibleInterface_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAccessibleInterface *)QAccessible::queryAccessibleInterface (arg1)); } @@ -117,7 +117,7 @@ static void _call_f_setRootObject_1302 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QAccessible::setRootObject (arg1); } @@ -141,9 +141,9 @@ static void _call_f_updateAccessibility_4006 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QAccessible::updateAccessibility (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref()); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleApplication.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleApplication.cc index 8892d9ab3..86a0e8747 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleApplication.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleApplication.cc @@ -58,9 +58,9 @@ static void _call_f_actionText_c3378 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleApplication *)cls)->actionText (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -81,8 +81,8 @@ static void _call_f_childAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleApplication *)cls)->childAt (arg1, arg2)); } @@ -120,9 +120,9 @@ static void _call_f_doAction_4052 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QList &arg3 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAccessibleApplication *)cls)->doAction (arg1, arg2, arg3)); } @@ -141,7 +141,7 @@ static void _call_f_indexOfChild_c3317 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAccessibleInterface *arg1 = args.read (heap); + const QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleApplication *)cls)->indexOfChild (arg1)); } @@ -164,9 +164,9 @@ static void _call_f_relationTo_c4635 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QAccessibleInterface *arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QAccessibleInterface *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAccessibleApplication *)cls)->relationTo (arg1, arg2, arg3)); } @@ -185,7 +185,7 @@ static void _call_f_role_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QAccessibleApplication *)cls)->role (arg1))); } @@ -204,7 +204,7 @@ static void _call_f_state_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAccessibleApplication *)cls)->state (arg1)); } @@ -225,8 +225,8 @@ static void _call_f_text_c2719 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleApplication *)cls)->text (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -245,7 +245,7 @@ static void _call_f_userActionCount_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleApplication *)cls)->userActionCount (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleEvent.cc index 3671b79d8..281a9ac87 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleEvent.cc @@ -52,8 +52,8 @@ static void _call_ctor_QAccessibleEvent_2224 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QAccessibleEvent (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -87,7 +87,7 @@ static void _call_f_setValue_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleEvent *)cls)->setValue (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleInterface.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleInterface.cc index 673d720a9..c639211b8 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleInterface.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleInterface.cc @@ -57,9 +57,9 @@ static void _call_f_actionText_c3378 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleInterface *)cls)->actionText (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -95,8 +95,8 @@ static void _call_f_childAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleInterface *)cls)->childAt (arg1, arg2)); } @@ -134,9 +134,9 @@ static void _call_f_doAction_4052 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QList &arg3 = args ? args.read & > (heap) : (const QList &)(QVariantList()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVariantList(), heap); ret.write ((bool)((QAccessibleInterface *)cls)->doAction (arg1, arg2, arg3)); } @@ -170,7 +170,7 @@ static void _call_f_indexOfChild_c3317 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAccessibleInterface *arg1 = args.read (heap); + const QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleInterface *)cls)->indexOfChild (arg1)); } @@ -193,9 +193,9 @@ static void _call_f_invokeMethod_5533 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args ? args.read (heap) : (int)(0); - const QList &arg3 = args ? args.read & > (heap) : (const QList &)(QVariantList()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QList &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVariantList(), heap); ret.write ((QVariant)((QAccessibleInterface *)cls)->invokeMethod (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -244,7 +244,7 @@ static void _call_f_rect_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QAccessibleInterface *)cls)->rect (arg1)); } @@ -267,9 +267,9 @@ static void _call_f_relationTo_c4635 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QAccessibleInterface *arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QAccessibleInterface *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAccessibleInterface *)cls)->relationTo (arg1, arg2, arg3)); } @@ -288,7 +288,7 @@ static void _call_f_role_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QAccessibleInterface *)cls)->role (arg1))); } @@ -311,9 +311,9 @@ static void _call_f_setText_4636 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleInterface *)cls)->setText (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3); } @@ -333,7 +333,7 @@ static void _call_f_state_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAccessibleInterface *)cls)->state (arg1)); } @@ -369,8 +369,8 @@ static void _call_f_text_c2719 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleInterface *)cls)->text (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -389,7 +389,7 @@ static void _call_f_userActionCount_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleInterface *)cls)->userActionCount (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleObject.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleObject.cc index 2690bb202..c539ea29e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleObject.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleObject.cc @@ -58,9 +58,9 @@ static void _call_f_actionText_c3378 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleObject *)cls)->actionText (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -83,9 +83,9 @@ static void _call_f_doAction_4052 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QList &arg3 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAccessibleObject *)cls)->doAction (arg1, arg2, arg3)); } @@ -134,7 +134,7 @@ static void _call_f_rect_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QAccessibleObject *)cls)->rect (arg1)); } @@ -157,9 +157,9 @@ static void _call_f_setText_4636 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleObject *)cls)->setText (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3); } @@ -179,7 +179,7 @@ static void _call_f_userActionCount_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleObject *)cls)->userActionCount (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleWidget.cc index ec5e964de..8f35a41f7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAccessibleWidget.cc @@ -59,9 +59,9 @@ static void _call_ctor_QAccessibleWidget_5165 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAccessible::Client)); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAccessible::Client), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QAccessibleWidget (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -84,9 +84,9 @@ static void _call_f_actionText_c3378 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleWidget *)cls)->actionText (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -107,8 +107,8 @@ static void _call_f_childAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleWidget *)cls)->childAt (arg1, arg2)); } @@ -146,9 +146,9 @@ static void _call_f_doAction_4052 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QList &arg3 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAccessibleWidget *)cls)->doAction (arg1, arg2, arg3)); } @@ -167,7 +167,7 @@ static void _call_f_indexOfChild_c3317 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAccessibleInterface *arg1 = args.read (heap); + const QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleWidget *)cls)->indexOfChild (arg1)); } @@ -186,7 +186,7 @@ static void _call_f_rect_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QAccessibleWidget *)cls)->rect (arg1)); } @@ -209,9 +209,9 @@ static void _call_f_relationTo_c4635 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QAccessibleInterface *arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QAccessibleInterface *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAccessibleWidget *)cls)->relationTo (arg1, arg2, arg3)); } @@ -230,7 +230,7 @@ static void _call_f_role_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QAccessibleWidget *)cls)->role (arg1))); } @@ -249,7 +249,7 @@ static void _call_f_state_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAccessibleWidget *)cls)->state (arg1)); } @@ -270,8 +270,8 @@ static void _call_f_text_c2719 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleWidget *)cls)->text (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -290,7 +290,7 @@ static void _call_f_userActionCount_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleWidget *)cls)->userActionCount (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQAction.cc b/src/gsiqt/qt4/QtGui/gsiDeclQAction.cc index 6f1362d2a..a5719eef4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQAction.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQAction.cc @@ -80,7 +80,7 @@ static void _call_f_activate_2359 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->activate (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -371,7 +371,7 @@ static void _call_f_setActionGroup_1834 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionGroup *arg1 = args.read (heap); + QActionGroup *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setActionGroup (arg1); } @@ -391,7 +391,7 @@ static void _call_f_setAutoRepeat_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setAutoRepeat (arg1); } @@ -411,7 +411,7 @@ static void _call_f_setCheckable_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setCheckable (arg1); } @@ -431,7 +431,7 @@ static void _call_f_setChecked_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setChecked (arg1); } @@ -451,7 +451,7 @@ static void _call_f_setData_2119 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setData (arg1); } @@ -471,7 +471,7 @@ static void _call_f_setDisabled_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setDisabled (arg1); } @@ -491,7 +491,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setEnabled (arg1); } @@ -511,7 +511,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setFont (arg1); } @@ -531,7 +531,7 @@ static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setIcon (arg1); } @@ -551,7 +551,7 @@ static void _call_f_setIconText_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setIconText (arg1); } @@ -571,7 +571,7 @@ static void _call_f_setIconVisibleInMenu_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setIconVisibleInMenu (arg1); } @@ -591,7 +591,7 @@ static void _call_f_setMenu_1108 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenu *arg1 = args.read (heap); + QMenu *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setMenu (arg1); } @@ -611,7 +611,7 @@ static void _call_f_setMenuRole_2046 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setMenuRole (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -631,7 +631,7 @@ static void _call_f_setPriority_2105 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setPriority (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -651,7 +651,7 @@ static void _call_f_setSeparator_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setSeparator (arg1); } @@ -671,7 +671,7 @@ static void _call_f_setShortcut_2516 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setShortcut (arg1); } @@ -691,7 +691,7 @@ static void _call_f_setShortcutContext_2350 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setShortcutContext (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -711,7 +711,7 @@ static void _call_f_setShortcuts_3131 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setShortcuts (arg1); } @@ -731,7 +731,7 @@ static void _call_f_setShortcuts_2869 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setShortcuts (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -751,7 +751,7 @@ static void _call_f_setSoftKeyRole_2350 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setSoftKeyRole (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -771,7 +771,7 @@ static void _call_f_setStatusTip_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setStatusTip (arg1); } @@ -791,7 +791,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setText (arg1); } @@ -811,7 +811,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setToolTip (arg1); } @@ -831,7 +831,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setVisible (arg1); } @@ -851,7 +851,7 @@ static void _call_f_setWhatsThis_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setWhatsThis (arg1); } @@ -916,7 +916,7 @@ static void _call_f_showStatusText_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QAction *)cls)->showStatusText (arg1)); } @@ -1044,8 +1044,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAction::tr (arg1, arg2)); } @@ -1068,9 +1068,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAction::tr (arg1, arg2, arg3)); } @@ -1091,8 +1091,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAction::trUtf8 (arg1, arg2)); } @@ -1115,9 +1115,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAction::trUtf8 (arg1, arg2, arg3)); } @@ -1384,7 +1384,7 @@ static void _call_ctor_QAction_Adaptor_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QAction_Adaptor (arg1)); } @@ -1404,8 +1404,8 @@ static void _call_ctor_QAction_Adaptor_3219 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); ret.write (new QAction_Adaptor (arg1, arg2)); } @@ -1427,9 +1427,9 @@ static void _call_ctor_QAction_Adaptor_4898 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QObject *arg3 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QObject *arg3 = gsi::arg_reader() (args, heap); ret.write (new QAction_Adaptor (arg1, arg2, arg3)); } @@ -1509,7 +1509,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAction_Adaptor *)cls)->emitter_QAction_destroyed_1302 (arg1); } @@ -1614,7 +1614,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAction_Adaptor *)cls)->fp_QAction_receivers_c1731 (arg1)); } @@ -1670,7 +1670,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QAction_Adaptor *)cls)->emitter_QAction_toggled_864 (arg1); } @@ -1688,7 +1688,7 @@ static void _call_emitter_triggered_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QAction_Adaptor *)cls)->emitter_QAction_triggered_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQActionEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQActionEvent.cc index 56f31571f..f1d1fceac 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQActionEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQActionEvent.cc @@ -128,9 +128,9 @@ static void _call_ctor_QActionEvent_Adaptor_3169 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QAction *arg2 = args.read (heap); - QAction *arg3 = args ? args.read (heap) : (QAction *)(0); + int arg1 = gsi::arg_reader() (args, heap); + QAction *arg2 = gsi::arg_reader() (args, heap); + QAction *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QActionEvent_Adaptor (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQActionGroup.cc b/src/gsiqt/qt4/QtGui/gsiDeclQActionGroup.cc index 57f448de3..4273c44d1 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQActionGroup.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQActionGroup.cc @@ -85,7 +85,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QActionGroup *)cls)->addAction (arg1)); } @@ -104,7 +104,7 @@ static void _call_f_addAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QActionGroup *)cls)->addAction (arg1)); } @@ -125,8 +125,8 @@ static void _call_f_addAction_3704 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QActionGroup *)cls)->addAction (arg1, arg2)); } @@ -205,7 +205,7 @@ static void _call_f_removeAction_1309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup *)cls)->removeAction (arg1); } @@ -225,7 +225,7 @@ static void _call_f_setDisabled_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup *)cls)->setDisabled (arg1); } @@ -245,7 +245,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup *)cls)->setEnabled (arg1); } @@ -265,7 +265,7 @@ static void _call_f_setExclusive_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup *)cls)->setExclusive (arg1); } @@ -285,7 +285,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup *)cls)->setVisible (arg1); } @@ -307,8 +307,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QActionGroup::tr (arg1, arg2)); } @@ -331,9 +331,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QActionGroup::tr (arg1, arg2, arg3)); } @@ -354,8 +354,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QActionGroup::trUtf8 (arg1, arg2)); } @@ -378,9 +378,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QActionGroup::trUtf8 (arg1, arg2, arg3)); } @@ -585,7 +585,7 @@ static void _call_ctor_QActionGroup_Adaptor_1302 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QActionGroup_Adaptor (arg1)); } @@ -651,7 +651,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QActionGroup_Adaptor *)cls)->emitter_QActionGroup_destroyed_1302 (arg1); } @@ -742,7 +742,7 @@ static void _call_emitter_hovered_1309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QActionGroup_Adaptor *)cls)->emitter_QActionGroup_hovered_1309 (arg1); } @@ -760,7 +760,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QActionGroup_Adaptor *)cls)->fp_QActionGroup_receivers_c1731 (arg1)); } @@ -778,7 +778,7 @@ static void _call_emitter_selected_1309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QActionGroup_Adaptor *)cls)->emitter_QActionGroup_selected_1309 (arg1); } @@ -834,7 +834,7 @@ static void _call_emitter_triggered_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QActionGroup_Adaptor *)cls)->emitter_QActionGroup_triggered_1309 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQApplication.cc b/src/gsiqt/qt4/QtGui/gsiDeclQApplication.cc index f7cfddff2..efbe0c9b6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQApplication.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQApplication.cc @@ -102,8 +102,8 @@ static void _call_f_notify_2411 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QApplication *)cls)->notify (arg1, arg2)); } @@ -122,7 +122,7 @@ static void _call_f_setAutoSipEnabled_1559 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const bool arg1 = args.read (heap); + const bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication *)cls)->setAutoSipEnabled (arg1); } @@ -142,7 +142,7 @@ static void _call_f_setInputContext_1972 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputContext *arg1 = args.read (heap); + QInputContext *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication *)cls)->setInputContext (arg1); } @@ -162,7 +162,7 @@ static void _call_f_setStyleSheet_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication *)cls)->setStyleSheet (arg1); } @@ -260,8 +260,8 @@ static void _call_f_alert_1974 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::alert (arg1, arg2); } @@ -312,7 +312,7 @@ static void _call_f_changeOverrideCursor_2032 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCursor &arg1 = args.read (heap); + const QCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::changeOverrideCursor (arg1); } @@ -483,7 +483,7 @@ static void _call_f_font_2010 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QFont)QApplication::font (arg1)); } @@ -502,7 +502,7 @@ static void _call_f_font_1731 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QFont)QApplication::font (arg1)); } @@ -551,7 +551,7 @@ static void _call_f_isEffectEnabled_1496 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)QApplication::isEffectEnabled (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -720,7 +720,7 @@ static void _call_f_palette_2010 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPalette)QApplication::palette (arg1)); } @@ -739,7 +739,7 @@ static void _call_f_palette_1731 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPalette)QApplication::palette (arg1)); } @@ -789,7 +789,7 @@ static void _call_f_setActiveWindow_1315 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setActiveWindow (arg1); } @@ -809,7 +809,7 @@ static void _call_f_setColorSpec_767 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setColorSpec (arg1); } @@ -829,7 +829,7 @@ static void _call_f_setCursorFlashTime_767 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setCursorFlashTime (arg1); } @@ -849,7 +849,7 @@ static void _call_f_setDesktopSettingsAware_864 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setDesktopSettingsAware (arg1); } @@ -869,7 +869,7 @@ static void _call_f_setDoubleClickInterval_767 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setDoubleClickInterval (arg1); } @@ -891,8 +891,8 @@ static void _call_f_setEffectEnabled_2252 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setEffectEnabled (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -914,8 +914,8 @@ static void _call_f_setFont_3424 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QFont &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setFont (arg1, arg2); } @@ -935,7 +935,7 @@ static void _call_f_setGlobalStrut_1805 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setGlobalStrut (arg1); } @@ -955,7 +955,7 @@ static void _call_f_setGraphicsSystem_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setGraphicsSystem (arg1); } @@ -975,7 +975,7 @@ static void _call_f_setKeyboardInputInterval_767 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setKeyboardInputInterval (arg1); } @@ -995,7 +995,7 @@ static void _call_f_setLayoutDirection_2316 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setLayoutDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1015,7 +1015,7 @@ static void _call_f_setOverrideCursor_2032 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCursor &arg1 = args.read (heap); + const QCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setOverrideCursor (arg1); } @@ -1037,8 +1037,8 @@ static void _call_f_setPalette_3736 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QPalette &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setPalette (arg1, arg2); } @@ -1058,7 +1058,7 @@ static void _call_f_setQuitOnLastWindowClosed_864 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setQuitOnLastWindowClosed (arg1); } @@ -1078,7 +1078,7 @@ static void _call_f_setStartDragDistance_767 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setStartDragDistance (arg1); } @@ -1098,7 +1098,7 @@ static void _call_f_setStartDragTime_767 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setStartDragTime (arg1); } @@ -1118,7 +1118,7 @@ static void _call_f_setStyle_1232 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle *arg1 = args.read (heap); + QStyle *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setStyle (arg1); } @@ -1138,7 +1138,7 @@ static void _call_f_setStyle_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyle *)QApplication::setStyle (arg1)); } @@ -1157,7 +1157,7 @@ static void _call_f_setWheelScrollLines_767 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setWheelScrollLines (arg1); } @@ -1177,7 +1177,7 @@ static void _call_f_setWindowIcon_1787 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setWindowIcon (arg1); } @@ -1258,7 +1258,7 @@ static void _call_f_topLevelAt_1916 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)QApplication::topLevelAt (arg1)); } @@ -1279,8 +1279,8 @@ static void _call_f_topLevelAt_1426 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)QApplication::topLevelAt (arg1, arg2)); } @@ -1316,8 +1316,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QApplication::tr (arg1, arg2)); } @@ -1340,9 +1340,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QApplication::tr (arg1, arg2, arg3)); } @@ -1363,8 +1363,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QApplication::trUtf8 (arg1, arg2)); } @@ -1387,9 +1387,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QApplication::trUtf8 (arg1, arg2, arg3)); } @@ -1438,7 +1438,7 @@ static void _call_f_widgetAt_1916 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)QApplication::widgetAt (arg1)); } @@ -1459,8 +1459,8 @@ static void _call_f_widgetAt_1426 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)QApplication::widgetAt (arg1, arg2)); } @@ -1850,7 +1850,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QApplication_Adaptor *)cls)->emitter_QApplication_destroyed_1302 (arg1); } @@ -1943,8 +1943,8 @@ static void _call_emitter_focusChanged_2522 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ((QApplication_Adaptor *)cls)->emitter_QApplication_focusChanged_2522 (arg1, arg2); } @@ -2016,7 +2016,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QApplication_Adaptor *)cls)->fp_QApplication_receivers_c1731 (arg1)); } @@ -2072,7 +2072,7 @@ static void _call_emitter_unixSignal_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QApplication_Adaptor *)cls)->emitter_QApplication_unixSignal_767 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQBitmap.cc b/src/gsiqt/qt4/QtGui/gsiDeclQBitmap.cc index 59c403bd3..9c5f00292 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQBitmap.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQBitmap.cc @@ -78,7 +78,7 @@ static void _call_f_operator_eq__2017 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); ret.write ((QBitmap &)((QBitmap *)cls)->operator= (arg1)); } @@ -97,7 +97,7 @@ static void _call_f_transformed_c2023 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write ((QBitmap)((QBitmap *)cls)->transformed (arg1)); } @@ -116,7 +116,7 @@ static void _call_f_transformed_c2350 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((QBitmap)((QBitmap *)cls)->transformed (arg1)); } @@ -139,9 +139,9 @@ static void _call_f_fromData_6058 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const unsigned char *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QImage::Format_MonoLSB)); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const unsigned char *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QImage::Format_MonoLSB), heap); ret.write ((QBitmap)QBitmap::fromData (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -162,8 +162,8 @@ static void _call_f_fromImage_5137 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QImage &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((QBitmap)QBitmap::fromImage (arg1, arg2)); } @@ -298,7 +298,7 @@ static void _call_ctor_QBitmap_Adaptor_2017 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); ret.write (new QBitmap_Adaptor (arg1)); } @@ -318,8 +318,8 @@ static void _call_ctor_QBitmap_Adaptor_1426 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QBitmap_Adaptor (arg1, arg2)); } @@ -337,7 +337,7 @@ static void _call_ctor_QBitmap_Adaptor_1805 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ret.write (new QBitmap_Adaptor (arg1)); } @@ -357,8 +357,8 @@ static void _call_ctor_QBitmap_Adaptor_3648 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QBitmap_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc index 086195f8f..a05bae134 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQBoxLayout.cc @@ -75,7 +75,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addItem (arg1); } @@ -97,9 +97,9 @@ static void _call_f_addLayout_2000 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); - int arg2 = args ? args.read (heap) : (int)(0); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addLayout (arg1, arg2); } @@ -119,7 +119,7 @@ static void _call_f_addSpacerItem_1708 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSpacerItem *arg1 = args.read (heap); + QSpacerItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addSpacerItem (arg1); } @@ -139,7 +139,7 @@ static void _call_f_addSpacing_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addSpacing (arg1); } @@ -159,7 +159,7 @@ static void _call_f_addStretch_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addStretch (arg1); } @@ -179,7 +179,7 @@ static void _call_f_addStrut_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addStrut (arg1); } @@ -203,9 +203,9 @@ static void _call_f_addWidget_4616 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addWidget (arg1, arg2, arg3); } @@ -285,7 +285,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout *)cls)->heightForWidth (arg1)); } @@ -308,9 +308,9 @@ static void _call_f_insertLayout_2659 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QLayout *arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + QLayout *arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->insertLayout (arg1, arg2, arg3); } @@ -332,8 +332,8 @@ static void _call_f_insertSpacerItem_2367 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QSpacerItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QSpacerItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->insertSpacerItem (arg1, arg2); } @@ -355,8 +355,8 @@ static void _call_f_insertSpacing_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->insertSpacing (arg1, arg2); } @@ -378,8 +378,8 @@ static void _call_f_insertStretch_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->insertStretch (arg1, arg2); } @@ -405,10 +405,10 @@ static void _call_f_insertWidget_5275 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(0); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->insertWidget (arg1, arg2, arg3, arg4); } @@ -444,7 +444,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QBoxLayout *)cls)->itemAt (arg1)); } @@ -478,7 +478,7 @@ static void _call_f_minimumHeightForWidth_c767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout *)cls)->minimumHeightForWidth (arg1)); } @@ -512,7 +512,7 @@ static void _call_f_setDirection_2497 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->setDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -532,7 +532,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->setGeometry (arg1); } @@ -552,7 +552,7 @@ static void _call_f_setSpacing_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->setSpacing (arg1); } @@ -574,8 +574,8 @@ static void _call_f_setStretch_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->setStretch (arg1, arg2); } @@ -597,8 +597,8 @@ static void _call_f_setStretchFactor_1974 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBoxLayout *)cls)->setStretchFactor (arg1, arg2)); } @@ -619,8 +619,8 @@ static void _call_f_setStretchFactor_2000 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); - int arg2 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBoxLayout *)cls)->setStretchFactor (arg1, arg2)); } @@ -669,7 +669,7 @@ static void _call_f_stretch_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout *)cls)->stretch (arg1)); } @@ -688,7 +688,7 @@ static void _call_f_takeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QBoxLayout *)cls)->takeAt (arg1)); } @@ -709,8 +709,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QBoxLayout::tr (arg1, arg2)); } @@ -733,9 +733,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QBoxLayout::tr (arg1, arg2, arg3)); } @@ -756,8 +756,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QBoxLayout::trUtf8 (arg1, arg2)); } @@ -780,9 +780,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QBoxLayout::trUtf8 (arg1, arg2, arg3)); } @@ -1322,8 +1322,8 @@ static void _call_ctor_QBoxLayout_Adaptor_3704 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QBoxLayout_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1341,7 +1341,7 @@ static void _call_fp_addChildLayout_1341 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->fp_QBoxLayout_addChildLayout_1341 (arg1); @@ -1361,7 +1361,7 @@ static void _call_fp_addChildWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->fp_QBoxLayout_addChildWidget_1315 (arg1); } @@ -1404,7 +1404,7 @@ static void _call_fp_alignmentRect_c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QBoxLayout_Adaptor *)cls)->fp_QBoxLayout_alignmentRect_c1792 (arg1)); } @@ -1489,7 +1489,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QBoxLayout_Adaptor *)cls)->emitter_QBoxLayout_destroyed_1302 (arg1); } @@ -1685,8 +1685,8 @@ static void _call_fp_insertItem_2399 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QLayoutItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QLayoutItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->fp_QBoxLayout_insertItem_2399 (arg1, arg2); } @@ -1847,7 +1847,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout_Adaptor *)cls)->fp_QBoxLayout_receivers_c1731 (arg1)); } @@ -2007,7 +2007,7 @@ static void _call_fp_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->fp_QBoxLayout_widgetEvent_1217 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQBrush.cc b/src/gsiqt/qt4/QtGui/gsiDeclQBrush.cc index 99827f88f..09407a5f6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQBrush.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQBrush.cc @@ -71,7 +71,7 @@ static void _call_ctor_QBrush_1794 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QBrush (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -92,8 +92,8 @@ static void _call_ctor_QBrush_3591 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::SolidPattern)); + const QColor &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::SolidPattern), heap); ret.write (new QBrush (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -114,8 +114,8 @@ static void _call_ctor_QBrush_3539 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::SolidPattern)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::SolidPattern), heap); ret.write (new QBrush (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -136,8 +136,8 @@ static void _call_ctor_QBrush_3814 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); ret.write (new QBrush (arg1, arg2)); } @@ -158,8 +158,8 @@ static void _call_ctor_QBrush_3762 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); ret.write (new QBrush (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -178,7 +178,7 @@ static void _call_ctor_QBrush_2017 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); ret.write (new QBrush (arg1)); } @@ -197,7 +197,7 @@ static void _call_ctor_QBrush_1877 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write (new QBrush (arg1)); } @@ -216,7 +216,7 @@ static void _call_ctor_QBrush_1910 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); ret.write (new QBrush (arg1)); } @@ -235,7 +235,7 @@ static void _call_ctor_QBrush_2208 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGradient &arg1 = args.read (heap); + const QGradient &arg1 = gsi::arg_reader() (args, heap); ret.write (new QBrush (arg1)); } @@ -329,7 +329,7 @@ static void _call_f_operator_excl__eq__c1910 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBrush *)cls)->operator!= (arg1)); } @@ -348,7 +348,7 @@ static void _call_f_operator_eq__1910 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); ret.write ((QBrush &)((QBrush *)cls)->operator= (arg1)); } @@ -367,7 +367,7 @@ static void _call_f_operator_eq__eq__c1910 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBrush *)cls)->operator== (arg1)); } @@ -386,7 +386,7 @@ static void _call_f_setColor_1905 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBrush *)cls)->setColor (arg1); } @@ -406,7 +406,7 @@ static void _call_f_setColor_1853 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBrush *)cls)->setColor (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -426,7 +426,7 @@ static void _call_f_setMatrix_2023 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBrush *)cls)->setMatrix (arg1); } @@ -446,7 +446,7 @@ static void _call_f_setStyle_1794 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBrush *)cls)->setStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -466,7 +466,7 @@ static void _call_f_setTexture_2017 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBrush *)cls)->setTexture (arg1); } @@ -486,7 +486,7 @@ static void _call_f_setTextureImage_1877 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBrush *)cls)->setTextureImage (arg1); } @@ -506,7 +506,7 @@ static void _call_f_setTransform_2350 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBrush *)cls)->setTransform (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQButtonGroup.cc b/src/gsiqt/qt4/QtGui/gsiDeclQButtonGroup.cc index 4d32e2579..57d878a5e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQButtonGroup.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQButtonGroup.cc @@ -69,7 +69,7 @@ static void _call_f_addButton_2159 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup *)cls)->addButton (arg1); } @@ -91,8 +91,8 @@ static void _call_f_addButton_2818 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); - int arg2 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup *)cls)->addButton (arg1, arg2); } @@ -112,7 +112,7 @@ static void _call_f_button_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractButton *)((QButtonGroup *)cls)->button (arg1)); } @@ -191,7 +191,7 @@ static void _call_f_id_c2159 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QButtonGroup *)cls)->id (arg1)); } @@ -210,7 +210,7 @@ static void _call_f_removeButton_2159 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup *)cls)->removeButton (arg1); } @@ -230,7 +230,7 @@ static void _call_f_setExclusive_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup *)cls)->setExclusive (arg1); } @@ -252,8 +252,8 @@ static void _call_f_setId_2818 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); - int arg2 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup *)cls)->setId (arg1, arg2); } @@ -275,8 +275,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QButtonGroup::tr (arg1, arg2)); } @@ -299,9 +299,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QButtonGroup::tr (arg1, arg2, arg3)); } @@ -322,8 +322,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QButtonGroup::trUtf8 (arg1, arg2)); } @@ -346,9 +346,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QButtonGroup::trUtf8 (arg1, arg2, arg3)); } @@ -578,7 +578,7 @@ static void _call_ctor_QButtonGroup_Adaptor_1302 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QButtonGroup_Adaptor (arg1)); } @@ -596,7 +596,7 @@ static void _call_emitter_buttonClicked_2159 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_buttonClicked_2159 (arg1); } @@ -614,7 +614,7 @@ static void _call_emitter_buttonClicked_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_buttonClicked_767 (arg1); } @@ -632,7 +632,7 @@ static void _call_emitter_buttonPressed_2159 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_buttonPressed_2159 (arg1); } @@ -650,7 +650,7 @@ static void _call_emitter_buttonPressed_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_buttonPressed_767 (arg1); } @@ -668,7 +668,7 @@ static void _call_emitter_buttonReleased_2159 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_buttonReleased_2159 (arg1); } @@ -686,7 +686,7 @@ static void _call_emitter_buttonReleased_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_buttonReleased_767 (arg1); } @@ -752,7 +752,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_destroyed_1302 (arg1); } @@ -843,7 +843,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QButtonGroup_Adaptor *)cls)->fp_QButtonGroup_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCDEStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCDEStyle.cc index c5683605c..979d4958a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCDEStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCDEStyle.cc @@ -88,10 +88,10 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle *)cls)->drawControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -117,10 +117,10 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCDEStyle *)cls)->drawPrimitive (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -144,9 +144,9 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCDEStyle *)cls)->pixelMetric (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -182,8 +182,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCDEStyle::tr (arg1, arg2)); } @@ -206,9 +206,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCDEStyle::tr (arg1, arg2, arg3)); } @@ -229,8 +229,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCDEStyle::trUtf8 (arg1, arg2)); } @@ -253,9 +253,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCDEStyle::trUtf8 (arg1, arg2, arg3)); } @@ -782,7 +782,7 @@ static void _call_ctor_QCDEStyle_Adaptor_864 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write (new QCDEStyle_Adaptor (arg1)); } @@ -848,7 +848,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCDEStyle_Adaptor *)cls)->emitter_QCDEStyle_destroyed_1302 (arg1); } @@ -1246,11 +1246,11 @@ static void _call_fp_layoutSpacingImplementation_c11697 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QStyleOption *arg4 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg5 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCDEStyle_Adaptor *)cls)->fp_QCDEStyle_layoutSpacingImplementation_c11697 (arg1, arg2, arg3, arg4, arg5)); } @@ -1369,7 +1369,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCDEStyle_Adaptor *)cls)->fp_QCDEStyle_receivers_c1731 (arg1)); } @@ -1437,9 +1437,9 @@ static void _call_fp_standardIconImplementation_c6956 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QIcon)((QCDEStyle_Adaptor *)cls)->fp_QCDEStyle_standardIconImplementation_c6956 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCalendarWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCalendarWidget.cc index dc87fe23a..465886c7b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCalendarWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCalendarWidget.cc @@ -143,7 +143,7 @@ static void _call_f_dateTextFormat_c1776 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCharFormat)((QCalendarWidget *)cls)->dateTextFormat (arg1)); } @@ -359,8 +359,8 @@ static void _call_f_setCurrentPage_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setCurrentPage (arg1, arg2); } @@ -380,7 +380,7 @@ static void _call_f_setDateEditAcceptDelay_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setDateEditAcceptDelay (arg1); } @@ -400,7 +400,7 @@ static void _call_f_setDateEditEnabled_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setDateEditEnabled (arg1); } @@ -422,8 +422,8 @@ static void _call_f_setDateRange_3444 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - const QDate &arg2 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); + const QDate &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setDateRange (arg1, arg2); } @@ -445,8 +445,8 @@ static void _call_f_setDateTextFormat_4482 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - const QTextCharFormat &arg2 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); + const QTextCharFormat &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setDateTextFormat (arg1, arg2); } @@ -466,7 +466,7 @@ static void _call_f_setFirstDayOfWeek_1612 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setFirstDayOfWeek (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -486,7 +486,7 @@ static void _call_f_setGridVisible_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setGridVisible (arg1); } @@ -506,7 +506,7 @@ static void _call_f_setHeaderTextFormat_2814 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setHeaderTextFormat (arg1); } @@ -526,7 +526,7 @@ static void _call_f_setHeaderVisible_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setHeaderVisible (arg1); } @@ -546,7 +546,7 @@ static void _call_f_setHorizontalHeaderFormat_4307 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setHorizontalHeaderFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -566,7 +566,7 @@ static void _call_f_setMaximumDate_1776 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setMaximumDate (arg1); } @@ -586,7 +586,7 @@ static void _call_f_setMinimumDate_1776 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setMinimumDate (arg1); } @@ -606,7 +606,7 @@ static void _call_f_setNavigationBarVisible_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setNavigationBarVisible (arg1); } @@ -626,7 +626,7 @@ static void _call_f_setSelectedDate_1776 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setSelectedDate (arg1); } @@ -646,7 +646,7 @@ static void _call_f_setSelectionMode_3362 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setSelectionMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -666,7 +666,7 @@ static void _call_f_setVerticalHeaderFormat_4067 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setVerticalHeaderFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -688,8 +688,8 @@ static void _call_f_setWeekdayTextFormat_4318 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QTextCharFormat &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QTextCharFormat &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setWeekdayTextFormat (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -835,7 +835,7 @@ static void _call_f_weekdayTextFormat_c1612 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QTextCharFormat)((QCalendarWidget *)cls)->weekdayTextFormat (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -871,8 +871,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCalendarWidget::tr (arg1, arg2)); } @@ -895,9 +895,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCalendarWidget::tr (arg1, arg2, arg3)); } @@ -918,8 +918,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCalendarWidget::trUtf8 (arg1, arg2)); } @@ -942,9 +942,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCalendarWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1895,7 +1895,7 @@ static void _call_ctor_QCalendarWidget_Adaptor_1315 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCalendarWidget_Adaptor (arg1)); } @@ -1937,7 +1937,7 @@ static void _call_emitter_activated_1776 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ((QCalendarWidget_Adaptor *)cls)->emitter_QCalendarWidget_activated_1776 (arg1); } @@ -2003,7 +2003,7 @@ static void _call_emitter_clicked_1776 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ((QCalendarWidget_Adaptor *)cls)->emitter_QCalendarWidget_clicked_1776 (arg1); } @@ -2073,9 +2073,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->fp_QCalendarWidget_create_2208 (arg1, arg2, arg3); } @@ -2096,8 +2096,8 @@ static void _call_emitter_currentPageChanged_1426 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QCalendarWidget_Adaptor *)cls)->emitter_QCalendarWidget_currentPageChanged_1426 (arg1, arg2); } @@ -2115,7 +2115,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QCalendarWidget_Adaptor *)cls)->emitter_QCalendarWidget_customContextMenuRequested_1916 (arg1); } @@ -2159,8 +2159,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->fp_QCalendarWidget_destroy_1620 (arg1, arg2); } @@ -2179,7 +2179,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCalendarWidget_Adaptor *)cls)->emitter_QCalendarWidget_destroyed_1302 (arg1); } @@ -2982,7 +2982,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCalendarWidget_Adaptor *)cls)->fp_QCalendarWidget_receivers_c1731 (arg1)); } @@ -3206,7 +3206,7 @@ static void _call_fp_updateCell_1776 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->fp_QCalendarWidget_updateCell_1776 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCheckBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCheckBox.cc index d7b819e82..9bc25eaa2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCheckBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCheckBox.cc @@ -143,7 +143,7 @@ static void _call_f_setCheckState_1740 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox *)cls)->setCheckState (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -163,7 +163,7 @@ static void _call_f_setTristate_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox *)cls)->setTristate (arg1); } @@ -200,8 +200,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCheckBox::tr (arg1, arg2)); } @@ -224,9 +224,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCheckBox::tr (arg1, arg2, arg3)); } @@ -247,8 +247,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCheckBox::trUtf8 (arg1, arg2)); } @@ -271,9 +271,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCheckBox::trUtf8 (arg1, arg2, arg3)); } @@ -1232,7 +1232,7 @@ static void _call_ctor_QCheckBox_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCheckBox_Adaptor (arg1)); } @@ -1252,8 +1252,8 @@ static void _call_ctor_QCheckBox_Adaptor_3232 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCheckBox_Adaptor (arg1, arg2)); } @@ -1363,7 +1363,7 @@ static void _call_emitter_clicked_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QCheckBox_Adaptor *)cls)->emitter_QCheckBox_clicked_864 (arg1); } @@ -1433,9 +1433,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->fp_QCheckBox_create_2208 (arg1, arg2, arg3); } @@ -1454,7 +1454,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QCheckBox_Adaptor *)cls)->emitter_QCheckBox_customContextMenuRequested_1916 (arg1); } @@ -1498,8 +1498,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->fp_QCheckBox_destroy_1620 (arg1, arg2); } @@ -1518,7 +1518,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCheckBox_Adaptor *)cls)->emitter_QCheckBox_destroyed_1302 (arg1); } @@ -1946,7 +1946,7 @@ static void _call_fp_initStyleOption_c2501 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionButton *arg1 = args.read (heap); + QStyleOptionButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->fp_QCheckBox_initStyleOption_c2501 (arg1); } @@ -2367,7 +2367,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCheckBox_Adaptor *)cls)->fp_QCheckBox_receivers_c1731 (arg1)); } @@ -2519,7 +2519,7 @@ static void _call_emitter_stateChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QCheckBox_Adaptor *)cls)->emitter_QCheckBox_stateChanged_767 (arg1); } @@ -2609,7 +2609,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QCheckBox_Adaptor *)cls)->emitter_QCheckBox_toggled_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCleanlooksStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCleanlooksStyle.cc index e7a10aed9..85a6ec1cb 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCleanlooksStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCleanlooksStyle.cc @@ -88,10 +88,10 @@ static void _call_f_drawComplexControl_c9027 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle *)cls)->drawComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -117,10 +117,10 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle *)cls)->drawControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -146,10 +146,10 @@ static void _call_f_drawItemPixmap_c5678 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle *)cls)->drawItemPixmap (arg1, arg2, arg3, arg4); } @@ -181,13 +181,13 @@ static void _call_f_drawItemText_c10604 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPalette &arg4 = args.read (heap); - bool arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole)); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPalette &arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle *)cls)->drawItemText (arg1, arg2, arg3, arg4, arg5, arg6, qt_gsi::QtToCppAdaptor(arg7).cref()); } @@ -213,10 +213,10 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle *)cls)->drawPrimitive (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -240,9 +240,9 @@ static void _call_f_generatedIconPixmap_c5776 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QCleanlooksStyle *)cls)->generatedIconPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -267,10 +267,10 @@ static void _call_f_hitTestComplexControl_c9517 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QCleanlooksStyle *)cls)->hitTestComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4))); } @@ -293,9 +293,9 @@ static void _call_f_itemPixmapRect_c4360 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QCleanlooksStyle *)cls)->itemPixmapRect (arg1, arg2, arg3)); } @@ -318,9 +318,9 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCleanlooksStyle *)cls)->pixelMetric (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -339,7 +339,7 @@ static void _call_f_polish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle *)cls)->polish (arg1); } @@ -359,7 +359,7 @@ static void _call_f_polish_1843 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle *)cls)->polish (arg1); } @@ -379,7 +379,7 @@ static void _call_f_polish_1418 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle *)cls)->polish (arg1); } @@ -405,10 +405,10 @@ static void _call_f_sizeFromContents_c8477 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QCleanlooksStyle *)cls)->sizeFromContents (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -446,9 +446,9 @@ static void _call_f_standardPixmap_c6956 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPixmap)((QCleanlooksStyle *)cls)->standardPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -473,10 +473,10 @@ static void _call_f_styleHint_c8615 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); - QStyleHintReturn *arg4 = args ? args.read (heap) : (QStyleHintReturn *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCleanlooksStyle *)cls)->styleHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -501,10 +501,10 @@ static void _call_f_subControlRect_c9798 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QCleanlooksStyle *)cls)->subControlRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -527,9 +527,9 @@ static void _call_f_subElementRect_c6528 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QCleanlooksStyle *)cls)->subElementRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -548,7 +548,7 @@ static void _call_f_unpolish_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle *)cls)->unpolish (arg1); } @@ -568,7 +568,7 @@ static void _call_f_unpolish_1843 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCleanlooksStyle *)cls)->unpolish (arg1); } @@ -590,8 +590,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCleanlooksStyle::tr (arg1, arg2)); } @@ -614,9 +614,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCleanlooksStyle::tr (arg1, arg2, arg3)); } @@ -637,8 +637,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCleanlooksStyle::trUtf8 (arg1, arg2)); } @@ -661,9 +661,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCleanlooksStyle::trUtf8 (arg1, arg2, arg3)); } @@ -1262,7 +1262,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCleanlooksStyle_Adaptor *)cls)->emitter_QCleanlooksStyle_destroyed_1302 (arg1); } @@ -1660,11 +1660,11 @@ static void _call_fp_layoutSpacingImplementation_c11697 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QStyleOption *arg4 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg5 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCleanlooksStyle_Adaptor *)cls)->fp_QCleanlooksStyle_layoutSpacingImplementation_c11697 (arg1, arg2, arg3, arg4, arg5)); } @@ -1783,7 +1783,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCleanlooksStyle_Adaptor *)cls)->fp_QCleanlooksStyle_receivers_c1731 (arg1)); } @@ -1851,9 +1851,9 @@ static void _call_fp_standardIconImplementation_c6956 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QIcon)((QCleanlooksStyle_Adaptor *)cls)->fp_QCleanlooksStyle_standardIconImplementation_c6956 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQClipboard.cc b/src/gsiqt/qt4/QtGui/gsiDeclQClipboard.cc index f4694f63c..b5c2aac55 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQClipboard.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQClipboard.cc @@ -69,7 +69,7 @@ static void _call_f_clear_1934 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QClipboard *)cls)->clear (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -89,7 +89,7 @@ static void _call_f_image_c1934 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); ret.write ((QImage)((QClipboard *)cls)->image (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -108,7 +108,7 @@ static void _call_f_mimeData_c1934 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); ret.write ((const QMimeData *)((QClipboard *)cls)->mimeData (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -172,7 +172,7 @@ static void _call_f_pixmap_c1934 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); ret.write ((QPixmap)((QClipboard *)cls)->pixmap (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -193,8 +193,8 @@ static void _call_f_setImage_3703 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const QImage &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QClipboard *)cls)->setImage (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -216,8 +216,8 @@ static void _call_f_setMimeData_3299 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QClipboard *)cls)->setMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -239,8 +239,8 @@ static void _call_f_setPixmap_3843 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QClipboard *)cls)->setPixmap (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -262,8 +262,8 @@ static void _call_f_setText_3851 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QClipboard *)cls)->setText (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -313,7 +313,7 @@ static void _call_f_text_c1934 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); ret.write ((QString)((QClipboard *)cls)->text (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -334,8 +334,8 @@ static void _call_f_text_c3156 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); ret.write ((QString)((QClipboard *)cls)->text (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -356,8 +356,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QClipboard::tr (arg1, arg2)); } @@ -380,9 +380,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QClipboard::tr (arg1, arg2, arg3)); } @@ -403,8 +403,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QClipboard::trUtf8 (arg1, arg2)); } @@ -427,9 +427,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QClipboard::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQColor.cc b/src/gsiqt/qt4/QtGui/gsiDeclQColor.cc index 9966155e7..9d7f91a1c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQColor.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQColor.cc @@ -65,7 +65,7 @@ static void _call_ctor_QColor_1853 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QColor (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -90,10 +90,10 @@ static void _call_ctor_QColor_2744 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); ret.write (new QColor (arg1, arg2, arg3, arg4)); } @@ -112,7 +112,7 @@ static void _call_ctor_QColor_1772 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write (new QColor (arg1)); } @@ -131,7 +131,7 @@ static void _call_ctor_QColor_1731 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write (new QColor (arg1)); } @@ -150,7 +150,7 @@ static void _call_ctor_QColor_1905 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ret.write (new QColor (arg1)); } @@ -169,7 +169,7 @@ static void _call_ctor_QColor_1539 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QColor (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -278,7 +278,7 @@ static void _call_f_convertTo_c1539 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QColor)((QColor *)cls)->convertTo (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -327,7 +327,7 @@ static void _call_f_dark_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(200); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (200, heap); ret.write ((QColor)((QColor *)cls)->dark (arg1)); } @@ -346,7 +346,7 @@ static void _call_f_darker_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(200); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (200, heap); ret.write ((QColor)((QColor *)cls)->darker (arg1)); } @@ -373,11 +373,11 @@ static void _call_f_getCmyk_4333 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); - int *arg5 = args ? args.read (heap) : (int *)(0); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); + int *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getCmyk (arg1, arg2, arg3, arg4, arg5); } @@ -405,11 +405,11 @@ static void _call_f_getCmykF_5853 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); - double *arg5 = args ? args.read (heap) : (double *)(0); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); + double *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getCmykF (arg1, arg2, arg3, arg4, arg5); } @@ -435,10 +435,10 @@ static void _call_f_getHsl_c3488 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args ? args.read (heap) : (int *)(0); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getHsl (arg1, arg2, arg3, arg4); } @@ -464,10 +464,10 @@ static void _call_f_getHslF_c4704 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args ? args.read (heap) : (double *)(0); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getHslF (arg1, arg2, arg3, arg4); } @@ -493,10 +493,10 @@ static void _call_f_getHsv_c3488 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args ? args.read (heap) : (int *)(0); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getHsv (arg1, arg2, arg3, arg4); } @@ -522,10 +522,10 @@ static void _call_f_getHsvF_c4704 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args ? args.read (heap) : (double *)(0); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getHsvF (arg1, arg2, arg3, arg4); } @@ -551,10 +551,10 @@ static void _call_f_getRgb_c3488 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args ? args.read (heap) : (int *)(0); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getRgb (arg1, arg2, arg3, arg4); } @@ -580,10 +580,10 @@ static void _call_f_getRgbF_c4704 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args ? args.read (heap) : (double *)(0); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getRgbF (arg1, arg2, arg3, arg4); } @@ -798,7 +798,7 @@ static void _call_f_light_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(150); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (150, heap); ret.write ((QColor)((QColor *)cls)->light (arg1)); } @@ -817,7 +817,7 @@ static void _call_f_lighter_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(150); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (150, heap); ret.write ((QColor)((QColor *)cls)->lighter (arg1)); } @@ -911,7 +911,7 @@ static void _call_f_operator_excl__eq__c1905 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColor *)cls)->operator!= (arg1)); } @@ -930,7 +930,7 @@ static void _call_f_operator_eq__1905 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor &)((QColor *)cls)->operator= (arg1)); } @@ -949,7 +949,7 @@ static void _call_f_operator_eq__1853 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QColor &)((QColor *)cls)->operator= (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -968,7 +968,7 @@ static void _call_f_operator_eq__eq__c1905 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColor *)cls)->operator== (arg1)); } @@ -1077,7 +1077,7 @@ static void _call_f_setAlpha_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setAlpha (arg1); } @@ -1097,7 +1097,7 @@ static void _call_f_setAlphaF_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setAlphaF (arg1); } @@ -1117,7 +1117,7 @@ static void _call_f_setBlue_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setBlue (arg1); } @@ -1137,7 +1137,7 @@ static void _call_f_setBlueF_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setBlueF (arg1); } @@ -1165,11 +1165,11 @@ static void _call_f_setCmyk_3403 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setCmyk (arg1, arg2, arg3, arg4, arg5); } @@ -1197,11 +1197,11 @@ static void _call_f_setCmykF_4923 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setCmykF (arg1, arg2, arg3, arg4, arg5); } @@ -1221,7 +1221,7 @@ static void _call_f_setGreen_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setGreen (arg1); } @@ -1241,7 +1241,7 @@ static void _call_f_setGreenF_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setGreenF (arg1); } @@ -1267,10 +1267,10 @@ static void _call_f_setHsl_2744 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setHsl (arg1, arg2, arg3, arg4); } @@ -1296,10 +1296,10 @@ static void _call_f_setHslF_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setHslF (arg1, arg2, arg3, arg4); } @@ -1325,10 +1325,10 @@ static void _call_f_setHsv_2744 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setHsv (arg1, arg2, arg3, arg4); } @@ -1354,10 +1354,10 @@ static void _call_f_setHsvF_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setHsvF (arg1, arg2, arg3, arg4); } @@ -1377,7 +1377,7 @@ static void _call_f_setNamedColor_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setNamedColor (arg1); } @@ -1397,7 +1397,7 @@ static void _call_f_setRed_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setRed (arg1); } @@ -1417,7 +1417,7 @@ static void _call_f_setRedF_1071 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setRedF (arg1); } @@ -1443,10 +1443,10 @@ static void _call_f_setRgb_2744 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setRgb (arg1, arg2, arg3, arg4); } @@ -1466,7 +1466,7 @@ static void _call_f_setRgb_1772 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setRgb (arg1); } @@ -1492,10 +1492,10 @@ static void _call_f_setRgbF_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setRgbF (arg1, arg2, arg3, arg4); } @@ -1515,7 +1515,7 @@ static void _call_f_setRgba_1772 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setRgba (arg1); } @@ -1693,11 +1693,11 @@ static void _call_f_fromCmyk_3403 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); ret.write ((QColor)QColor::fromCmyk (arg1, arg2, arg3, arg4, arg5)); } @@ -1724,11 +1724,11 @@ static void _call_f_fromCmykF_4923 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); ret.write ((QColor)QColor::fromCmykF (arg1, arg2, arg3, arg4, arg5)); } @@ -1753,10 +1753,10 @@ static void _call_f_fromHsl_2744 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); ret.write ((QColor)QColor::fromHsl (arg1, arg2, arg3, arg4)); } @@ -1781,10 +1781,10 @@ static void _call_f_fromHslF_3960 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); ret.write ((QColor)QColor::fromHslF (arg1, arg2, arg3, arg4)); } @@ -1809,10 +1809,10 @@ static void _call_f_fromHsv_2744 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); ret.write ((QColor)QColor::fromHsv (arg1, arg2, arg3, arg4)); } @@ -1837,10 +1837,10 @@ static void _call_f_fromHsvF_3960 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); ret.write ((QColor)QColor::fromHsvF (arg1, arg2, arg3, arg4)); } @@ -1859,7 +1859,7 @@ static void _call_f_fromRgb_1772 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor)QColor::fromRgb (arg1)); } @@ -1884,10 +1884,10 @@ static void _call_f_fromRgb_2744 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); ret.write ((QColor)QColor::fromRgb (arg1, arg2, arg3, arg4)); } @@ -1912,10 +1912,10 @@ static void _call_f_fromRgbF_3960 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); ret.write ((QColor)QColor::fromRgbF (arg1, arg2, arg3, arg4)); } @@ -1934,7 +1934,7 @@ static void _call_f_fromRgba_1772 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor)QColor::fromRgba (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQColorDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQColorDialog.cc index cff4a280d..1100cb9df 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQColorDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQColorDialog.cc @@ -145,8 +145,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog *)cls)->open (arg1, arg2); } @@ -196,7 +196,7 @@ static void _call_f_setCurrentColor_1905 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog *)cls)->setCurrentColor (arg1); } @@ -218,8 +218,8 @@ static void _call_f_setOption_4228 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -239,7 +239,7 @@ static void _call_f_setOptions_4168 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog *)cls)->setOptions (arg1); } @@ -259,7 +259,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog *)cls)->setVisible (arg1); } @@ -279,7 +279,7 @@ static void _call_f_testOption_c3472 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QColorDialog *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -298,7 +298,7 @@ static void _call_f_customColor_767 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((unsigned int)QColorDialog::customColor (arg1)); } @@ -338,10 +338,10 @@ static void _call_f_getColor_9089 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(0); + const QColor &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QColor)QColorDialog::getColor (arg1, arg2, arg3, arg4)); } @@ -362,8 +362,8 @@ static void _call_f_getColor_3112 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args ? args.read (heap) : (const QColor &)(Qt::white); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QColor &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::white, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QColor)QColorDialog::getColor (arg1, arg2)); } @@ -386,9 +386,9 @@ static void _call_f_getRgba_3921 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args ? args.read (heap) : (unsigned int)(0xffffffff); - bool *arg2 = args ? args.read (heap) : (bool *)(0); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + unsigned int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0xffffffff, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((unsigned int)QColorDialog::getRgba (arg1, arg2, arg3)); } @@ -409,8 +409,8 @@ static void _call_f_setCustomColor_2431 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QColorDialog::setCustomColor (arg1, arg2); } @@ -432,8 +432,8 @@ static void _call_f_setStandardColor_2431 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QColorDialog::setStandardColor (arg1, arg2); } @@ -455,8 +455,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QColorDialog::tr (arg1, arg2)); } @@ -479,9 +479,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QColorDialog::tr (arg1, arg2, arg3)); } @@ -502,8 +502,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QColorDialog::trUtf8 (arg1, arg2)); } @@ -526,9 +526,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QColorDialog::trUtf8 (arg1, arg2, arg3)); } @@ -1499,7 +1499,7 @@ static void _call_ctor_QColorDialog_Adaptor_1315 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QColorDialog_Adaptor (arg1)); } @@ -1519,8 +1519,8 @@ static void _call_ctor_QColorDialog_Adaptor_3112 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QColor &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QColorDialog_Adaptor (arg1, arg2)); } @@ -1596,7 +1596,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->fp_QColorDialog_adjustPosition_1315 (arg1); } @@ -1687,7 +1687,7 @@ static void _call_emitter_colorSelected_1905 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ((QColorDialog_Adaptor *)cls)->emitter_QColorDialog_colorSelected_1905 (arg1); } @@ -1733,9 +1733,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->fp_QColorDialog_create_2208 (arg1, arg2, arg3); } @@ -1754,7 +1754,7 @@ static void _call_emitter_currentColorChanged_1905 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ((QColorDialog_Adaptor *)cls)->emitter_QColorDialog_currentColorChanged_1905 (arg1); } @@ -1772,7 +1772,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QColorDialog_Adaptor *)cls)->emitter_QColorDialog_customContextMenuRequested_1916 (arg1); } @@ -1816,8 +1816,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->fp_QColorDialog_destroy_1620 (arg1, arg2); } @@ -1836,7 +1836,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QColorDialog_Adaptor *)cls)->emitter_QColorDialog_destroyed_1302 (arg1); } @@ -2095,7 +2095,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QColorDialog_Adaptor *)cls)->emitter_QColorDialog_finished_767 (arg1); } @@ -2651,7 +2651,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColorDialog_Adaptor *)cls)->fp_QColorDialog_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQColormap.cc b/src/gsiqt/qt4/QtGui/gsiDeclQColormap.cc index 5092a0124..ecf2f8b88 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQColormap.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQColormap.cc @@ -51,7 +51,7 @@ static void _call_ctor_QColormap_2223 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColormap &arg1 = args.read (heap); + const QColormap &arg1 = gsi::arg_reader() (args, heap); ret.write (new QColormap (arg1)); } @@ -70,7 +70,7 @@ static void _call_f_colorAt_c1772 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((const QColor)((QColormap *)cls)->colorAt (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_operator_eq__2223 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColormap &arg1 = args.read (heap); + const QColormap &arg1 = gsi::arg_reader() (args, heap); ret.write ((QColormap &)((QColormap *)cls)->operator= (arg1)); } @@ -153,7 +153,7 @@ static void _call_f_pixel_c1905 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ret.write ((unsigned int)((QColormap *)cls)->pixel (arg1)); } @@ -203,7 +203,7 @@ static void _call_f_instance_767 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QColormap)QColormap::instance (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQColumnView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQColumnView.cc index 5fc706d84..775720cf2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQColumnView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQColumnView.cc @@ -134,7 +134,7 @@ static void _call_f_indexAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QColumnView *)cls)->indexAt (arg1)); } @@ -185,8 +185,8 @@ static void _call_f_scrollTo_5576 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView *)cls)->scrollTo (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -222,7 +222,7 @@ static void _call_f_setColumnWidths_2259 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView *)cls)->setColumnWidths (arg1); } @@ -242,7 +242,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView *)cls)->setModel (arg1); } @@ -262,7 +262,7 @@ static void _call_f_setPreviewWidget_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView *)cls)->setPreviewWidget (arg1); } @@ -282,7 +282,7 @@ static void _call_f_setResizeGripsVisible_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView *)cls)->setResizeGripsVisible (arg1); } @@ -302,7 +302,7 @@ static void _call_f_setRootIndex_2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView *)cls)->setRootIndex (arg1); } @@ -322,7 +322,7 @@ static void _call_f_setSelectionModel_2533 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView *)cls)->setSelectionModel (arg1); } @@ -357,7 +357,7 @@ static void _call_f_visualRect_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QColumnView *)cls)->visualRect (arg1)); } @@ -378,8 +378,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QColumnView::tr (arg1, arg2)); } @@ -402,9 +402,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QColumnView::tr (arg1, arg2, arg3)); } @@ -425,8 +425,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QColumnView::trUtf8 (arg1, arg2)); } @@ -449,9 +449,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QColumnView::trUtf8 (arg1, arg2, arg3)); } @@ -2124,7 +2124,7 @@ static void _call_ctor_QColumnView_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QColumnView_Adaptor (arg1)); } @@ -2166,7 +2166,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_activated_2395 (arg1); } @@ -2232,7 +2232,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_clicked_2395 (arg1); } @@ -2353,9 +2353,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_create_2208 (arg1, arg2, arg3); } @@ -2424,7 +2424,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_customContextMenuRequested_1916 (arg1); } @@ -2495,8 +2495,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_destroy_1620 (arg1, arg2); } @@ -2515,7 +2515,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_destroyed_1302 (arg1); } @@ -2606,7 +2606,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_doubleClicked_2395 (arg1); } @@ -2696,7 +2696,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_drawFrame_1426 (arg1); } @@ -2854,7 +2854,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_entered_2395 (arg1); } @@ -3210,7 +3210,7 @@ static void _call_fp_initializeColumn_c2333 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemView *arg1 = args.read (heap); + QAbstractItemView *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_initializeColumn_c2333 (arg1); } @@ -3670,7 +3670,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_pressed_2395 (arg1); } @@ -3688,7 +3688,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColumnView_Adaptor *)cls)->fp_QColumnView_receivers_c1731 (arg1)); } @@ -3869,8 +3869,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_scrollDirtyRegion_1426 (arg1, arg2); } @@ -4022,7 +4022,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_setDirtyRegion_2006 (arg1); } @@ -4041,7 +4041,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_setHorizontalStepsPerItem_767 (arg1); } @@ -4159,7 +4159,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_setState_2776 (arg1); } @@ -4178,7 +4178,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_setVerticalStepsPerItem_767 (arg1); } @@ -4203,10 +4203,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -4225,7 +4225,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_setViewportMargins_2115 (arg1); } @@ -4268,7 +4268,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_setupViewport_1315 (arg1); } @@ -4591,7 +4591,7 @@ static void _call_emitter_updatePreviewWidget_2395 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_updatePreviewWidget_2395 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQComboBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQComboBox.cc index 81ccc0e2b..08e842163 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQComboBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQComboBox.cc @@ -121,8 +121,8 @@ static void _call_f_addItem_4036 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args ? args.read (heap) : (const QVariant &)(QVariant()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QVariant(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->addItem (arg1, arg2); } @@ -146,9 +146,9 @@ static void _call_f_addItem_5715 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QVariant &arg3 = args ? args.read (heap) : (const QVariant &)(QVariant()); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QVariant(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->addItem (arg1, arg2, arg3); } @@ -168,7 +168,7 @@ static void _call_f_addItems_2437 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->addItems (arg1); } @@ -325,7 +325,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QComboBox *)cls)->event (arg1)); } @@ -348,9 +348,9 @@ static void _call_f_findData_c4986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::UserRole); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::MatchExactly|Qt::MatchCaseSensitive); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchExactly|Qt::MatchCaseSensitive, heap); ret.write ((int)((QComboBox *)cls)->findData (arg1, arg2, arg3)); } @@ -371,8 +371,8 @@ static void _call_f_findText_c4233 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::MatchExactly|Qt::MatchCaseSensitive); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchExactly|Qt::MatchCaseSensitive, heap); ret.write ((int)((QComboBox *)cls)->findText (arg1, arg2)); } @@ -441,9 +441,9 @@ static void _call_f_insertItem_4695 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QVariant &arg3 = args ? args.read (heap) : (const QVariant &)(QVariant()); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QVariant(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->insertItem (arg1, arg2, arg3); } @@ -469,10 +469,10 @@ static void _call_f_insertItem_6374 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QVariant &arg4 = args ? args.read (heap) : (const QVariant &)(QVariant()); + int arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QVariant &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QVariant(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->insertItem (arg1, arg2, arg3, arg4); } @@ -494,8 +494,8 @@ static void _call_f_insertItems_3096 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->insertItems (arg1, arg2); } @@ -530,7 +530,7 @@ static void _call_f_insertSeparator_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->insertSeparator (arg1); } @@ -567,8 +567,8 @@ static void _call_f_itemData_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::UserRole); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole, heap); ret.write ((QVariant)((QComboBox *)cls)->itemData (arg1, arg2)); } @@ -602,7 +602,7 @@ static void _call_f_itemIcon_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QComboBox *)cls)->itemIcon (arg1)); } @@ -621,7 +621,7 @@ static void _call_f_itemText_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QComboBox *)cls)->itemText (arg1)); } @@ -745,7 +745,7 @@ static void _call_f_removeItem_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->removeItem (arg1); } @@ -780,7 +780,7 @@ static void _call_f_setAutoCompletion_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setAutoCompletion (arg1); } @@ -800,7 +800,7 @@ static void _call_f_setAutoCompletionCaseSensitivity_2324 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setAutoCompletionCaseSensitivity (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -820,7 +820,7 @@ static void _call_f_setCompleter_1642 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCompleter *arg1 = args.read (heap); + QCompleter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setCompleter (arg1); } @@ -840,7 +840,7 @@ static void _call_f_setCurrentIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setCurrentIndex (arg1); } @@ -860,7 +860,7 @@ static void _call_f_setDuplicatesEnabled_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setDuplicatesEnabled (arg1); } @@ -880,7 +880,7 @@ static void _call_f_setEditText_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setEditText (arg1); } @@ -900,7 +900,7 @@ static void _call_f_setEditable_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setEditable (arg1); } @@ -920,7 +920,7 @@ static void _call_f_setFrame_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setFrame (arg1); } @@ -940,7 +940,7 @@ static void _call_f_setIconSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setIconSize (arg1); } @@ -960,7 +960,7 @@ static void _call_f_setInsertPolicy_2679 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setInsertPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -984,9 +984,9 @@ static void _call_f_setItemData_3437 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::UserRole); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setItemData (arg1, arg2, arg3); } @@ -1006,7 +1006,7 @@ static void _call_f_setItemDelegate_2717 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemDelegate *arg1 = args.read (heap); + QAbstractItemDelegate *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setItemDelegate (arg1); } @@ -1028,8 +1028,8 @@ static void _call_f_setItemIcon_2446 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setItemIcon (arg1, arg2); } @@ -1051,8 +1051,8 @@ static void _call_f_setItemText_2684 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setItemText (arg1, arg2); } @@ -1072,7 +1072,7 @@ static void _call_f_setLineEdit_1485 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLineEdit *arg1 = args.read (heap); + QLineEdit *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setLineEdit (arg1); } @@ -1092,7 +1092,7 @@ static void _call_f_setMaxCount_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setMaxCount (arg1); } @@ -1112,7 +1112,7 @@ static void _call_f_setMaxVisibleItems_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setMaxVisibleItems (arg1); } @@ -1132,7 +1132,7 @@ static void _call_f_setMinimumContentsLength_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setMinimumContentsLength (arg1); } @@ -1152,7 +1152,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setModel (arg1); } @@ -1172,7 +1172,7 @@ static void _call_f_setModelColumn_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setModelColumn (arg1); } @@ -1192,7 +1192,7 @@ static void _call_f_setRootModelIndex_2395 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setRootModelIndex (arg1); } @@ -1212,7 +1212,7 @@ static void _call_f_setSizeAdjustPolicy_3080 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setSizeAdjustPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1232,7 +1232,7 @@ static void _call_f_setValidator_2332 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QValidator *arg1 = args.read (heap); + const QValidator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setValidator (arg1); } @@ -1252,7 +1252,7 @@ static void _call_f_setView_2333 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemView *arg1 = args.read (heap); + QAbstractItemView *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setView (arg1); } @@ -1350,8 +1350,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QComboBox::tr (arg1, arg2)); } @@ -1374,9 +1374,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QComboBox::tr (arg1, arg2, arg3)); } @@ -1397,8 +1397,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QComboBox::trUtf8 (arg1, arg2)); } @@ -1421,9 +1421,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QComboBox::trUtf8 (arg1, arg2, arg3)); } @@ -2429,7 +2429,7 @@ static void _call_ctor_QComboBox_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QComboBox_Adaptor (arg1)); } @@ -2471,7 +2471,7 @@ static void _call_emitter_activated_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_activated_767 (arg1); } @@ -2489,7 +2489,7 @@ static void _call_emitter_activated_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_activated_2025 (arg1); } @@ -2607,9 +2607,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->fp_QComboBox_create_2208 (arg1, arg2, arg3); } @@ -2628,7 +2628,7 @@ static void _call_emitter_currentIndexChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_currentIndexChanged_767 (arg1); } @@ -2646,7 +2646,7 @@ static void _call_emitter_currentIndexChanged_2025 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_currentIndexChanged_2025 (arg1); } @@ -2664,7 +2664,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_customContextMenuRequested_1916 (arg1); } @@ -2708,8 +2708,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->fp_QComboBox_destroy_1620 (arg1, arg2); } @@ -2728,7 +2728,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_destroyed_1302 (arg1); } @@ -2866,7 +2866,7 @@ static void _call_emitter_editTextChanged_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_editTextChanged_2025 (arg1); } @@ -3171,7 +3171,7 @@ static void _call_emitter_highlighted_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_highlighted_767 (arg1); } @@ -3189,7 +3189,7 @@ static void _call_emitter_highlighted_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_highlighted_2025 (arg1); } @@ -3207,7 +3207,7 @@ static void _call_fp_initStyleOption_c2658 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionComboBox *arg1 = args.read (heap); + QStyleOptionComboBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->fp_QComboBox_initStyleOption_c2658 (arg1); } @@ -3594,7 +3594,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QComboBox_Adaptor *)cls)->fp_QComboBox_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCommandLinkButton.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCommandLinkButton.cc index cc6e531b6..1dd47a4e8 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCommandLinkButton.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCommandLinkButton.cc @@ -129,7 +129,7 @@ static void _call_f_setDescription_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton *)cls)->setDescription (arg1); } @@ -151,8 +151,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCommandLinkButton::tr (arg1, arg2)); } @@ -175,9 +175,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCommandLinkButton::tr (arg1, arg2, arg3)); } @@ -198,8 +198,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCommandLinkButton::trUtf8 (arg1, arg2)); } @@ -222,9 +222,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCommandLinkButton::trUtf8 (arg1, arg2, arg3)); } @@ -1185,7 +1185,7 @@ static void _call_ctor_QCommandLinkButton_Adaptor_1315 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCommandLinkButton_Adaptor (arg1)); } @@ -1205,8 +1205,8 @@ static void _call_ctor_QCommandLinkButton_Adaptor_3232 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCommandLinkButton_Adaptor (arg1, arg2)); } @@ -1228,9 +1228,9 @@ static void _call_ctor_QCommandLinkButton_Adaptor_5149 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCommandLinkButton_Adaptor (arg1, arg2, arg3)); } @@ -1340,7 +1340,7 @@ static void _call_emitter_clicked_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QCommandLinkButton_Adaptor *)cls)->emitter_QCommandLinkButton_clicked_864 (arg1); } @@ -1410,9 +1410,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->fp_QCommandLinkButton_create_2208 (arg1, arg2, arg3); } @@ -1431,7 +1431,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QCommandLinkButton_Adaptor *)cls)->emitter_QCommandLinkButton_customContextMenuRequested_1916 (arg1); } @@ -1475,8 +1475,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->fp_QCommandLinkButton_destroy_1620 (arg1, arg2); } @@ -1495,7 +1495,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCommandLinkButton_Adaptor *)cls)->emitter_QCommandLinkButton_destroyed_1302 (arg1); } @@ -1923,7 +1923,7 @@ static void _call_fp_initStyleOption_c2501 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionButton *arg1 = args.read (heap); + QStyleOptionButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->fp_QCommandLinkButton_initStyleOption_c2501 (arg1); } @@ -2344,7 +2344,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCommandLinkButton_Adaptor *)cls)->fp_QCommandLinkButton_receivers_c1731 (arg1)); } @@ -2568,7 +2568,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QCommandLinkButton_Adaptor *)cls)->emitter_QCommandLinkButton_toggled_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCommonStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCommonStyle.cc index 84dcda42d..513377ad6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCommonStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCommonStyle.cc @@ -88,10 +88,10 @@ static void _call_f_drawComplexControl_c9027 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->drawComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -117,10 +117,10 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->drawControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -146,10 +146,10 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->drawPrimitive (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -173,9 +173,9 @@ static void _call_f_generatedIconPixmap_c5776 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QCommonStyle *)cls)->generatedIconPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -200,10 +200,10 @@ static void _call_f_hitTestComplexControl_c9517 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QCommonStyle *)cls)->hitTestComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4))); } @@ -226,9 +226,9 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCommonStyle *)cls)->pixelMetric (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -247,7 +247,7 @@ static void _call_f_polish_1418 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->polish (arg1); } @@ -267,7 +267,7 @@ static void _call_f_polish_1843 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->polish (arg1); } @@ -287,7 +287,7 @@ static void _call_f_polish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->polish (arg1); } @@ -313,10 +313,10 @@ static void _call_f_sizeFromContents_c8477 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QSize)((QCommonStyle *)cls)->sizeFromContents (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -339,9 +339,9 @@ static void _call_f_standardPixmap_c6956 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPixmap)((QCommonStyle *)cls)->standardPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -366,10 +366,10 @@ static void _call_f_styleHint_c8615 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); - QStyleHintReturn *arg4 = args ? args.read (heap) : (QStyleHintReturn *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCommonStyle *)cls)->styleHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -394,10 +394,10 @@ static void _call_f_subControlRect_c9798 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QCommonStyle *)cls)->subControlRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -420,9 +420,9 @@ static void _call_f_subElementRect_c6528 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QCommonStyle *)cls)->subElementRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -441,7 +441,7 @@ static void _call_f_unpolish_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->unpolish (arg1); } @@ -461,7 +461,7 @@ static void _call_f_unpolish_1843 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->unpolish (arg1); } @@ -483,8 +483,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCommonStyle::tr (arg1, arg2)); } @@ -507,9 +507,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCommonStyle::tr (arg1, arg2, arg3)); } @@ -530,8 +530,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCommonStyle::trUtf8 (arg1, arg2)); } @@ -554,9 +554,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCommonStyle::trUtf8 (arg1, arg2, arg3)); } @@ -1151,7 +1151,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCommonStyle_Adaptor *)cls)->emitter_QCommonStyle_destroyed_1302 (arg1); } @@ -1549,11 +1549,11 @@ static void _call_fp_layoutSpacingImplementation_c11697 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QStyleOption *arg4 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg5 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCommonStyle_Adaptor *)cls)->fp_QCommonStyle_layoutSpacingImplementation_c11697 (arg1, arg2, arg3, arg4, arg5)); } @@ -1672,7 +1672,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCommonStyle_Adaptor *)cls)->fp_QCommonStyle_receivers_c1731 (arg1)); } @@ -1740,9 +1740,9 @@ static void _call_fp_standardIconImplementation_c6956 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QIcon)((QCommonStyle_Adaptor *)cls)->fp_QCommonStyle_standardIconImplementation_c6956 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCompleter.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCompleter.cc index 272cfc817..ef7ef23c4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCompleter.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCompleter.cc @@ -88,7 +88,7 @@ static void _call_f_complete_1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args ? args.read (heap) : (const QRect &)(QRect()); + const QRect &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRect(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->complete (arg1); } @@ -288,7 +288,7 @@ static void _call_f_pathFromIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QCompleter *)cls)->pathFromIndex (arg1)); } @@ -322,7 +322,7 @@ static void _call_f_setCaseSensitivity_2324 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setCaseSensitivity (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -342,7 +342,7 @@ static void _call_f_setCompletionColumn_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setCompletionColumn (arg1); } @@ -362,7 +362,7 @@ static void _call_f_setCompletionMode_3011 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setCompletionMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -382,7 +382,7 @@ static void _call_f_setCompletionPrefix_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setCompletionPrefix (arg1); } @@ -402,7 +402,7 @@ static void _call_f_setCompletionRole_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setCompletionRole (arg1); } @@ -422,7 +422,7 @@ static void _call_f_setCurrentRow_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCompleter *)cls)->setCurrentRow (arg1)); } @@ -441,7 +441,7 @@ static void _call_f_setMaxVisibleItems_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setMaxVisibleItems (arg1); } @@ -461,7 +461,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setModel (arg1); } @@ -481,7 +481,7 @@ static void _call_f_setModelSorting_2811 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setModelSorting (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -501,7 +501,7 @@ static void _call_f_setPopup_2333 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemView *arg1 = args.read (heap); + QAbstractItemView *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setPopup (arg1); } @@ -521,7 +521,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setWidget (arg1); } @@ -541,7 +541,7 @@ static void _call_f_setWrapAround_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setWrapAround (arg1); } @@ -561,7 +561,7 @@ static void _call_f_splitPath_c2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QCompleter *)cls)->splitPath (arg1)); } @@ -612,8 +612,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCompleter::tr (arg1, arg2)); } @@ -636,9 +636,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCompleter::tr (arg1, arg2, arg3)); } @@ -659,8 +659,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QCompleter::trUtf8 (arg1, arg2)); } @@ -683,9 +683,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QCompleter::trUtf8 (arg1, arg2, arg3)); } @@ -977,7 +977,7 @@ static void _call_ctor_QCompleter_Adaptor_1302 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCompleter_Adaptor (arg1)); } @@ -997,8 +997,8 @@ static void _call_ctor_QCompleter_Adaptor_3613 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCompleter_Adaptor (arg1, arg2)); } @@ -1018,8 +1018,8 @@ static void _call_ctor_QCompleter_Adaptor_3631 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCompleter_Adaptor (arg1, arg2)); } @@ -1037,7 +1037,7 @@ static void _call_emitter_activated_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QCompleter_Adaptor *)cls)->emitter_QCompleter_activated_2025 (arg1); } @@ -1055,7 +1055,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QCompleter_Adaptor *)cls)->emitter_QCompleter_activated_2395 (arg1); } @@ -1121,7 +1121,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCompleter_Adaptor *)cls)->emitter_QCompleter_destroyed_1302 (arg1); } @@ -1212,7 +1212,7 @@ static void _call_emitter_highlighted_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QCompleter_Adaptor *)cls)->emitter_QCompleter_highlighted_2025 (arg1); } @@ -1230,7 +1230,7 @@ static void _call_emitter_highlighted_2395 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QCompleter_Adaptor *)cls)->emitter_QCompleter_highlighted_2395 (arg1); } @@ -1271,7 +1271,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCompleter_Adaptor *)cls)->fp_QCompleter_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQConicalGradient.cc b/src/gsiqt/qt4/QtGui/gsiDeclQConicalGradient.cc index ab0abbb21..925f5ab9e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQConicalGradient.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQConicalGradient.cc @@ -70,8 +70,8 @@ static void _call_ctor_QConicalGradient_2949 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - double arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write (new QConicalGradient (arg1, arg2)); } @@ -94,9 +94,9 @@ static void _call_ctor_QConicalGradient_2997 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write (new QConicalGradient (arg1, arg2, arg3)); } @@ -145,7 +145,7 @@ static void _call_f_setAngle_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QConicalGradient *)cls)->setAngle (arg1); } @@ -165,7 +165,7 @@ static void _call_f_setCenter_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QConicalGradient *)cls)->setCenter (arg1); } @@ -187,8 +187,8 @@ static void _call_f_setCenter_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QConicalGradient *)cls)->setCenter (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQContextMenuEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQContextMenuEvent.cc index c27e7e863..a749f6bd6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQContextMenuEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQContextMenuEvent.cc @@ -216,10 +216,10 @@ static void _call_ctor_QContextMenuEvent_Adaptor_9494 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPoint &arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - QFlags arg4 = args.read > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = gsi::arg_reader >() (args, heap); ret.write (new QContextMenuEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -241,9 +241,9 @@ static void _call_ctor_QContextMenuEvent_Adaptor_6525 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPoint &arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); ret.write (new QContextMenuEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -263,8 +263,8 @@ static void _call_ctor_QContextMenuEvent_Adaptor_4717 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPoint &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); ret.write (new QContextMenuEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQCursor.cc b/src/gsiqt/qt4/QtGui/gsiDeclQCursor.cc index 86de14dd5..ba4a66b1d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQCursor.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQCursor.cc @@ -67,7 +67,7 @@ static void _call_ctor_QCursor_1884 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QCursor (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -92,10 +92,10 @@ static void _call_ctor_QCursor_5208 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBitmap &arg1 = args.read (heap); - const QBitmap &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(-1); - int arg4 = args ? args.read (heap) : (int)(-1); + const QBitmap &arg1 = gsi::arg_reader() (args, heap); + const QBitmap &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write (new QCursor (arg1, arg2, arg3, arg4)); } @@ -118,9 +118,9 @@ static void _call_ctor_QCursor_3335 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(-1); - int arg3 = args ? args.read (heap) : (int)(-1); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write (new QCursor (arg1, arg2, arg3)); } @@ -139,7 +139,7 @@ static void _call_ctor_QCursor_2032 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCursor &arg1 = args.read (heap); + const QCursor &arg1 = gsi::arg_reader() (args, heap); ret.write (new QCursor (arg1)); } @@ -218,7 +218,7 @@ static void _call_f_operator_eq__2032 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCursor &arg1 = args.read (heap); + const QCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QCursor &)((QCursor *)cls)->operator= (arg1)); } @@ -252,7 +252,7 @@ static void _call_f_setShape_1884 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCursor *)cls)->setShape (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -304,8 +304,8 @@ static void _call_f_setPos_1426 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCursor::setPos (arg1, arg2); } @@ -325,7 +325,7 @@ static void _call_f_setPos_1916 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCursor::setPos (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDataWidgetMapper.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDataWidgetMapper.cc index cbed56ee4..3cbf21dcd 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDataWidgetMapper.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDataWidgetMapper.cc @@ -74,8 +74,8 @@ static void _call_f_addMapping_1974 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->addMapping (arg1, arg2); } @@ -99,9 +99,9 @@ static void _call_f_addMapping_4175 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QByteArray &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QByteArray &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->addMapping (arg1, arg2, arg3); } @@ -167,7 +167,7 @@ static void _call_f_mappedPropertyName_c1315 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QDataWidgetMapper *)cls)->mappedPropertyName (arg1)); } @@ -186,7 +186,7 @@ static void _call_f_mappedSection_c1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDataWidgetMapper *)cls)->mappedSection (arg1)); } @@ -205,7 +205,7 @@ static void _call_f_mappedWidgetAt_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QDataWidgetMapper *)cls)->mappedWidgetAt (arg1)); } @@ -254,7 +254,7 @@ static void _call_f_removeMapping_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->removeMapping (arg1); } @@ -305,7 +305,7 @@ static void _call_f_setCurrentIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->setCurrentIndex (arg1); } @@ -325,7 +325,7 @@ static void _call_f_setCurrentModelIndex_2395 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->setCurrentModelIndex (arg1); } @@ -345,7 +345,7 @@ static void _call_f_setItemDelegate_2717 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemDelegate *arg1 = args.read (heap); + QAbstractItemDelegate *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->setItemDelegate (arg1); } @@ -365,7 +365,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->setModel (arg1); } @@ -385,7 +385,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -405,7 +405,7 @@ static void _call_f_setRootIndex_2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->setRootIndex (arg1); } @@ -425,7 +425,7 @@ static void _call_f_setSubmitPolicy_3488 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->setSubmitPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -541,8 +541,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDataWidgetMapper::tr (arg1, arg2)); } @@ -565,9 +565,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDataWidgetMapper::tr (arg1, arg2, arg3)); } @@ -588,8 +588,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDataWidgetMapper::trUtf8 (arg1, arg2)); } @@ -612,9 +612,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDataWidgetMapper::trUtf8 (arg1, arg2, arg3)); } @@ -840,7 +840,7 @@ static void _call_ctor_QDataWidgetMapper_Adaptor_1302 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDataWidgetMapper_Adaptor (arg1)); } @@ -882,7 +882,7 @@ static void _call_emitter_currentIndexChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDataWidgetMapper_Adaptor *)cls)->emitter_QDataWidgetMapper_currentIndexChanged_767 (arg1); } @@ -924,7 +924,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDataWidgetMapper_Adaptor *)cls)->emitter_QDataWidgetMapper_destroyed_1302 (arg1); } @@ -1015,7 +1015,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDataWidgetMapper_Adaptor *)cls)->fp_QDataWidgetMapper_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDateEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDateEdit.cc index 4d21231a6..08b84b93f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDateEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDateEdit.cc @@ -119,8 +119,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDateEdit::tr (arg1, arg2)); } @@ -143,9 +143,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDateEdit::tr (arg1, arg2, arg3)); } @@ -166,8 +166,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDateEdit::trUtf8 (arg1, arg2)); } @@ -190,9 +190,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDateEdit::trUtf8 (arg1, arg2, arg3)); } @@ -1213,7 +1213,7 @@ static void _call_ctor_QDateEdit_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDateEdit_Adaptor (arg1)); } @@ -1233,8 +1233,8 @@ static void _call_ctor_QDateEdit_Adaptor_2983 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QDate &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDateEdit_Adaptor (arg1, arg2)); } @@ -1396,9 +1396,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->fp_QDateEdit_create_2208 (arg1, arg2, arg3); } @@ -1417,7 +1417,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDateEdit_Adaptor *)cls)->emitter_QDateEdit_customContextMenuRequested_1916 (arg1); } @@ -1459,7 +1459,7 @@ static void _call_emitter_dateChanged_1776 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ((QDateEdit_Adaptor *)cls)->emitter_QDateEdit_dateChanged_1776 (arg1); } @@ -1477,7 +1477,7 @@ static void _call_emitter_dateTimeChanged_2175 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ((QDateEdit_Adaptor *)cls)->emitter_QDateEdit_dateTimeChanged_2175 (arg1); } @@ -1520,8 +1520,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->fp_QDateEdit_destroy_1620 (arg1, arg2); } @@ -1540,7 +1540,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDateEdit_Adaptor *)cls)->emitter_QDateEdit_destroyed_1302 (arg1); } @@ -1983,7 +1983,7 @@ static void _call_fp_initStyleOption_c2572 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->fp_QDateEdit_initStyleOption_c2572 (arg1); } @@ -2384,7 +2384,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDateEdit_Adaptor *)cls)->fp_QDateEdit_receivers_c1731 (arg1)); } @@ -2455,7 +2455,7 @@ static void _call_fp_setLineEdit_1485 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLineEdit *arg1 = args.read (heap); + QLineEdit *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->fp_QDateEdit_setLineEdit_1485 (arg1); } @@ -2655,7 +2655,7 @@ static void _call_emitter_timeChanged_1793 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ((QDateEdit_Adaptor *)cls)->emitter_QDateEdit_timeChanged_1793 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDateTimeEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDateTimeEdit.cc index b88d933f6..13b32cc15 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDateTimeEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDateTimeEdit.cc @@ -349,7 +349,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTimeEdit *)cls)->event (arg1)); } @@ -458,7 +458,7 @@ static void _call_f_sectionAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDateTimeEdit *)cls)->sectionAt (arg1))); } @@ -492,7 +492,7 @@ static void _call_f_sectionText_c2529 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QDateTimeEdit *)cls)->sectionText (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -511,7 +511,7 @@ static void _call_f_setCalendarPopup_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setCalendarPopup (arg1); } @@ -531,7 +531,7 @@ static void _call_f_setCalendarWidget_2109 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCalendarWidget *arg1 = args.read (heap); + QCalendarWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setCalendarWidget (arg1); } @@ -551,7 +551,7 @@ static void _call_f_setCurrentSection_2529 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setCurrentSection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -571,7 +571,7 @@ static void _call_f_setCurrentSectionIndex_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setCurrentSectionIndex (arg1); } @@ -591,7 +591,7 @@ static void _call_f_setDate_1776 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setDate (arg1); } @@ -613,8 +613,8 @@ static void _call_f_setDateRange_3444 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - const QDate &arg2 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); + const QDate &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setDateRange (arg1, arg2); } @@ -634,7 +634,7 @@ static void _call_f_setDateTime_2175 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setDateTime (arg1); } @@ -656,8 +656,8 @@ static void _call_f_setDateTimeRange_4242 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); - const QDateTime &arg2 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); + const QDateTime &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setDateTimeRange (arg1, arg2); } @@ -677,7 +677,7 @@ static void _call_f_setDisplayFormat_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setDisplayFormat (arg1); } @@ -697,7 +697,7 @@ static void _call_f_setMaximumDate_1776 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setMaximumDate (arg1); } @@ -717,7 +717,7 @@ static void _call_f_setMaximumDateTime_2175 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setMaximumDateTime (arg1); } @@ -737,7 +737,7 @@ static void _call_f_setMaximumTime_1793 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setMaximumTime (arg1); } @@ -757,7 +757,7 @@ static void _call_f_setMinimumDate_1776 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setMinimumDate (arg1); } @@ -777,7 +777,7 @@ static void _call_f_setMinimumDateTime_2175 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setMinimumDateTime (arg1); } @@ -797,7 +797,7 @@ static void _call_f_setMinimumTime_1793 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setMinimumTime (arg1); } @@ -817,7 +817,7 @@ static void _call_f_setSelectedSection_2529 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setSelectedSection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -837,7 +837,7 @@ static void _call_f_setTime_1793 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setTime (arg1); } @@ -859,8 +859,8 @@ static void _call_f_setTimeRange_3478 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); - const QTime &arg2 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); + const QTime &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setTimeRange (arg1, arg2); } @@ -880,7 +880,7 @@ static void _call_f_setTimeSpec_1543 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setTimeSpec (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -915,7 +915,7 @@ static void _call_f_stepBy_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->stepBy (arg1); } @@ -967,8 +967,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDateTimeEdit::tr (arg1, arg2)); } @@ -991,9 +991,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDateTimeEdit::tr (arg1, arg2, arg3)); } @@ -1014,8 +1014,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDateTimeEdit::trUtf8 (arg1, arg2)); } @@ -1038,9 +1038,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDateTimeEdit::trUtf8 (arg1, arg2, arg3)); } @@ -2133,7 +2133,7 @@ static void _call_ctor_QDateTimeEdit_Adaptor_1315 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDateTimeEdit_Adaptor (arg1)); } @@ -2153,8 +2153,8 @@ static void _call_ctor_QDateTimeEdit_Adaptor_3382 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDateTimeEdit_Adaptor (arg1, arg2)); } @@ -2174,8 +2174,8 @@ static void _call_ctor_QDateTimeEdit_Adaptor_2983 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QDate &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDateTimeEdit_Adaptor (arg1, arg2)); } @@ -2195,8 +2195,8 @@ static void _call_ctor_QDateTimeEdit_Adaptor_3000 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QTime &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDateTimeEdit_Adaptor (arg1, arg2)); } @@ -2358,9 +2358,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->fp_QDateTimeEdit_create_2208 (arg1, arg2, arg3); } @@ -2379,7 +2379,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDateTimeEdit_Adaptor *)cls)->emitter_QDateTimeEdit_customContextMenuRequested_1916 (arg1); } @@ -2421,7 +2421,7 @@ static void _call_emitter_dateChanged_1776 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ((QDateTimeEdit_Adaptor *)cls)->emitter_QDateTimeEdit_dateChanged_1776 (arg1); } @@ -2439,7 +2439,7 @@ static void _call_emitter_dateTimeChanged_2175 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ((QDateTimeEdit_Adaptor *)cls)->emitter_QDateTimeEdit_dateTimeChanged_2175 (arg1); } @@ -2482,8 +2482,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->fp_QDateTimeEdit_destroy_1620 (arg1, arg2); } @@ -2502,7 +2502,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDateTimeEdit_Adaptor *)cls)->emitter_QDateTimeEdit_destroyed_1302 (arg1); } @@ -2945,7 +2945,7 @@ static void _call_fp_initStyleOption_c2572 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->fp_QDateTimeEdit_initStyleOption_c2572 (arg1); } @@ -3346,7 +3346,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDateTimeEdit_Adaptor *)cls)->fp_QDateTimeEdit_receivers_c1731 (arg1)); } @@ -3417,7 +3417,7 @@ static void _call_fp_setLineEdit_1485 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLineEdit *arg1 = args.read (heap); + QLineEdit *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->fp_QDateTimeEdit_setLineEdit_1485 (arg1); } @@ -3617,7 +3617,7 @@ static void _call_emitter_timeChanged_1793 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ((QDateTimeEdit_Adaptor *)cls)->emitter_QDateTimeEdit_timeChanged_1793 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDesktopServices.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDesktopServices.cc index 0f013a81a..9959ac3fa 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDesktopServices.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDesktopServices.cc @@ -67,7 +67,7 @@ static void _call_f_displayName_3841 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QDesktopServices::displayName (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -86,7 +86,7 @@ static void _call_f_openUrl_1701 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QDesktopServices::openUrl (arg1)); } @@ -109,9 +109,9 @@ static void _call_f_setUrlHandler_4842 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); - const char *arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QDesktopServices::setUrlHandler (arg1, arg2, arg3); } @@ -131,7 +131,7 @@ static void _call_f_storageLocation_3841 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QDesktopServices::storageLocation (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -150,7 +150,7 @@ static void _call_f_unsetUrlHandler_2025 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QDesktopServices::unsetUrlHandler (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDesktopWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDesktopWidget.cc index b00cd090c..dbfa6d2a6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDesktopWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDesktopWidget.cc @@ -111,7 +111,7 @@ static void _call_f_availableGeometry_c767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((const QRect)((QDesktopWidget *)cls)->availableGeometry (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_availableGeometry_c2010 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((const QRect)((QDesktopWidget *)cls)->availableGeometry (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_availableGeometry_c1916 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((const QRect)((QDesktopWidget *)cls)->availableGeometry (arg1)); } @@ -213,7 +213,7 @@ static void _call_f_screen_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QWidget *)((QDesktopWidget *)cls)->screen (arg1)); } @@ -247,7 +247,7 @@ static void _call_f_screenGeometry_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((const QRect)((QDesktopWidget *)cls)->screenGeometry (arg1)); } @@ -266,7 +266,7 @@ static void _call_f_screenGeometry_c2010 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((const QRect)((QDesktopWidget *)cls)->screenGeometry (arg1)); } @@ -285,7 +285,7 @@ static void _call_f_screenGeometry_c1916 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((const QRect)((QDesktopWidget *)cls)->screenGeometry (arg1)); } @@ -304,7 +304,7 @@ static void _call_f_screenNumber_c2010 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args ? args.read (heap) : (const QWidget *)(0); + const QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QDesktopWidget *)cls)->screenNumber (arg1)); } @@ -323,7 +323,7 @@ static void _call_f_screenNumber_c1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDesktopWidget *)cls)->screenNumber (arg1)); } @@ -344,8 +344,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDesktopWidget::tr (arg1, arg2)); } @@ -368,9 +368,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDesktopWidget::tr (arg1, arg2, arg3)); } @@ -391,8 +391,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDesktopWidget::trUtf8 (arg1, arg2)); } @@ -415,9 +415,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDesktopWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1437,9 +1437,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->fp_QDesktopWidget_create_2208 (arg1, arg2, arg3); } @@ -1458,7 +1458,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDesktopWidget_Adaptor *)cls)->emitter_QDesktopWidget_customContextMenuRequested_1916 (arg1); } @@ -1502,8 +1502,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->fp_QDesktopWidget_destroy_1620 (arg1, arg2); } @@ -1522,7 +1522,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDesktopWidget_Adaptor *)cls)->emitter_QDesktopWidget_destroyed_1302 (arg1); } @@ -2295,7 +2295,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDesktopWidget_Adaptor *)cls)->fp_QDesktopWidget_receivers_c1731 (arg1)); } @@ -2352,7 +2352,7 @@ static void _call_emitter_resized_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDesktopWidget_Adaptor *)cls)->emitter_QDesktopWidget_resized_767 (arg1); } @@ -2370,7 +2370,7 @@ static void _call_emitter_screenCountChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDesktopWidget_Adaptor *)cls)->emitter_QDesktopWidget_screenCountChanged_767 (arg1); } @@ -2604,7 +2604,7 @@ static void _call_emitter_workAreaResized_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDesktopWidget_Adaptor *)cls)->emitter_QDesktopWidget_workAreaResized_767 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDial.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDial.cc index bbae271ac..abef65afa 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDial.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDial.cc @@ -172,7 +172,7 @@ static void _call_f_setNotchTarget_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial *)cls)->setNotchTarget (arg1); } @@ -192,7 +192,7 @@ static void _call_f_setNotchesVisible_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial *)cls)->setNotchesVisible (arg1); } @@ -212,7 +212,7 @@ static void _call_f_setWrapping_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial *)cls)->setWrapping (arg1); } @@ -264,8 +264,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDial::tr (arg1, arg2)); } @@ -288,9 +288,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDial::tr (arg1, arg2, arg3)); } @@ -311,8 +311,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDial::trUtf8 (arg1, arg2)); } @@ -335,9 +335,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDial::trUtf8 (arg1, arg2, arg3)); } @@ -1273,7 +1273,7 @@ static void _call_ctor_QDial_Adaptor_1315 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDial_Adaptor (arg1)); } @@ -1315,7 +1315,7 @@ static void _call_emitter_actionTriggered_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDial_Adaptor *)cls)->emitter_QDial_actionTriggered_767 (arg1); } @@ -1433,9 +1433,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->fp_QDial_create_2208 (arg1, arg2, arg3); } @@ -1454,7 +1454,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDial_Adaptor *)cls)->emitter_QDial_customContextMenuRequested_1916 (arg1); } @@ -1498,8 +1498,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->fp_QDial_destroy_1620 (arg1, arg2); } @@ -1518,7 +1518,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDial_Adaptor *)cls)->emitter_QDial_destroyed_1302 (arg1); } @@ -1923,7 +1923,7 @@ static void _call_fp_initStyleOption_c2476 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSlider *arg1 = args.read (heap); + QStyleOptionSlider *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->fp_QDial_initStyleOption_c2476 (arg1); } @@ -2312,8 +2312,8 @@ static void _call_emitter_rangeChanged_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QDial_Adaptor *)cls)->emitter_QDial_rangeChanged_1426 (arg1, arg2); } @@ -2331,7 +2331,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDial_Adaptor *)cls)->fp_QDial_receivers_c1731 (arg1)); } @@ -2420,9 +2420,9 @@ static void _call_fp_setRepeatAction_4599 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args ? args.read (heap) : (int)(500); - int arg3 = args ? args.read (heap) : (int)(50); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (500, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->fp_QDial_setRepeatAction_4599 (arg1, arg2, arg3); } @@ -2532,7 +2532,7 @@ static void _call_emitter_sliderMoved_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDial_Adaptor *)cls)->emitter_QDial_sliderMoved_767 (arg1); } @@ -2665,7 +2665,7 @@ static void _call_emitter_valueChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDial_Adaptor *)cls)->emitter_QDial_valueChanged_767 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDialog.cc index ac872b642..0a0f9eb84 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDialog.cc @@ -127,7 +127,7 @@ static void _call_f_done_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->done (arg1); } @@ -269,7 +269,7 @@ static void _call_f_setExtension_1315 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->setExtension (arg1); } @@ -289,7 +289,7 @@ static void _call_f_setModal_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->setModal (arg1); } @@ -309,7 +309,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -329,7 +329,7 @@ static void _call_f_setResult_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->setResult (arg1); } @@ -349,7 +349,7 @@ static void _call_f_setSizeGripEnabled_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->setSizeGripEnabled (arg1); } @@ -369,7 +369,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->setVisible (arg1); } @@ -389,7 +389,7 @@ static void _call_f_showExtension_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->showExtension (arg1); } @@ -426,8 +426,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDialog::tr (arg1, arg2)); } @@ -450,9 +450,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDialog::tr (arg1, arg2, arg3)); } @@ -473,8 +473,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDialog::trUtf8 (arg1, arg2)); } @@ -497,9 +497,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDialog::trUtf8 (arg1, arg2, arg3)); } @@ -1453,8 +1453,8 @@ static void _call_ctor_QDialog_Adaptor_3702 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QDialog_Adaptor (arg1, arg2)); } @@ -1530,7 +1530,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->fp_QDialog_adjustPosition_1315 (arg1); } @@ -1649,9 +1649,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->fp_QDialog_create_2208 (arg1, arg2, arg3); } @@ -1670,7 +1670,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDialog_Adaptor *)cls)->emitter_QDialog_customContextMenuRequested_1916 (arg1); } @@ -1714,8 +1714,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->fp_QDialog_destroy_1620 (arg1, arg2); } @@ -1734,7 +1734,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDialog_Adaptor *)cls)->emitter_QDialog_destroyed_1302 (arg1); } @@ -1993,7 +1993,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDialog_Adaptor *)cls)->emitter_QDialog_finished_767 (arg1); } @@ -2549,7 +2549,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDialog_Adaptor *)cls)->fp_QDialog_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDialogButtonBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDialogButtonBox.cc index 70c3a1003..9660546af 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDialogButtonBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDialogButtonBox.cc @@ -115,8 +115,8 @@ static void _call_f_addButton_5247 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox *)cls)->addButton (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -138,8 +138,8 @@ static void _call_f_addButton_5113 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPushButton *)((QDialogButtonBox *)cls)->addButton (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -158,7 +158,7 @@ static void _call_f_addButton_3611 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPushButton *)((QDialogButtonBox *)cls)->addButton (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -177,7 +177,7 @@ static void _call_f_button_c3611 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPushButton *)((QDialogButtonBox *)cls)->button (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -196,7 +196,7 @@ static void _call_f_buttonRole_c2159 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDialogButtonBox *)cls)->buttonRole (arg1))); } @@ -276,7 +276,7 @@ static void _call_f_removeButton_2159 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox *)cls)->removeButton (arg1); } @@ -296,7 +296,7 @@ static void _call_f_setCenterButtons_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox *)cls)->setCenterButtons (arg1); } @@ -316,7 +316,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -336,7 +336,7 @@ static void _call_f_setStandardButtons_4307 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox *)cls)->setStandardButtons (arg1); } @@ -356,7 +356,7 @@ static void _call_f_standardButton_c2159 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDialogButtonBox *)cls)->standardButton (arg1))); } @@ -392,8 +392,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDialogButtonBox::tr (arg1, arg2)); } @@ -416,9 +416,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDialogButtonBox::tr (arg1, arg2, arg3)); } @@ -439,8 +439,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDialogButtonBox::trUtf8 (arg1, arg2)); } @@ -463,9 +463,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDialogButtonBox::trUtf8 (arg1, arg2, arg3)); } @@ -1392,7 +1392,7 @@ static void _call_ctor_QDialogButtonBox_Adaptor_1315 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDialogButtonBox_Adaptor (arg1)); } @@ -1412,8 +1412,8 @@ static void _call_ctor_QDialogButtonBox_Adaptor_3120 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDialogButtonBox_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1435,9 +1435,9 @@ static void _call_ctor_QDialogButtonBox_Adaptor_7319 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::Horizontal)); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QFlags arg1 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::Horizontal), heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDialogButtonBox_Adaptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -1541,7 +1541,7 @@ static void _call_emitter_clicked_2159 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ((QDialogButtonBox_Adaptor *)cls)->emitter_QDialogButtonBox_clicked_2159 (arg1); } @@ -1611,9 +1611,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->fp_QDialogButtonBox_create_2208 (arg1, arg2, arg3); } @@ -1632,7 +1632,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDialogButtonBox_Adaptor *)cls)->emitter_QDialogButtonBox_customContextMenuRequested_1916 (arg1); } @@ -1676,8 +1676,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->fp_QDialogButtonBox_destroy_1620 (arg1, arg2); } @@ -1696,7 +1696,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDialogButtonBox_Adaptor *)cls)->emitter_QDialogButtonBox_destroyed_1302 (arg1); } @@ -2483,7 +2483,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDialogButtonBox_Adaptor *)cls)->fp_QDialogButtonBox_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDirIterator.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDirIterator.cc index 3fcd35ee3..506384f5a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDirIterator.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDirIterator.cc @@ -231,8 +231,8 @@ static void _call_ctor_QDirIterator_Adaptor_5251 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QDirIterator::NoIteratorFlags); + const QDir &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDirIterator::NoIteratorFlags, heap); ret.write (new QDirIterator_Adaptor (arg1, arg2)); } @@ -252,8 +252,8 @@ static void _call_ctor_QDirIterator_Adaptor_5595 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QDirIterator::NoIteratorFlags); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDirIterator::NoIteratorFlags, heap); ret.write (new QDirIterator_Adaptor (arg1, arg2)); } @@ -275,9 +275,9 @@ static void _call_ctor_QDirIterator_Adaptor_7717 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QDirIterator::NoIteratorFlags); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDirIterator::NoIteratorFlags, heap); ret.write (new QDirIterator_Adaptor (arg1, arg2, arg3)); } @@ -301,10 +301,10 @@ static void _call_ctor_QDirIterator_Adaptor_10046 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QDir::NoFilter); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QDirIterator::NoIteratorFlags); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoFilter, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDirIterator::NoIteratorFlags, heap); ret.write (new QDirIterator_Adaptor (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDirModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDirModel.cc index 5689be089..fb87d9400 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDirModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDirModel.cc @@ -75,7 +75,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QDirModel *)cls)->columnCount (arg1)); } @@ -96,8 +96,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QDirModel *)cls)->data (arg1, arg2)); } @@ -124,11 +124,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -147,7 +147,7 @@ static void _call_f_fileIcon_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QDirModel *)cls)->fileIcon (arg1)); } @@ -166,7 +166,7 @@ static void _call_f_fileInfo_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFileInfo)((QDirModel *)cls)->fileInfo (arg1)); } @@ -185,7 +185,7 @@ static void _call_f_fileName_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDirModel *)cls)->fileName (arg1)); } @@ -204,7 +204,7 @@ static void _call_f_filePath_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDirModel *)cls)->filePath (arg1)); } @@ -238,7 +238,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QDirModel *)cls)->flags (arg1)); } @@ -257,7 +257,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QDirModel *)cls)->hasChildren (arg1)); } @@ -280,9 +280,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QDirModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -320,9 +320,9 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QDirModel *)cls)->index (arg1, arg2, arg3)); } @@ -343,8 +343,8 @@ static void _call_f_index_c2684 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QDirModel *)cls)->index (arg1, arg2)); } @@ -363,7 +363,7 @@ static void _call_f_isDir_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel *)cls)->isDir (arg1)); } @@ -412,7 +412,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QDirModel *)cls)->mimeData (arg1)); } @@ -448,8 +448,8 @@ static void _call_f_mkdir_4312 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QDirModel *)cls)->mkdir (arg1, arg2)); } @@ -483,7 +483,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QDirModel *)cls)->parent (arg1)); } @@ -517,7 +517,7 @@ static void _call_f_refresh_2395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->refresh (arg1); } @@ -537,7 +537,7 @@ static void _call_f_remove_2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel *)cls)->remove (arg1)); } @@ -571,7 +571,7 @@ static void _call_f_rmdir_2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel *)cls)->rmdir (arg1)); } @@ -590,7 +590,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QDirModel *)cls)->rowCount (arg1)); } @@ -613,9 +613,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QDirModel *)cls)->setData (arg1, arg2, arg3)); } @@ -634,7 +634,7 @@ static void _call_f_setFilter_2230 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->setFilter (arg1); } @@ -654,7 +654,7 @@ static void _call_f_setIconProvider_2323 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFileIconProvider *arg1 = args.read (heap); + QFileIconProvider *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->setIconProvider (arg1); } @@ -674,7 +674,7 @@ static void _call_f_setLazyChildCount_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->setLazyChildCount (arg1); } @@ -694,7 +694,7 @@ static void _call_f_setNameFilters_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->setNameFilters (arg1); } @@ -714,7 +714,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->setReadOnly (arg1); } @@ -734,7 +734,7 @@ static void _call_f_setResolveSymlinks_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->setResolveSymlinks (arg1); } @@ -754,7 +754,7 @@ static void _call_f_setSorting_2418 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->setSorting (arg1); } @@ -776,8 +776,8 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->sort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -829,8 +829,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDirModel::tr (arg1, arg2)); } @@ -853,9 +853,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDirModel::tr (arg1, arg2, arg3)); } @@ -876,8 +876,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDirModel::trUtf8 (arg1, arg2)); } @@ -900,9 +900,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDirModel::trUtf8 (arg1, arg2, arg3)); } @@ -1732,10 +1732,10 @@ static void _call_ctor_QDirModel_Adaptor_8063 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); - QFlags arg3 = args.read > (heap); - QObject *arg4 = args ? args.read (heap) : (QObject *)(0); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); + QObject *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDirModel_Adaptor (arg1, arg2, arg3, arg4)); } @@ -1753,7 +1753,7 @@ static void _call_ctor_QDirModel_Adaptor_1302 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDirModel_Adaptor (arg1)); } @@ -1775,9 +1775,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->fp_QDirModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1800,9 +1800,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->fp_QDirModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1829,11 +1829,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->fp_QDirModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1859,11 +1859,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->fp_QDirModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1885,9 +1885,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->fp_QDirModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1910,9 +1910,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->fp_QDirModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -1994,8 +1994,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->fp_QDirModel_changePersistentIndex_4682 (arg1, arg2); } @@ -2016,8 +2016,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->fp_QDirModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -2087,9 +2087,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QDirModel_Adaptor *)cls)->fp_QDirModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -2111,9 +2111,9 @@ static void _call_fp_createIndex_c2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QDirModel_Adaptor *)cls)->fp_QDirModel_createIndex_c2085 (arg1, arg2, arg3)); } @@ -2135,9 +2135,9 @@ static void _call_fp_createIndex_c2416 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quint32 arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quint32 arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QDirModel_Adaptor *)cls)->fp_QDirModel_createIndex_c2416 (arg1, arg2, arg3)); } @@ -2207,8 +2207,8 @@ static void _call_emitter_dataChanged_4682 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QDirModel_Adaptor *)cls)->emitter_QDirModel_dataChanged_4682 (arg1, arg2); } @@ -2232,10 +2232,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->fp_QDirModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -2253,7 +2253,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDirModel_Adaptor *)cls)->emitter_QDirModel_destroyed_1302 (arg1); } @@ -2332,8 +2332,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->fp_QDirModel_encodeData_c4599 (arg1, arg2); } @@ -2609,9 +2609,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QDirModel_Adaptor *)cls)->emitter_QDirModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2881,7 +2881,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDirModel_Adaptor *)cls)->fp_QDirModel_receivers_c1731 (arg1)); } @@ -3116,7 +3116,7 @@ static void _call_fp_setRoleNames_3419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHash &arg1 = args.read & > (heap); + const QHash &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->fp_QDirModel_setRoleNames_3419 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDockWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDockWidget.cc index 5c37909d0..68322e8bc 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDockWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDockWidget.cc @@ -142,7 +142,7 @@ static void _call_f_isAreaAllowed_c2123 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QDockWidget *)cls)->isAreaAllowed (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -176,7 +176,7 @@ static void _call_f_setAllowedAreas_2819 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget *)cls)->setAllowedAreas (arg1); } @@ -196,7 +196,7 @@ static void _call_f_setFeatures_4039 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget *)cls)->setFeatures (arg1); } @@ -216,7 +216,7 @@ static void _call_f_setFloating_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget *)cls)->setFloating (arg1); } @@ -236,7 +236,7 @@ static void _call_f_setTitleBarWidget_1315 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget *)cls)->setTitleBarWidget (arg1); } @@ -256,7 +256,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget *)cls)->setWidget (arg1); } @@ -323,8 +323,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDockWidget::tr (arg1, arg2)); } @@ -347,9 +347,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDockWidget::tr (arg1, arg2, arg3)); } @@ -370,8 +370,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDockWidget::trUtf8 (arg1, arg2)); } @@ -394,9 +394,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDockWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1330,9 +1330,9 @@ static void _call_ctor_QDockWidget_Adaptor_5619 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QDockWidget_Adaptor (arg1, arg2, arg3)); } @@ -1352,8 +1352,8 @@ static void _call_ctor_QDockWidget_Adaptor_3702 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QDockWidget_Adaptor (arg1, arg2)); } @@ -1395,7 +1395,7 @@ static void _call_emitter_allowedAreasChanged_2819 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_allowedAreasChanged_2819 (arg1); } @@ -1513,9 +1513,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->fp_QDockWidget_create_2208 (arg1, arg2, arg3); } @@ -1534,7 +1534,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_customContextMenuRequested_1916 (arg1); } @@ -1578,8 +1578,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->fp_QDockWidget_destroy_1620 (arg1, arg2); } @@ -1598,7 +1598,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_destroyed_1302 (arg1); } @@ -1640,7 +1640,7 @@ static void _call_emitter_dockLocationChanged_2123 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_dockLocationChanged_2123 (arg1); } @@ -1851,7 +1851,7 @@ static void _call_emitter_featuresChanged_4039 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_featuresChanged_4039 (arg1); } @@ -2039,7 +2039,7 @@ static void _call_fp_initStyleOption_c2862 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionDockWidget *arg1 = args.read (heap); + QStyleOptionDockWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->fp_QDockWidget_initStyleOption_c2862 (arg1); } @@ -2426,7 +2426,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDockWidget_Adaptor *)cls)->fp_QDockWidget_receivers_c1731 (arg1)); } @@ -2636,7 +2636,7 @@ static void _call_emitter_topLevelChanged_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_topLevelChanged_864 (arg1); } @@ -2669,7 +2669,7 @@ static void _call_emitter_visibilityChanged_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_visibilityChanged_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDoubleSpinBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDoubleSpinBox.cc index f3b9fdebe..d1b95e16e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDoubleSpinBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDoubleSpinBox.cc @@ -143,7 +143,7 @@ static void _call_f_fixup_c1330 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->fixup (arg1); } @@ -208,7 +208,7 @@ static void _call_f_setDecimals_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setDecimals (arg1); } @@ -228,7 +228,7 @@ static void _call_f_setMaximum_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setMaximum (arg1); } @@ -248,7 +248,7 @@ static void _call_f_setMinimum_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setMinimum (arg1); } @@ -268,7 +268,7 @@ static void _call_f_setPrefix_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setPrefix (arg1); } @@ -290,8 +290,8 @@ static void _call_f_setRange_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setRange (arg1, arg2); } @@ -311,7 +311,7 @@ static void _call_f_setSingleStep_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setSingleStep (arg1); } @@ -331,7 +331,7 @@ static void _call_f_setSuffix_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setSuffix (arg1); } @@ -351,7 +351,7 @@ static void _call_f_setValue_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setValue (arg1); } @@ -401,7 +401,7 @@ static void _call_f_textFromValue_c1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDoubleSpinBox *)cls)->textFromValue (arg1)); } @@ -422,8 +422,8 @@ static void _call_f_validate_c2171 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDoubleSpinBox *)cls)->validate (arg1, arg2))); } @@ -457,7 +457,7 @@ static void _call_f_valueFromText_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QDoubleSpinBox *)cls)->valueFromText (arg1)); } @@ -478,8 +478,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDoubleSpinBox::tr (arg1, arg2)); } @@ -502,9 +502,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDoubleSpinBox::tr (arg1, arg2, arg3)); } @@ -525,8 +525,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDoubleSpinBox::trUtf8 (arg1, arg2)); } @@ -549,9 +549,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDoubleSpinBox::trUtf8 (arg1, arg2, arg3)); } @@ -1573,7 +1573,7 @@ static void _call_ctor_QDoubleSpinBox_Adaptor_1315 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDoubleSpinBox_Adaptor (arg1)); } @@ -1735,9 +1735,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->fp_QDoubleSpinBox_create_2208 (arg1, arg2, arg3); } @@ -1756,7 +1756,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDoubleSpinBox_Adaptor *)cls)->emitter_QDoubleSpinBox_customContextMenuRequested_1916 (arg1); } @@ -1800,8 +1800,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->fp_QDoubleSpinBox_destroy_1620 (arg1, arg2); } @@ -1820,7 +1820,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDoubleSpinBox_Adaptor *)cls)->emitter_QDoubleSpinBox_destroyed_1302 (arg1); } @@ -2263,7 +2263,7 @@ static void _call_fp_initStyleOption_c2572 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->fp_QDoubleSpinBox_initStyleOption_c2572 (arg1); } @@ -2664,7 +2664,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDoubleSpinBox_Adaptor *)cls)->fp_QDoubleSpinBox_receivers_c1731 (arg1)); } @@ -2735,7 +2735,7 @@ static void _call_fp_setLineEdit_1485 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLineEdit *arg1 = args.read (heap); + QLineEdit *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->fp_QDoubleSpinBox_setLineEdit_1485 (arg1); } @@ -3000,7 +3000,7 @@ static void _call_emitter_valueChanged_1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QDoubleSpinBox_Adaptor *)cls)->emitter_QDoubleSpinBox_valueChanged_1071 (arg1); } @@ -3018,7 +3018,7 @@ static void _call_emitter_valueChanged_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDoubleSpinBox_Adaptor *)cls)->emitter_QDoubleSpinBox_valueChanged_2025 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDoubleValidator.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDoubleValidator.cc index 546fede71..d13739d6d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDoubleValidator.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDoubleValidator.cc @@ -114,7 +114,7 @@ static void _call_f_setBottom_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator *)cls)->setBottom (arg1); } @@ -134,7 +134,7 @@ static void _call_f_setDecimals_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator *)cls)->setDecimals (arg1); } @@ -154,7 +154,7 @@ static void _call_f_setNotation_3014 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator *)cls)->setNotation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -178,9 +178,9 @@ static void _call_f_setRange_2693 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator *)cls)->setRange (arg1, arg2, arg3); } @@ -200,7 +200,7 @@ static void _call_f_setTop_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator *)cls)->setTop (arg1); } @@ -237,8 +237,8 @@ static void _call_f_validate_c2171 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDoubleValidator *)cls)->validate (arg1, arg2))); } @@ -259,8 +259,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDoubleValidator::tr (arg1, arg2)); } @@ -283,9 +283,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDoubleValidator::tr (arg1, arg2, arg3)); } @@ -306,8 +306,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDoubleValidator::trUtf8 (arg1, arg2)); } @@ -330,9 +330,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDoubleValidator::trUtf8 (arg1, arg2, arg3)); } @@ -567,7 +567,7 @@ static void _call_ctor_QDoubleValidator_Adaptor_1302 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QDoubleValidator_Adaptor (arg1)); } @@ -591,10 +591,10 @@ static void _call_ctor_QDoubleValidator_Adaptor_3887 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - int arg3 = args.read (heap); - QObject *arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + QObject *arg4 = gsi::arg_reader() (args, heap); ret.write (new QDoubleValidator_Adaptor (arg1, arg2, arg3, arg4)); } @@ -660,7 +660,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDoubleValidator_Adaptor *)cls)->emitter_QDoubleValidator_destroyed_1302 (arg1); } @@ -775,7 +775,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDoubleValidator_Adaptor *)cls)->fp_QDoubleValidator_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDrag.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDrag.cc index c873dc03a..5b1fd2f4a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDrag.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDrag.cc @@ -72,7 +72,7 @@ static void _call_f_exec_2456 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(Qt::MoveAction); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MoveAction, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDrag *)cls)->exec (arg1))); } @@ -93,8 +93,8 @@ static void _call_f_exec_4108 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDrag *)cls)->exec (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()))); } @@ -160,8 +160,8 @@ static void _call_f_setDragCursor_3669 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag *)cls)->setDragCursor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -181,7 +181,7 @@ static void _call_f_setHotSpot_1916 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag *)cls)->setHotSpot (arg1); } @@ -201,7 +201,7 @@ static void _call_f_setMimeData_1473 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMimeData *arg1 = args.read (heap); + QMimeData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag *)cls)->setMimeData (arg1); } @@ -221,7 +221,7 @@ static void _call_f_setPixmap_2017 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag *)cls)->setPixmap (arg1); } @@ -256,7 +256,7 @@ static void _call_f_start_2456 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(Qt::CopyAction); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::CopyAction, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDrag *)cls)->start (arg1))); } @@ -292,8 +292,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDrag::tr (arg1, arg2)); } @@ -316,9 +316,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDrag::tr (arg1, arg2, arg3)); } @@ -339,8 +339,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QDrag::trUtf8 (arg1, arg2)); } @@ -363,9 +363,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QDrag::trUtf8 (arg1, arg2, arg3)); } @@ -562,7 +562,7 @@ static void _call_ctor_QDrag_Adaptor_1315 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QDrag_Adaptor (arg1)); } @@ -580,7 +580,7 @@ static void _call_emitter_actionChanged_1760 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QDrag_Adaptor *)cls)->emitter_QDrag_actionChanged_1760 (arg1); } @@ -646,7 +646,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDrag_Adaptor *)cls)->emitter_QDrag_destroyed_1302 (arg1); } @@ -737,7 +737,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDrag_Adaptor *)cls)->fp_QDrag_receivers_c1731 (arg1)); } @@ -769,7 +769,7 @@ static void _call_emitter_targetChanged_1315 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ((QDrag_Adaptor *)cls)->emitter_QDrag_targetChanged_1315 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDragEnterEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDragEnterEvent.cc index 6b4304900..130ad5c06 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDragEnterEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDragEnterEvent.cc @@ -144,11 +144,11 @@ static void _call_ctor_QDragEnterEvent_Adaptor_11787 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); - const QMimeData *arg3 = args.read (heap); - QFlags arg4 = args.read > (heap); - QFlags arg5 = args.read > (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + const QMimeData *arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = gsi::arg_reader >() (args, heap); + QFlags arg5 = gsi::arg_reader >() (args, heap); ret.write (new QDragEnterEvent_Adaptor (arg1, arg2, arg3, arg4, arg5)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDragMoveEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDragMoveEvent.cc index 69625aaf1..60c0dbd04 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDragMoveEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDragMoveEvent.cc @@ -70,7 +70,7 @@ static void _call_f_accept_1792 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDragMoveEvent *)cls)->accept (arg1); } @@ -121,7 +121,7 @@ static void _call_f_ignore_1792 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDragMoveEvent *)cls)->ignore (arg1); } @@ -244,12 +244,12 @@ static void _call_ctor_QDragMoveEvent_Adaptor_13244 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); - const QMimeData *arg3 = args.read (heap); - QFlags arg4 = args.read > (heap); - QFlags arg5 = args.read > (heap); - const qt_gsi::Converter::target_type & arg6 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::DragMove)); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + const QMimeData *arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = gsi::arg_reader >() (args, heap); + QFlags arg5 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg6 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::DragMove), heap); ret.write (new QDragMoveEvent_Adaptor (arg1, arg2, arg3, arg4, arg5, qt_gsi::QtToCppAdaptor(arg6).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDragResponseEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDragResponseEvent.cc index 319c7bc81..cb7eeda4d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDragResponseEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDragResponseEvent.cc @@ -101,7 +101,7 @@ static void _call_ctor_QDragResponseEvent_Adaptor_864 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write (new QDragResponseEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQDropEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQDropEvent.cc index 5f5a71db4..5b1d8c418 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQDropEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQDropEvent.cc @@ -84,7 +84,7 @@ static void _call_f_encodedData_c1731 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QDropEvent *)cls)->encodedData (arg1)); } @@ -103,7 +103,7 @@ static void _call_f_format_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((const char *)((QDropEvent *)cls)->format (arg1)); } @@ -212,7 +212,7 @@ static void _call_f_provides_c1731 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDropEvent *)cls)->provides (arg1)); } @@ -231,7 +231,7 @@ static void _call_f_setDropAction_1760 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDropEvent *)cls)->setDropAction (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -426,12 +426,12 @@ static void _call_ctor_QDropEvent_Adaptor_13244 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); - const QMimeData *arg3 = args.read (heap); - QFlags arg4 = args.read > (heap); - QFlags arg5 = args.read > (heap); - const qt_gsi::Converter::target_type & arg6 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::Drop)); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + const QMimeData *arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = gsi::arg_reader >() (args, heap); + QFlags arg5 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg6 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::Drop), heap); ret.write (new QDropEvent_Adaptor (arg1, arg2, arg3, arg4, arg5, qt_gsi::QtToCppAdaptor(arg6).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQErrorMessage.cc b/src/gsiqt/qt4/QtGui/gsiDeclQErrorMessage.cc index 85ea32098..e5888a858 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQErrorMessage.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQErrorMessage.cc @@ -111,7 +111,7 @@ static void _call_f_showMessage_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage *)cls)->showMessage (arg1); } @@ -133,8 +133,8 @@ static void _call_f_showMessage_3942 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage *)cls)->showMessage (arg1, arg2); } @@ -171,8 +171,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QErrorMessage::tr (arg1, arg2)); } @@ -195,9 +195,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QErrorMessage::tr (arg1, arg2, arg3)); } @@ -218,8 +218,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QErrorMessage::trUtf8 (arg1, arg2)); } @@ -242,9 +242,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QErrorMessage::trUtf8 (arg1, arg2, arg3)); } @@ -1175,7 +1175,7 @@ static void _call_ctor_QErrorMessage_Adaptor_1315 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QErrorMessage_Adaptor (arg1)); } @@ -1251,7 +1251,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->fp_QErrorMessage_adjustPosition_1315 (arg1); } @@ -1370,9 +1370,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->fp_QErrorMessage_create_2208 (arg1, arg2, arg3); } @@ -1391,7 +1391,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QErrorMessage_Adaptor *)cls)->emitter_QErrorMessage_customContextMenuRequested_1916 (arg1); } @@ -1435,8 +1435,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->fp_QErrorMessage_destroy_1620 (arg1, arg2); } @@ -1455,7 +1455,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QErrorMessage_Adaptor *)cls)->emitter_QErrorMessage_destroyed_1302 (arg1); } @@ -1714,7 +1714,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QErrorMessage_Adaptor *)cls)->emitter_QErrorMessage_finished_767 (arg1); } @@ -2270,7 +2270,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QErrorMessage_Adaptor *)cls)->fp_QErrorMessage_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFileDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFileDialog.cc index 5aacb0703..9188dbe69 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFileDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFileDialog.cc @@ -296,7 +296,7 @@ static void _call_f_labelText_c2681 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QFileDialog *)cls)->labelText (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -348,8 +348,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->open (arg1, arg2); } @@ -414,7 +414,7 @@ static void _call_f_restoreState_2309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDialog *)cls)->restoreState (arg1)); } @@ -448,7 +448,7 @@ static void _call_f_selectFile_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->selectFile (arg1); } @@ -468,7 +468,7 @@ static void _call_f_selectFilter_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->selectFilter (arg1); } @@ -488,7 +488,7 @@ static void _call_f_selectNameFilter_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->selectNameFilter (arg1); } @@ -553,7 +553,7 @@ static void _call_f_setAcceptMode_2590 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setAcceptMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -573,7 +573,7 @@ static void _call_f_setConfirmOverwrite_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setConfirmOverwrite (arg1); } @@ -593,7 +593,7 @@ static void _call_f_setDefaultSuffix_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setDefaultSuffix (arg1); } @@ -613,7 +613,7 @@ static void _call_f_setDirectory_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setDirectory (arg1); } @@ -633,7 +633,7 @@ static void _call_f_setDirectory_1681 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setDirectory (arg1); } @@ -653,7 +653,7 @@ static void _call_f_setFileMode_2382 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setFileMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -673,7 +673,7 @@ static void _call_f_setFilter_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setFilter (arg1); } @@ -693,7 +693,7 @@ static void _call_f_setFilter_2230 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setFilter (arg1); } @@ -713,7 +713,7 @@ static void _call_f_setFilters_2437 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setFilters (arg1); } @@ -733,7 +733,7 @@ static void _call_f_setHistory_2437 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setHistory (arg1); } @@ -753,7 +753,7 @@ static void _call_f_setIconProvider_2323 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFileIconProvider *arg1 = args.read (heap); + QFileIconProvider *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setIconProvider (arg1); } @@ -773,7 +773,7 @@ static void _call_f_setItemDelegate_2717 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemDelegate *arg1 = args.read (heap); + QAbstractItemDelegate *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setItemDelegate (arg1); } @@ -795,8 +795,8 @@ static void _call_f_setLabelText_4598 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setLabelText (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -816,7 +816,7 @@ static void _call_f_setNameFilter_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setNameFilter (arg1); } @@ -836,7 +836,7 @@ static void _call_f_setNameFilterDetailsVisible_864 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setNameFilterDetailsVisible (arg1); } @@ -856,7 +856,7 @@ static void _call_f_setNameFilters_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setNameFilters (arg1); } @@ -878,8 +878,8 @@ static void _call_f_setOption_2998 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -899,7 +899,7 @@ static void _call_f_setOptions_2938 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setOptions (arg1); } @@ -919,7 +919,7 @@ static void _call_f_setProxyModel_2566 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractProxyModel *arg1 = args.read (heap); + QAbstractProxyModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setProxyModel (arg1); } @@ -939,7 +939,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setReadOnly (arg1); } @@ -959,7 +959,7 @@ static void _call_f_setResolveSymlinks_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setResolveSymlinks (arg1); } @@ -979,7 +979,7 @@ static void _call_f_setSidebarUrls_2316 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setSidebarUrls (arg1); } @@ -999,7 +999,7 @@ static void _call_f_setViewMode_2409 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setViewMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1019,7 +1019,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setVisible (arg1); } @@ -1054,7 +1054,7 @@ static void _call_f_testOption_c2242 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QFileDialog *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1094,10 +1094,10 @@ static void _call_f_getExistingDirectory_7979 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QFileDialog::ShowDirsOnly); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QFileDialog::ShowDirsOnly, heap); ret.write ((QString)QFileDialog::getExistingDirectory (arg1, arg2, arg3, arg4)); } @@ -1126,12 +1126,12 @@ static void _call_f_getOpenFileName_11122 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - QString *arg5 = args ? args.read (heap) : (QString *)(0); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QString *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QString)QFileDialog::getOpenFileName (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -1160,12 +1160,12 @@ static void _call_f_getOpenFileNames_11122 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - QString *arg5 = args ? args.read (heap) : (QString *)(0); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QString *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QStringList)QFileDialog::getOpenFileNames (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -1194,12 +1194,12 @@ static void _call_f_getSaveFileName_11122 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - QString *arg5 = args ? args.read (heap) : (QString *)(0); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QString *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QString)QFileDialog::getSaveFileName (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -1220,8 +1220,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFileDialog::tr (arg1, arg2)); } @@ -1244,9 +1244,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFileDialog::tr (arg1, arg2, arg3)); } @@ -1267,8 +1267,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFileDialog::trUtf8 (arg1, arg2)); } @@ -1291,9 +1291,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFileDialog::trUtf8 (arg1, arg2, arg3)); } @@ -2340,8 +2340,8 @@ static void _call_ctor_QFileDialog_Adaptor_3702 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write (new QFileDialog_Adaptor (arg1, arg2)); } @@ -2365,10 +2365,10 @@ static void _call_ctor_QFileDialog_Adaptor_7066 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QFileDialog_Adaptor (arg1, arg2, arg3, arg4)); } @@ -2444,7 +2444,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->fp_QFileDialog_adjustPosition_1315 (arg1); } @@ -2563,9 +2563,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->fp_QFileDialog_create_2208 (arg1, arg2, arg3); } @@ -2584,7 +2584,7 @@ static void _call_emitter_currentChanged_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_currentChanged_2025 (arg1); } @@ -2602,7 +2602,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_customContextMenuRequested_1916 (arg1); } @@ -2646,8 +2646,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->fp_QFileDialog_destroy_1620 (arg1, arg2); } @@ -2666,7 +2666,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_destroyed_1302 (arg1); } @@ -2684,7 +2684,7 @@ static void _call_emitter_directoryEntered_2025 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_directoryEntered_2025 (arg1); } @@ -2943,7 +2943,7 @@ static void _call_emitter_fileSelected_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_fileSelected_2025 (arg1); } @@ -2961,7 +2961,7 @@ static void _call_emitter_filesSelected_2437 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_filesSelected_2437 (arg1); } @@ -2979,7 +2979,7 @@ static void _call_emitter_filterSelected_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_filterSelected_2025 (arg1); } @@ -2997,7 +2997,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_finished_767 (arg1); } @@ -3553,7 +3553,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFileDialog_Adaptor *)cls)->fp_QFileDialog_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFileIconProvider.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFileIconProvider.cc index da4389198..68aaac014 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFileIconProvider.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFileIconProvider.cc @@ -52,7 +52,7 @@ static void _call_f_icon_c3064 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QIcon)((QFileIconProvider *)cls)->icon (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -71,7 +71,7 @@ static void _call_f_icon_c2174 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QFileIconProvider *)cls)->icon (arg1)); } @@ -90,7 +90,7 @@ static void _call_f_type_c2174 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFileIconProvider *)cls)->type (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFileOpenEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFileOpenEvent.cc index ce5c13e23..b77f48d05 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFileOpenEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFileOpenEvent.cc @@ -124,7 +124,7 @@ static void _call_ctor_QFileOpenEvent_Adaptor_2025 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFileOpenEvent_Adaptor (arg1)); } @@ -142,7 +142,7 @@ static void _call_ctor_QFileOpenEvent_Adaptor_1701 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFileOpenEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFileSystemModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFileSystemModel.cc index d5b09dce5..aeb479112 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFileSystemModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFileSystemModel.cc @@ -77,7 +77,7 @@ static void _call_f_canFetchMore_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel *)cls)->canFetchMore (arg1)); } @@ -96,7 +96,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QFileSystemModel *)cls)->columnCount (arg1)); } @@ -117,8 +117,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QFileSystemModel *)cls)->data (arg1, arg2)); } @@ -145,11 +145,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -168,7 +168,7 @@ static void _call_f_fetchMore_2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->fetchMore (arg1); } @@ -188,7 +188,7 @@ static void _call_f_fileIcon_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QFileSystemModel *)cls)->fileIcon (arg1)); } @@ -207,7 +207,7 @@ static void _call_f_fileInfo_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFileInfo)((QFileSystemModel *)cls)->fileInfo (arg1)); } @@ -226,7 +226,7 @@ static void _call_f_fileName_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFileSystemModel *)cls)->fileName (arg1)); } @@ -245,7 +245,7 @@ static void _call_f_filePath_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFileSystemModel *)cls)->filePath (arg1)); } @@ -279,7 +279,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QFileSystemModel *)cls)->flags (arg1)); } @@ -298,7 +298,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel *)cls)->hasChildren (arg1)); } @@ -321,9 +321,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QFileSystemModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -361,9 +361,9 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QFileSystemModel *)cls)->index (arg1, arg2, arg3)); } @@ -384,8 +384,8 @@ static void _call_f_index_c2684 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QFileSystemModel *)cls)->index (arg1, arg2)); } @@ -404,7 +404,7 @@ static void _call_f_isDir_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel *)cls)->isDir (arg1)); } @@ -438,7 +438,7 @@ static void _call_f_lastModified_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QFileSystemModel *)cls)->lastModified (arg1)); } @@ -457,7 +457,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QFileSystemModel *)cls)->mimeData (arg1)); } @@ -493,8 +493,8 @@ static void _call_f_mkdir_4312 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel *)cls)->mkdir (arg1, arg2)); } @@ -513,7 +513,7 @@ static void _call_f_myComputer_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QFileSystemModel *)cls)->myComputer (arg1)); } @@ -562,7 +562,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel *)cls)->parent (arg1)); } @@ -581,7 +581,7 @@ static void _call_f_permissions_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QFileSystemModel *)cls)->permissions (arg1)); } @@ -600,7 +600,7 @@ static void _call_f_remove_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel *)cls)->remove (arg1)); } @@ -634,7 +634,7 @@ static void _call_f_rmdir_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel *)cls)->rmdir (arg1)); } @@ -683,7 +683,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QFileSystemModel *)cls)->rowCount (arg1)); } @@ -706,9 +706,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QFileSystemModel *)cls)->setData (arg1, arg2, arg3)); } @@ -727,7 +727,7 @@ static void _call_f_setFilter_2230 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->setFilter (arg1); } @@ -747,7 +747,7 @@ static void _call_f_setIconProvider_2323 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFileIconProvider *arg1 = args.read (heap); + QFileIconProvider *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->setIconProvider (arg1); } @@ -767,7 +767,7 @@ static void _call_f_setNameFilterDisables_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->setNameFilterDisables (arg1); } @@ -787,7 +787,7 @@ static void _call_f_setNameFilters_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->setNameFilters (arg1); } @@ -807,7 +807,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->setReadOnly (arg1); } @@ -827,7 +827,7 @@ static void _call_f_setResolveSymlinks_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->setResolveSymlinks (arg1); } @@ -847,7 +847,7 @@ static void _call_f_setRootPath_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel *)cls)->setRootPath (arg1)); } @@ -866,7 +866,7 @@ static void _call_f_size_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QFileSystemModel *)cls)->size (arg1)); } @@ -887,8 +887,8 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->sort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -923,7 +923,7 @@ static void _call_f_type_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFileSystemModel *)cls)->type (arg1)); } @@ -944,8 +944,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFileSystemModel::tr (arg1, arg2)); } @@ -968,9 +968,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFileSystemModel::tr (arg1, arg2, arg3)); } @@ -991,8 +991,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFileSystemModel::trUtf8 (arg1, arg2)); } @@ -1015,9 +1015,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFileSystemModel::trUtf8 (arg1, arg2, arg3)); } @@ -1849,7 +1849,7 @@ static void _call_ctor_QFileSystemModel_Adaptor_1302 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFileSystemModel_Adaptor (arg1)); } @@ -1871,9 +1871,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1896,9 +1896,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1925,11 +1925,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1955,11 +1955,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1981,9 +1981,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -2006,9 +2006,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -2090,8 +2090,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_changePersistentIndex_4682 (arg1, arg2); } @@ -2112,8 +2112,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -2183,9 +2183,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -2207,9 +2207,9 @@ static void _call_fp_createIndex_c2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_createIndex_c2085 (arg1, arg2, arg3)); } @@ -2231,9 +2231,9 @@ static void _call_fp_createIndex_c2416 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quint32 arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quint32 arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_createIndex_c2416 (arg1, arg2, arg3)); } @@ -2303,8 +2303,8 @@ static void _call_emitter_dataChanged_4682 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QFileSystemModel_Adaptor *)cls)->emitter_QFileSystemModel_dataChanged_4682 (arg1, arg2); } @@ -2328,10 +2328,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -2349,7 +2349,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFileSystemModel_Adaptor *)cls)->emitter_QFileSystemModel_destroyed_1302 (arg1); } @@ -2428,8 +2428,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_encodeData_c4599 (arg1, arg2); } @@ -2630,9 +2630,9 @@ static void _call_emitter_fileRenamed_5859 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ((QFileSystemModel_Adaptor *)cls)->emitter_QFileSystemModel_fileRenamed_5859 (arg1, arg2, arg3); } @@ -2729,9 +2729,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QFileSystemModel_Adaptor *)cls)->emitter_QFileSystemModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -3001,7 +3001,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_receivers_c1731 (arg1)); } @@ -3112,7 +3112,7 @@ static void _call_emitter_rootPathChanged_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFileSystemModel_Adaptor *)cls)->emitter_QFileSystemModel_rootPathChanged_2025 (arg1); } @@ -3254,7 +3254,7 @@ static void _call_fp_setRoleNames_3419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHash &arg1 = args.read & > (heap); + const QHash &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_setRoleNames_3419 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFocusEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFocusEvent.cc index 70ebaab3d..291ce6cfa 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFocusEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFocusEvent.cc @@ -157,8 +157,8 @@ static void _call_ctor_QFocusEvent_Adaptor_3334 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason), heap); ret.write (new QFocusEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFocusFrame.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFocusFrame.cc index 039cb6afe..6a9c35550 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFocusFrame.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFocusFrame.cc @@ -112,7 +112,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame *)cls)->setWidget (arg1); } @@ -149,8 +149,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFocusFrame::tr (arg1, arg2)); } @@ -173,9 +173,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFocusFrame::tr (arg1, arg2, arg3)); } @@ -196,8 +196,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFocusFrame::trUtf8 (arg1, arg2)); } @@ -220,9 +220,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFocusFrame::trUtf8 (arg1, arg2, arg3)); } @@ -1083,7 +1083,7 @@ static void _call_ctor_QFocusFrame_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFocusFrame_Adaptor (arg1)); } @@ -1225,9 +1225,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->fp_QFocusFrame_create_2208 (arg1, arg2, arg3); } @@ -1246,7 +1246,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QFocusFrame_Adaptor *)cls)->emitter_QFocusFrame_customContextMenuRequested_1916 (arg1); } @@ -1290,8 +1290,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->fp_QFocusFrame_destroy_1620 (arg1, arg2); } @@ -1310,7 +1310,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFocusFrame_Adaptor *)cls)->emitter_QFocusFrame_destroyed_1302 (arg1); } @@ -1715,7 +1715,7 @@ static void _call_fp_initStyleOption_c1865 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOption *arg1 = args.read (heap); + QStyleOption *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->fp_QFocusFrame_initStyleOption_c1865 (arg1); } @@ -2102,7 +2102,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFocusFrame_Adaptor *)cls)->fp_QFocusFrame_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFont.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFont.cc index 76fa44557..2097bb2c4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFont.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFont.cc @@ -77,10 +77,10 @@ static void _call_ctor_QFont_4099 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(-1); - int arg3 = args ? args.read (heap) : (int)(-1); - bool arg4 = args ? args.read (heap) : (bool)(false); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + bool arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write (new QFont (arg1, arg2, arg3, arg4)); } @@ -101,8 +101,8 @@ static void _call_ctor_QFont_3496 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); - QPaintDevice *arg2 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); + QPaintDevice *arg2 = gsi::arg_reader() (args, heap); ret.write (new QFont (arg1, arg2)); } @@ -121,7 +121,7 @@ static void _call_ctor_QFont_1801 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFont (arg1)); } @@ -230,7 +230,7 @@ static void _call_f_fromString_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFont *)cls)->fromString (arg1)); } @@ -264,7 +264,7 @@ static void _call_f_isCopyOf_c1801 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFont *)cls)->isCopyOf (arg1)); } @@ -388,7 +388,7 @@ static void _call_f_operator_excl__eq__c1801 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFont *)cls)->operator!= (arg1)); } @@ -407,7 +407,7 @@ static void _call_f_operator_lt__c1801 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFont *)cls)->operator< (arg1)); } @@ -426,7 +426,7 @@ static void _call_f_operator_eq__1801 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFont &)((QFont *)cls)->operator= (arg1)); } @@ -445,7 +445,7 @@ static void _call_f_operator_eq__eq__c1801 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFont *)cls)->operator== (arg1)); } @@ -554,7 +554,7 @@ static void _call_f_resolve_c1801 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFont)((QFont *)cls)->resolve (arg1)); } @@ -573,7 +573,7 @@ static void _call_f_setBold_864 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setBold (arg1); } @@ -593,7 +593,7 @@ static void _call_f_setCapitalization_2508 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setCapitalization (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -613,7 +613,7 @@ static void _call_f_setFamily_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setFamily (arg1); } @@ -633,7 +633,7 @@ static void _call_f_setFixedPitch_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setFixedPitch (arg1); } @@ -653,7 +653,7 @@ static void _call_f_setItalic_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setItalic (arg1); } @@ -673,7 +673,7 @@ static void _call_f_setKerning_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setKerning (arg1); } @@ -695,8 +695,8 @@ static void _call_f_setLetterSpacing_3130 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - double arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setLetterSpacing (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -716,7 +716,7 @@ static void _call_f_setOverline_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setOverline (arg1); } @@ -736,7 +736,7 @@ static void _call_f_setPixelSize_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setPixelSize (arg1); } @@ -756,7 +756,7 @@ static void _call_f_setPointSize_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setPointSize (arg1); } @@ -776,7 +776,7 @@ static void _call_f_setPointSizeF_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setPointSizeF (arg1); } @@ -796,7 +796,7 @@ static void _call_f_setRawMode_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setRawMode (arg1); } @@ -816,7 +816,7 @@ static void _call_f_setRawName_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setRawName (arg1); } @@ -836,7 +836,7 @@ static void _call_f_setStretch_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setStretch (arg1); } @@ -856,7 +856,7 @@ static void _call_f_setStrikeOut_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setStrikeOut (arg1); } @@ -876,7 +876,7 @@ static void _call_f_setStyle_1569 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -898,8 +898,8 @@ static void _call_f_setStyleHint_4284 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QFont::PreferDefault)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QFont::PreferDefault), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setStyleHint (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -919,7 +919,7 @@ static void _call_f_setStyleStrategy_2420 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setStyleStrategy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -939,7 +939,7 @@ static void _call_f_setUnderline_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setUnderline (arg1); } @@ -959,7 +959,7 @@ static void _call_f_setWeight_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setWeight (arg1); } @@ -979,7 +979,7 @@ static void _call_f_setWordSpacing_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setWordSpacing (arg1); } @@ -1168,8 +1168,8 @@ static void _call_f_insertSubstitution_3942 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QFont::insertSubstitution (arg1, arg2); } @@ -1191,8 +1191,8 @@ static void _call_f_insertSubstitutions_4354 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QFont::insertSubstitutions (arg1, arg2); } @@ -1212,7 +1212,7 @@ static void _call_f_removeSubstitution_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QFont::removeSubstitution (arg1); } @@ -1232,7 +1232,7 @@ static void _call_f_substitute_2025 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QFont::substitute (arg1)); } @@ -1251,7 +1251,7 @@ static void _call_f_substitutes_2025 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)QFont::substitutes (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFontComboBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFontComboBox.cc index 1410fb676..ab259bc2f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFontComboBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFontComboBox.cc @@ -149,7 +149,7 @@ static void _call_f_setCurrentFont_1801 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox *)cls)->setCurrentFont (arg1); } @@ -169,7 +169,7 @@ static void _call_f_setFontFilters_3550 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox *)cls)->setFontFilters (arg1); } @@ -189,7 +189,7 @@ static void _call_f_setWritingSystem_3214 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox *)cls)->setWritingSystem (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -241,8 +241,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFontComboBox::tr (arg1, arg2)); } @@ -265,9 +265,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFontComboBox::tr (arg1, arg2, arg3)); } @@ -288,8 +288,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFontComboBox::trUtf8 (arg1, arg2)); } @@ -312,9 +312,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFontComboBox::trUtf8 (arg1, arg2, arg3)); } @@ -1268,7 +1268,7 @@ static void _call_ctor_QFontComboBox_Adaptor_1315 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFontComboBox_Adaptor (arg1)); } @@ -1310,7 +1310,7 @@ static void _call_emitter_activated_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_activated_767 (arg1); } @@ -1328,7 +1328,7 @@ static void _call_emitter_activated_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_activated_2025 (arg1); } @@ -1446,9 +1446,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->fp_QFontComboBox_create_2208 (arg1, arg2, arg3); } @@ -1467,7 +1467,7 @@ static void _call_emitter_currentFontChanged_1801 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_currentFontChanged_1801 (arg1); } @@ -1485,7 +1485,7 @@ static void _call_emitter_currentIndexChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_currentIndexChanged_767 (arg1); } @@ -1503,7 +1503,7 @@ static void _call_emitter_currentIndexChanged_2025 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_currentIndexChanged_2025 (arg1); } @@ -1521,7 +1521,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_customContextMenuRequested_1916 (arg1); } @@ -1565,8 +1565,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->fp_QFontComboBox_destroy_1620 (arg1, arg2); } @@ -1585,7 +1585,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_destroyed_1302 (arg1); } @@ -1723,7 +1723,7 @@ static void _call_emitter_editTextChanged_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_editTextChanged_2025 (arg1); } @@ -2028,7 +2028,7 @@ static void _call_emitter_highlighted_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_highlighted_767 (arg1); } @@ -2046,7 +2046,7 @@ static void _call_emitter_highlighted_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_highlighted_2025 (arg1); } @@ -2064,7 +2064,7 @@ static void _call_fp_initStyleOption_c2658 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionComboBox *arg1 = args.read (heap); + QStyleOptionComboBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->fp_QFontComboBox_initStyleOption_c2658 (arg1); } @@ -2451,7 +2451,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFontComboBox_Adaptor *)cls)->fp_QFontComboBox_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFontDatabase.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFontDatabase.cc index b22655625..d016a63e1 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFontDatabase.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFontDatabase.cc @@ -69,8 +69,8 @@ static void _call_f_bold_c3942 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDatabase *)cls)->bold (arg1, arg2)); } @@ -89,7 +89,7 @@ static void _call_f_families_c3214 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QFontDatabase::Any)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QFontDatabase::Any), heap); ret.write ((QStringList)((QFontDatabase *)cls)->families (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -112,9 +112,9 @@ static void _call_f_font_c4601 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QFont)((QFontDatabase *)cls)->font (arg1, arg2, arg3)); } @@ -135,8 +135,8 @@ static void _call_f_isBitmapScalable_c3942 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QFontDatabase *)cls)->isBitmapScalable (arg1, arg2)); } @@ -157,8 +157,8 @@ static void _call_f_isFixedPitch_c3942 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QFontDatabase *)cls)->isFixedPitch (arg1, arg2)); } @@ -179,8 +179,8 @@ static void _call_f_isScalable_c3942 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QFontDatabase *)cls)->isScalable (arg1, arg2)); } @@ -201,8 +201,8 @@ static void _call_f_isSmoothlyScalable_c3942 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QFontDatabase *)cls)->isSmoothlyScalable (arg1, arg2)); } @@ -223,8 +223,8 @@ static void _call_f_italic_c3942 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDatabase *)cls)->italic (arg1, arg2)); } @@ -245,8 +245,8 @@ static void _call_f_pointSizes_3942 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write > ((QList)((QFontDatabase *)cls)->pointSizes (arg1, arg2)); } @@ -267,8 +267,8 @@ static void _call_f_smoothSizes_3942 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QFontDatabase *)cls)->smoothSizes (arg1, arg2)); } @@ -287,7 +287,7 @@ static void _call_f_styleString_1801 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFontDatabase *)cls)->styleString (arg1)); } @@ -306,7 +306,7 @@ static void _call_f_styleString_2197 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontInfo &arg1 = args.read (heap); + const QFontInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFontDatabase *)cls)->styleString (arg1)); } @@ -325,7 +325,7 @@ static void _call_f_styles_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QFontDatabase *)cls)->styles (arg1)); } @@ -346,8 +346,8 @@ static void _call_f_weight_c3942 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QFontDatabase *)cls)->weight (arg1, arg2)); } @@ -381,7 +381,7 @@ static void _call_f_writingSystems_c2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QFontDatabase *)cls)->writingSystems (arg1)); } @@ -400,7 +400,7 @@ static void _call_f_addApplicationFont_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)QFontDatabase::addApplicationFont (arg1)); } @@ -419,7 +419,7 @@ static void _call_f_addApplicationFontFromData_2309 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)QFontDatabase::addApplicationFontFromData (arg1)); } @@ -438,7 +438,7 @@ static void _call_f_applicationFontFamilies_767 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)QFontDatabase::applicationFontFamilies (arg1)); } @@ -472,7 +472,7 @@ static void _call_f_removeApplicationFont_767 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QFontDatabase::removeApplicationFont (arg1)); } @@ -521,7 +521,7 @@ static void _call_f_writingSystemName_3214 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QFontDatabase::writingSystemName (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -540,7 +540,7 @@ static void _call_f_writingSystemSample_3214 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QFontDatabase::writingSystemSample (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFontDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFontDialog.cc index 8fb39cc5c..5740f416b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFontDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFontDialog.cc @@ -144,8 +144,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog *)cls)->open (arg1, arg2); } @@ -195,7 +195,7 @@ static void _call_f_setCurrentFont_1801 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog *)cls)->setCurrentFont (arg1); } @@ -217,8 +217,8 @@ static void _call_f_setOption_4020 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -238,7 +238,7 @@ static void _call_f_setOptions_3960 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog *)cls)->setOptions (arg1); } @@ -258,7 +258,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog *)cls)->setVisible (arg1); } @@ -278,7 +278,7 @@ static void _call_f_testOption_c3264 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QFontDialog *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -305,11 +305,11 @@ static void _call_f_getFont_9719 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args.read (heap); - const QFont &arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); - const QString &arg4 = args.read (heap); - QFlags arg5 = args.read > (heap); + bool *arg1 = gsi::arg_reader() (args, heap); + const QFont &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); + QFlags arg5 = gsi::arg_reader >() (args, heap); ret.write ((QFont)QFontDialog::getFont (arg1, arg2, arg3, arg4, arg5)); } @@ -334,10 +334,10 @@ static void _call_f_getFont_5867 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args.read (heap); - const QFont &arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + bool *arg1 = gsi::arg_reader() (args, heap); + const QFont &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((QFont)QFontDialog::getFont (arg1, arg2, arg3, arg4)); } @@ -360,9 +360,9 @@ static void _call_f_getFont_3950 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args.read (heap); - const QFont &arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + bool *arg1 = gsi::arg_reader() (args, heap); + const QFont &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QFont)QFontDialog::getFont (arg1, arg2, arg3)); } @@ -383,8 +383,8 @@ static void _call_f_getFont_2257 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + bool *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QFont)QFontDialog::getFont (arg1, arg2)); } @@ -405,8 +405,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFontDialog::tr (arg1, arg2)); } @@ -429,9 +429,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFontDialog::tr (arg1, arg2, arg3)); } @@ -452,8 +452,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFontDialog::trUtf8 (arg1, arg2)); } @@ -476,9 +476,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFontDialog::trUtf8 (arg1, arg2, arg3)); } @@ -1430,7 +1430,7 @@ static void _call_ctor_QFontDialog_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFontDialog_Adaptor (arg1)); } @@ -1450,8 +1450,8 @@ static void _call_ctor_QFontDialog_Adaptor_3008 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QFont &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFontDialog_Adaptor (arg1, arg2)); } @@ -1527,7 +1527,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->fp_QFontDialog_adjustPosition_1315 (arg1); } @@ -1646,9 +1646,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->fp_QFontDialog_create_2208 (arg1, arg2, arg3); } @@ -1667,7 +1667,7 @@ static void _call_emitter_currentFontChanged_1801 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ((QFontDialog_Adaptor *)cls)->emitter_QFontDialog_currentFontChanged_1801 (arg1); } @@ -1685,7 +1685,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QFontDialog_Adaptor *)cls)->emitter_QFontDialog_customContextMenuRequested_1916 (arg1); } @@ -1729,8 +1729,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->fp_QFontDialog_destroy_1620 (arg1, arg2); } @@ -1749,7 +1749,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFontDialog_Adaptor *)cls)->emitter_QFontDialog_destroyed_1302 (arg1); } @@ -1982,7 +1982,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QFontDialog_Adaptor *)cls)->emitter_QFontDialog_finished_767 (arg1); } @@ -2123,7 +2123,7 @@ static void _call_emitter_fontSelected_1801 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ((QFontDialog_Adaptor *)cls)->emitter_QFontDialog_fontSelected_1801 (arg1); } @@ -2556,7 +2556,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFontDialog_Adaptor *)cls)->fp_QFontDialog_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFontInfo.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFontInfo.cc index dd002a7f7..0ff0f029a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFontInfo.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFontInfo.cc @@ -51,7 +51,7 @@ static void _call_ctor_QFontInfo_1801 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFontInfo (arg1)); } @@ -70,7 +70,7 @@ static void _call_ctor_QFontInfo_2197 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontInfo &arg1 = args.read (heap); + const QFontInfo &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFontInfo (arg1)); } @@ -164,7 +164,7 @@ static void _call_f_operator_eq__2197 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontInfo &arg1 = args.read (heap); + const QFontInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFontInfo &)((QFontInfo *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFontMetrics.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFontMetrics.cc index 4bef71f67..0c1b46880 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFontMetrics.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFontMetrics.cc @@ -54,7 +54,7 @@ static void _call_ctor_QFontMetrics_1801 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFontMetrics (arg1)); } @@ -75,8 +75,8 @@ static void _call_ctor_QFontMetrics_3496 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); - QPaintDevice *arg2 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); + QPaintDevice *arg2 = gsi::arg_reader() (args, heap); ret.write (new QFontMetrics (arg1, arg2)); } @@ -95,7 +95,7 @@ static void _call_ctor_QFontMetrics_2528 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFontMetrics (arg1)); } @@ -144,7 +144,7 @@ static void _call_f_boundingRect_c899 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QRect)((QFontMetrics *)cls)->boundingRect (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -163,7 +163,7 @@ static void _call_f_boundingRect_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QFontMetrics *)cls)->boundingRect (arg1)); } @@ -190,11 +190,11 @@ static void _call_f_boundingRect_c5872 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); - int *arg5 = args ? args.read (heap) : (int *)(0); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QFontMetrics *)cls)->boundingRect (arg1, arg2, arg3, arg4, arg5)); } @@ -227,14 +227,14 @@ static void _call_f_boundingRect_c6824 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - int arg7 = args ? args.read (heap) : (int)(0); - int *arg8 = args ? args.read (heap) : (int *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + int arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg8 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QFontMetrics *)cls)->boundingRect (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)); } @@ -255,8 +255,8 @@ static void _call_f_charWidth_c2684 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QFontMetrics *)cls)->charWidth (arg1, arg2)); } @@ -296,10 +296,10 @@ static void _call_f_elidedText_c5277 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QFontMetrics *)cls)->elidedText (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -333,7 +333,7 @@ static void _call_f_inFont_c899 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QFontMetrics *)cls)->inFont (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -367,7 +367,7 @@ static void _call_f_leftBearing_c899 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFontMetrics *)cls)->leftBearing (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -461,7 +461,7 @@ static void _call_f_operator_excl__eq__2528 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontMetrics *)cls)->operator != (arg1)); } @@ -480,7 +480,7 @@ static void _call_f_operator_excl__eq__c2528 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontMetrics *)cls)->operator != (arg1)); } @@ -499,7 +499,7 @@ static void _call_f_operator_eq__2528 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFontMetrics &)((QFontMetrics *)cls)->operator= (arg1)); } @@ -518,7 +518,7 @@ static void _call_f_operator_eq__eq__2528 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontMetrics *)cls)->operator== (arg1)); } @@ -537,7 +537,7 @@ static void _call_f_operator_eq__eq__c2528 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontMetrics *)cls)->operator== (arg1)); } @@ -571,7 +571,7 @@ static void _call_f_rightBearing_c899 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFontMetrics *)cls)->rightBearing (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -596,10 +596,10 @@ static void _call_f_size_c4188 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QSize)((QFontMetrics *)cls)->size (arg1, arg2, arg3, arg4)); } @@ -633,7 +633,7 @@ static void _call_f_tightBoundingRect_c2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QFontMetrics *)cls)->tightBoundingRect (arg1)); } @@ -669,8 +669,8 @@ static void _call_f_width_c2684 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(-1); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((int)((QFontMetrics *)cls)->width (arg1, arg2)); } @@ -689,7 +689,7 @@ static void _call_f_width_c899 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFontMetrics *)cls)->width (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFontMetricsF.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFontMetricsF.cc index c7b8ba9a9..ca5619822 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFontMetricsF.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFontMetricsF.cc @@ -55,7 +55,7 @@ static void _call_ctor_QFontMetricsF_1801 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFontMetricsF (arg1)); } @@ -76,8 +76,8 @@ static void _call_ctor_QFontMetricsF_3496 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); - QPaintDevice *arg2 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); + QPaintDevice *arg2 = gsi::arg_reader() (args, heap); ret.write (new QFontMetricsF (arg1, arg2)); } @@ -96,7 +96,7 @@ static void _call_ctor_QFontMetricsF_2528 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFontMetricsF (arg1)); } @@ -115,7 +115,7 @@ static void _call_ctor_QFontMetricsF_2598 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetricsF &arg1 = args.read (heap); + const QFontMetricsF &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFontMetricsF (arg1)); } @@ -164,7 +164,7 @@ static void _call_f_boundingRect_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QFontMetricsF *)cls)->boundingRect (arg1)); } @@ -183,7 +183,7 @@ static void _call_f_boundingRect_c899 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QRectF)((QFontMetricsF *)cls)->boundingRect (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -210,11 +210,11 @@ static void _call_f_boundingRect_c5942 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); - int *arg5 = args ? args.read (heap) : (int *)(0); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRectF)((QFontMetricsF *)cls)->boundingRect (arg1, arg2, arg3, arg4, arg5)); } @@ -254,10 +254,10 @@ static void _call_f_elidedText_c5581 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - double arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QFontMetricsF *)cls)->elidedText (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -291,7 +291,7 @@ static void _call_f_inFont_c899 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QFontMetricsF *)cls)->inFont (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -325,7 +325,7 @@ static void _call_f_leftBearing_c899 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((double)((QFontMetricsF *)cls)->leftBearing (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -419,7 +419,7 @@ static void _call_f_operator_excl__eq__2598 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetricsF &arg1 = args.read (heap); + const QFontMetricsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontMetricsF *)cls)->operator != (arg1)); } @@ -438,7 +438,7 @@ static void _call_f_operator_excl__eq__c2598 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetricsF &arg1 = args.read (heap); + const QFontMetricsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontMetricsF *)cls)->operator != (arg1)); } @@ -457,7 +457,7 @@ static void _call_f_operator_eq__2598 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetricsF &arg1 = args.read (heap); + const QFontMetricsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFontMetricsF &)((QFontMetricsF *)cls)->operator= (arg1)); } @@ -476,7 +476,7 @@ static void _call_f_operator_eq__2528 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFontMetricsF &)((QFontMetricsF *)cls)->operator= (arg1)); } @@ -495,7 +495,7 @@ static void _call_f_operator_eq__eq__2598 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetricsF &arg1 = args.read (heap); + const QFontMetricsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontMetricsF *)cls)->operator== (arg1)); } @@ -514,7 +514,7 @@ static void _call_f_operator_eq__eq__c2598 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetricsF &arg1 = args.read (heap); + const QFontMetricsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontMetricsF *)cls)->operator== (arg1)); } @@ -548,7 +548,7 @@ static void _call_f_rightBearing_c899 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((double)((QFontMetricsF *)cls)->rightBearing (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -573,10 +573,10 @@ static void _call_f_size_c4188 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QSizeF)((QFontMetricsF *)cls)->size (arg1, arg2, arg3, arg4)); } @@ -610,7 +610,7 @@ static void _call_f_tightBoundingRect_c2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QFontMetricsF *)cls)->tightBoundingRect (arg1)); } @@ -644,7 +644,7 @@ static void _call_f_width_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QFontMetricsF *)cls)->width (arg1)); } @@ -663,7 +663,7 @@ static void _call_f_width_c899 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((double)((QFontMetricsF *)cls)->width (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc index e50e07089..54c5c50c7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFormLayout.cc @@ -75,7 +75,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addItem (arg1); } @@ -97,8 +97,8 @@ static void _call_f_addRow_2522 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -120,8 +120,8 @@ static void _call_f_addRow_2548 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QLayout *arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QLayout *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -143,8 +143,8 @@ static void _call_f_addRow_3232 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -166,8 +166,8 @@ static void _call_f_addRow_3258 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QLayout *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QLayout *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -187,7 +187,7 @@ static void _call_f_addRow_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1); } @@ -207,7 +207,7 @@ static void _call_f_addRow_1341 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1); } @@ -291,9 +291,9 @@ static void _call_f_getItemPosition_c4166 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int *arg2 = args.read (heap); - qt_gsi::Converter::target_type * arg3 = args.read::target_type * > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + qt_gsi::Converter::target_type * arg3 = gsi::arg_reader::target_type * >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->getItemPosition (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).ptr()); } @@ -317,9 +317,9 @@ static void _call_f_getLayoutPosition_c4740 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); - int *arg2 = args.read (heap); - qt_gsi::Converter::target_type * arg3 = args.read::target_type * > (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + qt_gsi::Converter::target_type * arg3 = gsi::arg_reader::target_type * >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->getLayoutPosition (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).ptr()); } @@ -343,9 +343,9 @@ static void _call_f_getWidgetPosition_c4714 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int *arg2 = args.read (heap); - qt_gsi::Converter::target_type * arg3 = args.read::target_type * > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + qt_gsi::Converter::target_type * arg3 = gsi::arg_reader::target_type * >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->getWidgetPosition (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).ptr()); } @@ -380,7 +380,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFormLayout *)cls)->heightForWidth (arg1)); } @@ -418,9 +418,9 @@ static void _call_f_insertRow_3181 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -444,9 +444,9 @@ static void _call_f_insertRow_3207 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - QLayout *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + QLayout *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -470,9 +470,9 @@ static void _call_f_insertRow_3891 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -496,9 +496,9 @@ static void _call_f_insertRow_3917 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QLayout *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QLayout *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -520,8 +520,8 @@ static void _call_f_insertRow_1974 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2); } @@ -543,8 +543,8 @@ static void _call_f_insertRow_2000 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QLayout *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QLayout *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2); } @@ -582,8 +582,8 @@ static void _call_f_itemAt_c3135 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QLayoutItem *)((QFormLayout *)cls)->itemAt (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -602,7 +602,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QFormLayout *)cls)->itemAt (arg1)); } @@ -636,7 +636,7 @@ static void _call_f_labelForField_c1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QFormLayout *)cls)->labelForField (arg1)); } @@ -655,7 +655,7 @@ static void _call_f_labelForField_c1341 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QFormLayout *)cls)->labelForField (arg1)); } @@ -719,7 +719,7 @@ static void _call_f_setFieldGrowthPolicy_3418 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setFieldGrowthPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -739,7 +739,7 @@ static void _call_f_setFormAlignment_2750 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setFormAlignment (arg1); } @@ -759,7 +759,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setGeometry (arg1); } @@ -779,7 +779,7 @@ static void _call_f_setHorizontalSpacing_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setHorizontalSpacing (arg1); } @@ -803,9 +803,9 @@ static void _call_f_setItem_4767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QLayoutItem *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QLayoutItem *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setItem (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -825,7 +825,7 @@ static void _call_f_setLabelAlignment_2750 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setLabelAlignment (arg1); } @@ -849,9 +849,9 @@ static void _call_f_setLayout_4368 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QLayout *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QLayout *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setLayout (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -871,7 +871,7 @@ static void _call_f_setRowWrapPolicy_3021 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setRowWrapPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -891,7 +891,7 @@ static void _call_f_setSpacing_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setSpacing (arg1); } @@ -911,7 +911,7 @@ static void _call_f_setVerticalSpacing_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setVerticalSpacing (arg1); } @@ -935,9 +935,9 @@ static void _call_f_setWidget_4342 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QWidget *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setWidget (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -987,7 +987,7 @@ static void _call_f_takeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QFormLayout *)cls)->takeAt (arg1)); } @@ -1023,8 +1023,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFormLayout::tr (arg1, arg2)); } @@ -1047,9 +1047,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFormLayout::tr (arg1, arg2, arg3)); } @@ -1070,8 +1070,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFormLayout::trUtf8 (arg1, arg2)); } @@ -1094,9 +1094,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFormLayout::trUtf8 (arg1, arg2, arg3)); } @@ -1644,7 +1644,7 @@ static void _call_ctor_QFormLayout_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFormLayout_Adaptor (arg1)); } @@ -1662,7 +1662,7 @@ static void _call_fp_addChildLayout_1341 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->fp_QFormLayout_addChildLayout_1341 (arg1); @@ -1682,7 +1682,7 @@ static void _call_fp_addChildWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->fp_QFormLayout_addChildWidget_1315 (arg1); } @@ -1725,7 +1725,7 @@ static void _call_fp_alignmentRect_c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QFormLayout_Adaptor *)cls)->fp_QFormLayout_alignmentRect_c1792 (arg1)); } @@ -1810,7 +1810,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFormLayout_Adaptor *)cls)->emitter_QFormLayout_destroyed_1302 (arg1); } @@ -2146,7 +2146,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFormLayout_Adaptor *)cls)->fp_QFormLayout_receivers_c1731 (arg1)); } @@ -2306,7 +2306,7 @@ static void _call_fp_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->fp_QFormLayout_widgetEvent_1217 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQFrame.cc b/src/gsiqt/qt4/QtGui/gsiDeclQFrame.cc index f090134e2..847a122cc 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQFrame.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQFrame.cc @@ -216,7 +216,7 @@ static void _call_f_setFrameRect_1792 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame *)cls)->setFrameRect (arg1); } @@ -236,7 +236,7 @@ static void _call_f_setFrameShadow_1738 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame *)cls)->setFrameShadow (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -256,7 +256,7 @@ static void _call_f_setFrameShape_1621 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame *)cls)->setFrameShape (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -276,7 +276,7 @@ static void _call_f_setFrameStyle_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame *)cls)->setFrameStyle (arg1); } @@ -296,7 +296,7 @@ static void _call_f_setLineWidth_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame *)cls)->setLineWidth (arg1); } @@ -316,7 +316,7 @@ static void _call_f_setMidLineWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame *)cls)->setMidLineWidth (arg1); } @@ -353,8 +353,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFrame::tr (arg1, arg2)); } @@ -377,9 +377,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFrame::tr (arg1, arg2, arg3)); } @@ -400,8 +400,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFrame::trUtf8 (arg1, arg2)); } @@ -424,9 +424,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFrame::trUtf8 (arg1, arg2, arg3)); } @@ -1307,8 +1307,8 @@ static void _call_ctor_QFrame_Adaptor_3702 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QFrame_Adaptor (arg1, arg2)); } @@ -1450,9 +1450,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->fp_QFrame_create_2208 (arg1, arg2, arg3); } @@ -1471,7 +1471,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QFrame_Adaptor *)cls)->emitter_QFrame_customContextMenuRequested_1916 (arg1); } @@ -1515,8 +1515,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->fp_QFrame_destroy_1620 (arg1, arg2); } @@ -1535,7 +1535,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFrame_Adaptor *)cls)->emitter_QFrame_destroyed_1302 (arg1); } @@ -1649,7 +1649,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->fp_QFrame_drawFrame_1426 (arg1); } @@ -2327,7 +2327,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFrame_Adaptor *)cls)->fp_QFrame_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGesture.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGesture.cc index b60930d26..e9588e80d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGesture.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGesture.cc @@ -129,7 +129,7 @@ static void _call_f_setGestureCancelPolicy_3309 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture *)cls)->setGestureCancelPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -149,7 +149,7 @@ static void _call_f_setHotSpot_1986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture *)cls)->setHotSpot (arg1); } @@ -202,8 +202,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGesture::tr (arg1, arg2)); } @@ -226,9 +226,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGesture::tr (arg1, arg2, arg3)); } @@ -249,8 +249,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGesture::trUtf8 (arg1, arg2)); } @@ -273,9 +273,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGesture::trUtf8 (arg1, arg2, arg3)); } @@ -460,7 +460,7 @@ static void _call_ctor_QGesture_Adaptor_1302 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGesture_Adaptor (arg1)); } @@ -526,7 +526,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGesture_Adaptor *)cls)->emitter_QGesture_destroyed_1302 (arg1); } @@ -617,7 +617,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGesture_Adaptor *)cls)->fp_QGesture_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGestureEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGestureEvent.cc index e2b48b43a..55f317ba5 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGestureEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGestureEvent.cc @@ -69,7 +69,7 @@ static void _call_f_accept_1438 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->accept (arg1); } @@ -89,7 +89,7 @@ static void _call_f_accept_1902 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->accept (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -139,7 +139,7 @@ static void _call_f_gesture_c1902 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QGesture *)((QGestureEvent *)cls)->gesture (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -189,7 +189,7 @@ static void _call_f_ignore_1438 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->ignore (arg1); } @@ -209,7 +209,7 @@ static void _call_f_ignore_1902 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->ignore (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -244,7 +244,7 @@ static void _call_f_isAccepted_c1438 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGestureEvent *)cls)->isAccepted (arg1)); } @@ -263,7 +263,7 @@ static void _call_f_isAccepted_c1902 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QGestureEvent *)cls)->isAccepted (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -282,7 +282,7 @@ static void _call_f_mapToGraphicsScene_c1986 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGestureEvent *)cls)->mapToGraphicsScene (arg1)); } @@ -301,7 +301,7 @@ static void _call_f_setAccepted_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->setAccepted (arg1); } @@ -323,8 +323,8 @@ static void _call_f_setAccepted_2194 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); - bool arg2 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->setAccepted (arg1, arg2); } @@ -346,8 +346,8 @@ static void _call_f_setAccepted_2658 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->setAccepted (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -367,7 +367,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->setWidget (arg1); } @@ -456,7 +456,7 @@ static void _call_ctor_QGestureEvent_Adaptor_2930 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write (new QGestureEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGestureRecognizer.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGestureRecognizer.cc index 3cf17ee5a..236022e71 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGestureRecognizer.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGestureRecognizer.cc @@ -53,7 +53,7 @@ static void _call_f_create_1302 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((QGesture *)((QGestureRecognizer *)cls)->create (arg1)); } @@ -76,9 +76,9 @@ static void _call_f_recognize_3741 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); - QObject *arg2 = args.read (heap); - QEvent *arg3 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QGestureRecognizer *)cls)->recognize (arg1, arg2, arg3)); } @@ -97,7 +97,7 @@ static void _call_f_reset_1438 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureRecognizer *)cls)->reset (arg1); } @@ -117,7 +117,7 @@ static void _call_f_registerRecognizer_2486 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGestureRecognizer *arg1 = args.read (heap); + QGestureRecognizer *arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QGestureRecognizer::registerRecognizer (arg1))); } @@ -136,7 +136,7 @@ static void _call_f_unregisterRecognizer_1902 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QGestureRecognizer::unregisterRecognizer (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGradient.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGradient.cc index 29db05318..9aa44bc89 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGradient.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGradient.cc @@ -96,7 +96,7 @@ static void _call_f_operator_excl__eq__c2208 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGradient &arg1 = args.read (heap); + const QGradient &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGradient *)cls)->operator!= (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_eq__eq__c2208 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGradient &arg1 = args.read (heap); + const QGradient &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGradient *)cls)->operator== (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_operator_eq__eq__2208 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGradient &arg1 = args.read (heap); + const QGradient &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGradient *)cls)->operator== (arg1)); } @@ -155,8 +155,8 @@ static void _call_f_setColorAt_2868 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGradient *)cls)->setColorAt (arg1, arg2); } @@ -176,7 +176,7 @@ static void _call_f_setCoordinateMode_2868 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGradient *)cls)->setCoordinateMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -196,7 +196,7 @@ static void _call_f_setInterpolationMode_3220 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGradient *)cls)->setInterpolationMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -216,7 +216,7 @@ static void _call_f_setSpread_2054 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGradient *)cls)->setSpread (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -236,7 +236,7 @@ static void _call_f_setStops_3460 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGradient *)cls)->setStops (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchor.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchor.cc index 55a92147a..b71f9fe03 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchor.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchor.cc @@ -68,7 +68,7 @@ static void _call_f_setSizePolicy_2292 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor *)cls)->setSizePolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -88,7 +88,7 @@ static void _call_f_setSpacing_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor *)cls)->setSpacing (arg1); } @@ -156,8 +156,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsAnchor::tr (arg1, arg2)); } @@ -180,9 +180,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsAnchor::tr (arg1, arg2, arg3)); } @@ -203,8 +203,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsAnchor::trUtf8 (arg1, arg2)); } @@ -227,9 +227,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsAnchor::trUtf8 (arg1, arg2, arg3)); } @@ -447,7 +447,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsAnchor_Adaptor *)cls)->emitter_QGraphicsAnchor_destroyed_1302 (arg1); } @@ -538,7 +538,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsAnchor_Adaptor *)cls)->fp_QGraphicsAnchor_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchorLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchorLayout.cc index 52c2a0fe5..14f269cb4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchorLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsAnchorLayout.cc @@ -63,10 +63,10 @@ static void _call_f_addAnchor_8538 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QGraphicsLayoutItem *arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QGraphicsLayoutItem *arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QGraphicsAnchor *)((QGraphicsAnchorLayout *)cls)->addAnchor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -89,9 +89,9 @@ static void _call_f_addAnchors_7507 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - QGraphicsLayoutItem *arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::Horizontal | Qt::Vertical); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + QGraphicsLayoutItem *arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::Horizontal | Qt::Vertical, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout *)cls)->addAnchors (arg1, arg2, arg3); } @@ -117,10 +117,10 @@ static void _call_f_addCornerAnchors_7522 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QGraphicsLayoutItem *arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QGraphicsLayoutItem *arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout *)cls)->addCornerAnchors (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -146,10 +146,10 @@ static void _call_f_anchor_8538 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QGraphicsLayoutItem *arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QGraphicsLayoutItem *arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QGraphicsAnchor *)((QGraphicsAnchorLayout *)cls)->anchor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -214,7 +214,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsAnchorLayout *)cls)->itemAt (arg1)); } @@ -233,7 +233,7 @@ static void _call_f_removeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout *)cls)->removeAt (arg1); } @@ -253,7 +253,7 @@ static void _call_f_setGeometry_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout *)cls)->setGeometry (arg1); } @@ -273,7 +273,7 @@ static void _call_f_setHorizontalSpacing_1071 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout *)cls)->setHorizontalSpacing (arg1); } @@ -293,7 +293,7 @@ static void _call_f_setSpacing_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout *)cls)->setSpacing (arg1); } @@ -313,7 +313,7 @@ static void _call_f_setVerticalSpacing_1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout *)cls)->setVerticalSpacing (arg1); } @@ -561,7 +561,7 @@ static void _call_ctor_QGraphicsAnchorLayout_Adaptor_2557 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args ? args.read (heap) : (QGraphicsLayoutItem *)(0); + QGraphicsLayoutItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsAnchorLayout_Adaptor (arg1)); } @@ -579,7 +579,7 @@ static void _call_fp_addChildLayoutItem_2557 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->fp_QGraphicsAnchorLayout_addChildLayoutItem_2557 (arg1); } @@ -741,7 +741,7 @@ static void _call_fp_setGraphicsItem_1919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->fp_QGraphicsAnchorLayout_setGraphicsItem_1919 (arg1); } @@ -760,7 +760,7 @@ static void _call_fp_setOwnedByLayout_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->fp_QGraphicsAnchorLayout_setOwnedByLayout_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsBlurEffect.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsBlurEffect.cc index 88d64a425..484f5a3cf 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsBlurEffect.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsBlurEffect.cc @@ -102,7 +102,7 @@ static void _call_f_boundingRectFor_c1862 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsBlurEffect *)cls)->boundingRectFor (arg1)); } @@ -121,7 +121,7 @@ static void _call_f_setBlurHints_3948 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect *)cls)->setBlurHints (arg1); } @@ -141,7 +141,7 @@ static void _call_f_setBlurRadius_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect *)cls)->setBlurRadius (arg1); } @@ -163,8 +163,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsBlurEffect::tr (arg1, arg2)); } @@ -187,9 +187,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsBlurEffect::tr (arg1, arg2, arg3)); } @@ -210,8 +210,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsBlurEffect::trUtf8 (arg1, arg2)); } @@ -234,9 +234,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsBlurEffect::trUtf8 (arg1, arg2, arg3)); } @@ -512,7 +512,7 @@ static void _call_ctor_QGraphicsBlurEffect_Adaptor_1302 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsBlurEffect_Adaptor (arg1)); } @@ -530,7 +530,7 @@ static void _call_emitter_blurHintsChanged_3948 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ((QGraphicsBlurEffect_Adaptor *)cls)->emitter_QGraphicsBlurEffect_blurHintsChanged_3948 (arg1); } @@ -548,7 +548,7 @@ static void _call_emitter_blurRadiusChanged_1071 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QGraphicsBlurEffect_Adaptor *)cls)->emitter_QGraphicsBlurEffect_blurRadiusChanged_1071 (arg1); } @@ -637,7 +637,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsBlurEffect_Adaptor *)cls)->emitter_QGraphicsBlurEffect_destroyed_1302 (arg1); } @@ -703,7 +703,7 @@ static void _call_fp_drawSource_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->fp_QGraphicsBlurEffect_drawSource_1426 (arg1); } @@ -722,7 +722,7 @@ static void _call_emitter_enabledChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QGraphicsBlurEffect_Adaptor *)cls)->emitter_QGraphicsBlurEffect_enabledChanged_864 (arg1); } @@ -789,7 +789,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsBlurEffect_Adaptor *)cls)->fp_QGraphicsBlurEffect_receivers_c1731 (arg1)); } @@ -821,7 +821,7 @@ static void _call_fp_sourceBoundingRect_c2426 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); ret.write ((QRectF)((QGraphicsBlurEffect_Adaptor *)cls)->fp_QGraphicsBlurEffect_sourceBoundingRect_c2426 (arg1)); } @@ -881,9 +881,9 @@ static void _call_fp_sourcePixmap_c6763 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); - QPoint *arg2 = args ? args.read (heap) : (QPoint *)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); + QPoint *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect), heap); ret.write ((QPixmap)((QGraphicsBlurEffect_Adaptor *)cls)->fp_QGraphicsBlurEffect_sourcePixmap_c6763 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsColorizeEffect.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsColorizeEffect.cc index 05b35257d..c8b31f44f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsColorizeEffect.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsColorizeEffect.cc @@ -88,7 +88,7 @@ static void _call_f_setColor_1905 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect *)cls)->setColor (arg1); } @@ -108,7 +108,7 @@ static void _call_f_setStrength_1071 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect *)cls)->setStrength (arg1); } @@ -145,8 +145,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsColorizeEffect::tr (arg1, arg2)); } @@ -169,9 +169,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsColorizeEffect::tr (arg1, arg2, arg3)); } @@ -192,8 +192,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsColorizeEffect::trUtf8 (arg1, arg2)); } @@ -216,9 +216,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsColorizeEffect::trUtf8 (arg1, arg2, arg3)); } @@ -493,7 +493,7 @@ static void _call_ctor_QGraphicsColorizeEffect_Adaptor_1302 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsColorizeEffect_Adaptor (arg1)); } @@ -558,7 +558,7 @@ static void _call_emitter_colorChanged_1905 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsColorizeEffect_Adaptor *)cls)->emitter_QGraphicsColorizeEffect_colorChanged_1905 (arg1); } @@ -600,7 +600,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsColorizeEffect_Adaptor *)cls)->emitter_QGraphicsColorizeEffect_destroyed_1302 (arg1); } @@ -666,7 +666,7 @@ static void _call_fp_drawSource_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->fp_QGraphicsColorizeEffect_drawSource_1426 (arg1); } @@ -685,7 +685,7 @@ static void _call_emitter_enabledChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QGraphicsColorizeEffect_Adaptor *)cls)->emitter_QGraphicsColorizeEffect_enabledChanged_864 (arg1); } @@ -752,7 +752,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsColorizeEffect_Adaptor *)cls)->fp_QGraphicsColorizeEffect_receivers_c1731 (arg1)); } @@ -784,7 +784,7 @@ static void _call_fp_sourceBoundingRect_c2426 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); ret.write ((QRectF)((QGraphicsColorizeEffect_Adaptor *)cls)->fp_QGraphicsColorizeEffect_sourceBoundingRect_c2426 (arg1)); } @@ -844,9 +844,9 @@ static void _call_fp_sourcePixmap_c6763 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); - QPoint *arg2 = args ? args.read (heap) : (QPoint *)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); + QPoint *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect), heap); ret.write ((QPixmap)((QGraphicsColorizeEffect_Adaptor *)cls)->fp_QGraphicsColorizeEffect_sourcePixmap_c6763 (arg1, arg2, arg3)); } @@ -864,7 +864,7 @@ static void _call_emitter_strengthChanged_1071 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QGraphicsColorizeEffect_Adaptor *)cls)->emitter_QGraphicsColorizeEffect_strengthChanged_1071 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsDropShadowEffect.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsDropShadowEffect.cc index 66e4def9d..5498e4b39 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsDropShadowEffect.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsDropShadowEffect.cc @@ -89,7 +89,7 @@ static void _call_f_boundingRectFor_c1862 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsDropShadowEffect *)cls)->boundingRectFor (arg1)); } @@ -138,7 +138,7 @@ static void _call_f_setBlurRadius_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect *)cls)->setBlurRadius (arg1); } @@ -158,7 +158,7 @@ static void _call_f_setColor_1905 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect *)cls)->setColor (arg1); } @@ -178,7 +178,7 @@ static void _call_f_setOffset_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect *)cls)->setOffset (arg1); } @@ -200,8 +200,8 @@ static void _call_f_setOffset_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect *)cls)->setOffset (arg1, arg2); } @@ -221,7 +221,7 @@ static void _call_f_setOffset_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect *)cls)->setOffset (arg1); } @@ -241,7 +241,7 @@ static void _call_f_setXOffset_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect *)cls)->setXOffset (arg1); } @@ -261,7 +261,7 @@ static void _call_f_setYOffset_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect *)cls)->setYOffset (arg1); } @@ -313,8 +313,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsDropShadowEffect::tr (arg1, arg2)); } @@ -337,9 +337,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsDropShadowEffect::tr (arg1, arg2, arg3)); } @@ -360,8 +360,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsDropShadowEffect::trUtf8 (arg1, arg2)); } @@ -384,9 +384,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsDropShadowEffect::trUtf8 (arg1, arg2, arg3)); } @@ -677,7 +677,7 @@ static void _call_ctor_QGraphicsDropShadowEffect_Adaptor_1302 (const qt_gsi::Gen { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsDropShadowEffect_Adaptor (arg1)); } @@ -695,7 +695,7 @@ static void _call_emitter_blurRadiusChanged_1071 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QGraphicsDropShadowEffect_Adaptor *)cls)->emitter_QGraphicsDropShadowEffect_blurRadiusChanged_1071 (arg1); } @@ -760,7 +760,7 @@ static void _call_emitter_colorChanged_1905 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsDropShadowEffect_Adaptor *)cls)->emitter_QGraphicsDropShadowEffect_colorChanged_1905 (arg1); } @@ -802,7 +802,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsDropShadowEffect_Adaptor *)cls)->emitter_QGraphicsDropShadowEffect_destroyed_1302 (arg1); } @@ -868,7 +868,7 @@ static void _call_fp_drawSource_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->fp_QGraphicsDropShadowEffect_drawSource_1426 (arg1); } @@ -887,7 +887,7 @@ static void _call_emitter_enabledChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QGraphicsDropShadowEffect_Adaptor *)cls)->emitter_QGraphicsDropShadowEffect_enabledChanged_864 (arg1); } @@ -954,7 +954,7 @@ static void _call_emitter_offsetChanged_1986 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsDropShadowEffect_Adaptor *)cls)->emitter_QGraphicsDropShadowEffect_offsetChanged_1986 (arg1); } @@ -972,7 +972,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsDropShadowEffect_Adaptor *)cls)->fp_QGraphicsDropShadowEffect_receivers_c1731 (arg1)); } @@ -1004,7 +1004,7 @@ static void _call_fp_sourceBoundingRect_c2426 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); ret.write ((QRectF)((QGraphicsDropShadowEffect_Adaptor *)cls)->fp_QGraphicsDropShadowEffect_sourceBoundingRect_c2426 (arg1)); } @@ -1064,9 +1064,9 @@ static void _call_fp_sourcePixmap_c6763 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); - QPoint *arg2 = args ? args.read (heap) : (QPoint *)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); + QPoint *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect), heap); ret.write ((QPixmap)((QGraphicsDropShadowEffect_Adaptor *)cls)->fp_QGraphicsDropShadowEffect_sourcePixmap_c6763 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEffect.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEffect.cc index 758b4a4e6..df538658e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEffect.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEffect.cc @@ -87,7 +87,7 @@ static void _call_f_boundingRectFor_c1862 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsEffect *)cls)->boundingRectFor (arg1)); } @@ -121,7 +121,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect *)cls)->setEnabled (arg1); } @@ -159,8 +159,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsEffect::tr (arg1, arg2)); } @@ -183,9 +183,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsEffect::tr (arg1, arg2, arg3)); } @@ -206,8 +206,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsEffect::trUtf8 (arg1, arg2)); } @@ -230,9 +230,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsEffect::trUtf8 (arg1, arg2, arg3)); } @@ -495,7 +495,7 @@ static void _call_ctor_QGraphicsEffect_Adaptor_1302 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsEffect_Adaptor (arg1)); } @@ -584,7 +584,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsEffect_Adaptor *)cls)->emitter_QGraphicsEffect_destroyed_1302 (arg1); } @@ -650,7 +650,7 @@ static void _call_fp_drawSource_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->fp_QGraphicsEffect_drawSource_1426 (arg1); } @@ -669,7 +669,7 @@ static void _call_emitter_enabledChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QGraphicsEffect_Adaptor *)cls)->emitter_QGraphicsEffect_enabledChanged_864 (arg1); } @@ -736,7 +736,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsEffect_Adaptor *)cls)->fp_QGraphicsEffect_receivers_c1731 (arg1)); } @@ -768,7 +768,7 @@ static void _call_fp_sourceBoundingRect_c2426 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); ret.write ((QRectF)((QGraphicsEffect_Adaptor *)cls)->fp_QGraphicsEffect_sourceBoundingRect_c2426 (arg1)); } @@ -828,9 +828,9 @@ static void _call_fp_sourcePixmap_c6763 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); - QPoint *arg2 = args ? args.read (heap) : (QPoint *)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); + QPoint *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect), heap); ret.write ((QPixmap)((QGraphicsEffect_Adaptor *)cls)->fp_QGraphicsEffect_sourcePixmap_c6763 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEllipseItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEllipseItem.cc index 4e5aa1b2b..9b2f6f65f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEllipseItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsEllipseItem.cc @@ -94,7 +94,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem *)cls)->contains (arg1)); } @@ -113,7 +113,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem *)cls)->isObscuredBy (arg1)); } @@ -151,9 +151,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem *)cls)->paint (arg1, arg2, arg3); } @@ -188,7 +188,7 @@ static void _call_f_setRect_1862 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem *)cls)->setRect (arg1); } @@ -214,10 +214,10 @@ static void _call_f_setRect_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem *)cls)->setRect (arg1, arg2, arg3, arg4); } @@ -237,7 +237,7 @@ static void _call_f_setSpanAngle_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem *)cls)->setSpanAngle (arg1); } @@ -257,7 +257,7 @@ static void _call_f_setStartAngle_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem *)cls)->setStartAngle (arg1); } @@ -1010,8 +1010,8 @@ static void _call_ctor_QGraphicsEllipseItem_Adaptor_3825 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg2 = args ? args.read (heap) : (QGraphicsScene *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsEllipseItem_Adaptor (arg1, arg2)); } @@ -1033,9 +1033,9 @@ static void _call_ctor_QGraphicsEllipseItem_Adaptor_5579 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg3 = args ? args.read (heap) : (QGraphicsScene *)(0); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsEllipseItem_Adaptor (arg1, arg2, arg3)); } @@ -1063,12 +1063,12 @@ static void _call_ctor_QGraphicsEllipseItem_Adaptor_7677 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - QGraphicsItem *arg5 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg6 = args ? args.read (heap) : (QGraphicsScene *)(0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsEllipseItem_Adaptor (arg1, arg2, arg3, arg4, arg5, arg6)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsGridLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsGridLayout.cc index 3c2415bf9..0b689e794 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsGridLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsGridLayout.cc @@ -66,12 +66,12 @@ static void _call_f_addItem_7835 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->addItem (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -97,10 +97,10 @@ static void _call_f_addItem_6517 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(0); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->addItem (arg1, arg2, arg3, arg4); } @@ -120,7 +120,7 @@ static void _call_f_alignment_c2557 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QGraphicsGridLayout *)cls)->alignment (arg1)); } @@ -139,7 +139,7 @@ static void _call_f_columnAlignment_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QGraphicsGridLayout *)cls)->columnAlignment (arg1)); } @@ -173,7 +173,7 @@ static void _call_f_columnMaximumWidth_c767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->columnMaximumWidth (arg1)); } @@ -192,7 +192,7 @@ static void _call_f_columnMinimumWidth_c767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->columnMinimumWidth (arg1)); } @@ -211,7 +211,7 @@ static void _call_f_columnPreferredWidth_c767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->columnPreferredWidth (arg1)); } @@ -230,7 +230,7 @@ static void _call_f_columnSpacing_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->columnSpacing (arg1)); } @@ -249,7 +249,7 @@ static void _call_f_columnStretchFactor_c767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsGridLayout *)cls)->columnStretchFactor (arg1)); } @@ -316,8 +316,8 @@ static void _call_f_itemAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsGridLayout *)cls)->itemAt (arg1, arg2)); } @@ -336,7 +336,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsGridLayout *)cls)->itemAt (arg1)); } @@ -355,7 +355,7 @@ static void _call_f_removeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->removeAt (arg1); } @@ -375,7 +375,7 @@ static void _call_f_rowAlignment_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QGraphicsGridLayout *)cls)->rowAlignment (arg1)); } @@ -409,7 +409,7 @@ static void _call_f_rowMaximumHeight_c767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->rowMaximumHeight (arg1)); } @@ -428,7 +428,7 @@ static void _call_f_rowMinimumHeight_c767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->rowMinimumHeight (arg1)); } @@ -447,7 +447,7 @@ static void _call_f_rowPreferredHeight_c767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->rowPreferredHeight (arg1)); } @@ -466,7 +466,7 @@ static void _call_f_rowSpacing_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->rowSpacing (arg1)); } @@ -485,7 +485,7 @@ static void _call_f_rowStretchFactor_c767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsGridLayout *)cls)->rowStretchFactor (arg1)); } @@ -506,8 +506,8 @@ static void _call_f_setAlignment_5199 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setAlignment (arg1, arg2); } @@ -529,8 +529,8 @@ static void _call_f_setColumnAlignment_3409 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setColumnAlignment (arg1, arg2); } @@ -552,8 +552,8 @@ static void _call_f_setColumnFixedWidth_1730 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setColumnFixedWidth (arg1, arg2); } @@ -575,8 +575,8 @@ static void _call_f_setColumnMaximumWidth_1730 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setColumnMaximumWidth (arg1, arg2); } @@ -598,8 +598,8 @@ static void _call_f_setColumnMinimumWidth_1730 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setColumnMinimumWidth (arg1, arg2); } @@ -621,8 +621,8 @@ static void _call_f_setColumnPreferredWidth_1730 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setColumnPreferredWidth (arg1, arg2); } @@ -644,8 +644,8 @@ static void _call_f_setColumnSpacing_1730 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setColumnSpacing (arg1, arg2); } @@ -667,8 +667,8 @@ static void _call_f_setColumnStretchFactor_1426 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setColumnStretchFactor (arg1, arg2); } @@ -688,7 +688,7 @@ static void _call_f_setGeometry_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setGeometry (arg1); } @@ -708,7 +708,7 @@ static void _call_f_setHorizontalSpacing_1071 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setHorizontalSpacing (arg1); } @@ -730,8 +730,8 @@ static void _call_f_setRowAlignment_3409 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setRowAlignment (arg1, arg2); } @@ -753,8 +753,8 @@ static void _call_f_setRowFixedHeight_1730 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setRowFixedHeight (arg1, arg2); } @@ -776,8 +776,8 @@ static void _call_f_setRowMaximumHeight_1730 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setRowMaximumHeight (arg1, arg2); } @@ -799,8 +799,8 @@ static void _call_f_setRowMinimumHeight_1730 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setRowMinimumHeight (arg1, arg2); } @@ -822,8 +822,8 @@ static void _call_f_setRowPreferredHeight_1730 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setRowPreferredHeight (arg1, arg2); } @@ -845,8 +845,8 @@ static void _call_f_setRowSpacing_1730 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setRowSpacing (arg1, arg2); } @@ -868,8 +868,8 @@ static void _call_f_setRowStretchFactor_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setRowStretchFactor (arg1, arg2); } @@ -889,7 +889,7 @@ static void _call_f_setSpacing_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setSpacing (arg1); } @@ -909,7 +909,7 @@ static void _call_f_setVerticalSpacing_1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setVerticalSpacing (arg1); } @@ -931,8 +931,8 @@ static void _call_f_sizeHint_c3330 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args ? args.read (heap) : (const QSizeF &)(QSizeF()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsGridLayout *)cls)->sizeHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1209,7 +1209,7 @@ static void _call_ctor_QGraphicsGridLayout_Adaptor_2557 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args ? args.read (heap) : (QGraphicsLayoutItem *)(0); + QGraphicsLayoutItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsGridLayout_Adaptor (arg1)); } @@ -1227,7 +1227,7 @@ static void _call_fp_addChildLayoutItem_2557 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->fp_QGraphicsGridLayout_addChildLayoutItem_2557 (arg1); } @@ -1389,7 +1389,7 @@ static void _call_fp_setGraphicsItem_1919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->fp_QGraphicsGridLayout_setGraphicsItem_1919 (arg1); } @@ -1408,7 +1408,7 @@ static void _call_fp_setOwnedByLayout_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->fp_QGraphicsGridLayout_setOwnedByLayout_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItem.cc index 2a065bf57..57643826e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItem.cc @@ -136,7 +136,7 @@ static void _call_f_advance_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->advance (arg1); } @@ -171,7 +171,7 @@ static void _call_f_boundingRegion_c2350 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QGraphicsItem *)cls)->boundingRegion (arg1)); } @@ -298,8 +298,8 @@ static void _call_f_collidesWithItem_c4977 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItem *)cls)->collidesWithItem (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -320,8 +320,8 @@ static void _call_f_collidesWithPath_c4877 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItem *)cls)->collidesWithPath (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -340,7 +340,7 @@ static void _call_f_collidingItems_c2471 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsItem *)cls)->collidingItems (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -359,7 +359,7 @@ static void _call_f_commonAncestorItem_c2614 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsItem *)((QGraphicsItem *)cls)->commonAncestorItem (arg1)); } @@ -378,7 +378,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem *)cls)->contains (arg1)); } @@ -412,7 +412,7 @@ static void _call_f_data_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsItem *)cls)->data (arg1)); } @@ -431,7 +431,7 @@ static void _call_f_deviceTransform_c2350 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform)((QGraphicsItem *)cls)->deviceTransform (arg1)); } @@ -469,9 +469,9 @@ static void _call_f_ensureVisible_3180 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args ? args.read (heap) : (const QRectF &)(QRectF()); - int arg2 = args ? args.read (heap) : (int)(50); - int arg3 = args ? args.read (heap) : (int)(50); + const QRectF &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->ensureVisible (arg1, arg2, arg3); } @@ -501,12 +501,12 @@ static void _call_f_ensureVisible_5278 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - int arg5 = args ? args.read (heap) : (int)(50); - int arg6 = args ? args.read (heap) : (int)(50); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); + int arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->ensureVisible (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -739,7 +739,7 @@ static void _call_f_installSceneEventFilter_1919 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->installSceneEventFilter (arg1); } @@ -774,7 +774,7 @@ static void _call_f_isAncestorOf_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem *)cls)->isAncestorOf (arg1)); } @@ -838,7 +838,7 @@ static void _call_f_isObscured_c1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem *)cls)->isObscured (arg1)); } @@ -863,10 +863,10 @@ static void _call_f_isObscured_c3960 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem *)cls)->isObscured (arg1, arg2, arg3, arg4)); } @@ -885,7 +885,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem *)cls)->isObscuredBy (arg1)); } @@ -964,7 +964,7 @@ static void _call_f_isVisibleTo_c2614 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem *)cls)->isVisibleTo (arg1)); } @@ -1015,8 +1015,8 @@ static void _call_f_itemTransform_c3556 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QTransform)((QGraphicsItem *)cls)->itemTransform (arg1, arg2)); } @@ -1037,8 +1037,8 @@ static void _call_f_mapFromItem_c4492 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapFromItem (arg1, arg2)); } @@ -1059,8 +1059,8 @@ static void _call_f_mapFromItem_c4368 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromItem (arg1, arg2)); } @@ -1081,8 +1081,8 @@ static void _call_f_mapFromItem_c4714 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QPolygonF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QPolygonF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromItem (arg1, arg2)); } @@ -1103,8 +1103,8 @@ static void _call_f_mapFromItem_c5020 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QPainterPath &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QPainterPath &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsItem *)cls)->mapFromItem (arg1, arg2)); } @@ -1127,9 +1127,9 @@ static void _call_f_mapFromItem_c4540 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapFromItem (arg1, arg2, arg3)); } @@ -1156,11 +1156,11 @@ static void _call_f_mapFromItem_c6466 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromItem (arg1, arg2, arg3, arg4, arg5)); } @@ -1179,7 +1179,7 @@ static void _call_f_mapFromParent_c1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapFromParent (arg1)); } @@ -1198,7 +1198,7 @@ static void _call_f_mapFromParent_c1862 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromParent (arg1)); } @@ -1217,7 +1217,7 @@ static void _call_f_mapFromParent_c2208 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromParent (arg1)); } @@ -1236,7 +1236,7 @@ static void _call_f_mapFromParent_c2514 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsItem *)cls)->mapFromParent (arg1)); } @@ -1257,8 +1257,8 @@ static void _call_f_mapFromParent_c2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapFromParent (arg1, arg2)); } @@ -1283,10 +1283,10 @@ static void _call_f_mapFromParent_c3960 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromParent (arg1, arg2, arg3, arg4)); } @@ -1305,7 +1305,7 @@ static void _call_f_mapFromScene_c1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapFromScene (arg1)); } @@ -1324,7 +1324,7 @@ static void _call_f_mapFromScene_c1862 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromScene (arg1)); } @@ -1343,7 +1343,7 @@ static void _call_f_mapFromScene_c2208 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromScene (arg1)); } @@ -1362,7 +1362,7 @@ static void _call_f_mapFromScene_c2514 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsItem *)cls)->mapFromScene (arg1)); } @@ -1383,8 +1383,8 @@ static void _call_f_mapFromScene_c2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapFromScene (arg1, arg2)); } @@ -1409,10 +1409,10 @@ static void _call_f_mapFromScene_c3960 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromScene (arg1, arg2, arg3, arg4)); } @@ -1433,8 +1433,8 @@ static void _call_f_mapRectFromItem_c4368 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectFromItem (arg1, arg2)); } @@ -1461,11 +1461,11 @@ static void _call_f_mapRectFromItem_c6466 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectFromItem (arg1, arg2, arg3, arg4, arg5)); } @@ -1484,7 +1484,7 @@ static void _call_f_mapRectFromParent_c1862 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectFromParent (arg1)); } @@ -1509,10 +1509,10 @@ static void _call_f_mapRectFromParent_c3960 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectFromParent (arg1, arg2, arg3, arg4)); } @@ -1531,7 +1531,7 @@ static void _call_f_mapRectFromScene_c1862 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectFromScene (arg1)); } @@ -1556,10 +1556,10 @@ static void _call_f_mapRectFromScene_c3960 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectFromScene (arg1, arg2, arg3, arg4)); } @@ -1580,8 +1580,8 @@ static void _call_f_mapRectToItem_c4368 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectToItem (arg1, arg2)); } @@ -1608,11 +1608,11 @@ static void _call_f_mapRectToItem_c6466 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectToItem (arg1, arg2, arg3, arg4, arg5)); } @@ -1631,7 +1631,7 @@ static void _call_f_mapRectToParent_c1862 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectToParent (arg1)); } @@ -1656,10 +1656,10 @@ static void _call_f_mapRectToParent_c3960 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectToParent (arg1, arg2, arg3, arg4)); } @@ -1678,7 +1678,7 @@ static void _call_f_mapRectToScene_c1862 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectToScene (arg1)); } @@ -1703,10 +1703,10 @@ static void _call_f_mapRectToScene_c3960 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectToScene (arg1, arg2, arg3, arg4)); } @@ -1727,8 +1727,8 @@ static void _call_f_mapToItem_c4492 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapToItem (arg1, arg2)); } @@ -1749,8 +1749,8 @@ static void _call_f_mapToItem_c4368 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToItem (arg1, arg2)); } @@ -1771,8 +1771,8 @@ static void _call_f_mapToItem_c4714 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QPolygonF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QPolygonF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToItem (arg1, arg2)); } @@ -1793,8 +1793,8 @@ static void _call_f_mapToItem_c5020 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QPainterPath &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QPainterPath &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsItem *)cls)->mapToItem (arg1, arg2)); } @@ -1817,9 +1817,9 @@ static void _call_f_mapToItem_c4540 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapToItem (arg1, arg2, arg3)); } @@ -1846,11 +1846,11 @@ static void _call_f_mapToItem_c6466 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToItem (arg1, arg2, arg3, arg4, arg5)); } @@ -1869,7 +1869,7 @@ static void _call_f_mapToParent_c1986 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapToParent (arg1)); } @@ -1888,7 +1888,7 @@ static void _call_f_mapToParent_c1862 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToParent (arg1)); } @@ -1907,7 +1907,7 @@ static void _call_f_mapToParent_c2208 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToParent (arg1)); } @@ -1926,7 +1926,7 @@ static void _call_f_mapToParent_c2514 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsItem *)cls)->mapToParent (arg1)); } @@ -1947,8 +1947,8 @@ static void _call_f_mapToParent_c2034 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapToParent (arg1, arg2)); } @@ -1973,10 +1973,10 @@ static void _call_f_mapToParent_c3960 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToParent (arg1, arg2, arg3, arg4)); } @@ -1995,7 +1995,7 @@ static void _call_f_mapToScene_c1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapToScene (arg1)); } @@ -2014,7 +2014,7 @@ static void _call_f_mapToScene_c1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToScene (arg1)); } @@ -2033,7 +2033,7 @@ static void _call_f_mapToScene_c2208 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToScene (arg1)); } @@ -2052,7 +2052,7 @@ static void _call_f_mapToScene_c2514 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsItem *)cls)->mapToScene (arg1)); } @@ -2073,8 +2073,8 @@ static void _call_f_mapToScene_c2034 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapToScene (arg1, arg2)); } @@ -2099,10 +2099,10 @@ static void _call_f_mapToScene_c3960 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToScene (arg1, arg2, arg3, arg4)); } @@ -2138,8 +2138,8 @@ static void _call_f_moveBy_2034 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->moveBy (arg1, arg2); } @@ -2193,9 +2193,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->paint (arg1, arg2, arg3); } @@ -2305,7 +2305,7 @@ static void _call_f_removeSceneEventFilter_1919 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->removeSceneEventFilter (arg1); } @@ -2357,7 +2357,7 @@ static void _call_f_rotate_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->rotate (arg1); } @@ -2394,8 +2394,8 @@ static void _call_f_scale_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->scale (arg1, arg2); } @@ -2509,9 +2509,9 @@ static void _call_f_scroll_3788 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - const QRectF &arg3 = args ? args.read (heap) : (const QRectF &)(QRectF()); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->scroll (arg1, arg2, arg3); } @@ -2531,7 +2531,7 @@ static void _call_f_setAcceptDrops_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setAcceptDrops (arg1); } @@ -2551,7 +2551,7 @@ static void _call_f_setAcceptHoverEvents_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setAcceptHoverEvents (arg1); } @@ -2571,7 +2571,7 @@ static void _call_f_setAcceptTouchEvents_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setAcceptTouchEvents (arg1); } @@ -2591,7 +2591,7 @@ static void _call_f_setAcceptedMouseButtons_2602 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setAcceptedMouseButtons (arg1); } @@ -2611,7 +2611,7 @@ static void _call_f_setAcceptsHoverEvents_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setAcceptsHoverEvents (arg1); } @@ -2631,7 +2631,7 @@ static void _call_f_setActive_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setActive (arg1); } @@ -2651,7 +2651,7 @@ static void _call_f_setBoundingRegionGranularity_1071 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setBoundingRegionGranularity (arg1); } @@ -2673,8 +2673,8 @@ static void _call_f_setCacheMode_4403 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSize &arg2 = args ? args.read (heap) : (const QSize &)(QSize()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSize &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSize(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setCacheMode (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -2694,7 +2694,7 @@ static void _call_f_setCursor_2032 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCursor &arg1 = args.read (heap); + const QCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setCursor (arg1); } @@ -2716,8 +2716,8 @@ static void _call_f_setData_2778 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setData (arg1, arg2); } @@ -2737,7 +2737,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setEnabled (arg1); } @@ -2757,7 +2757,7 @@ static void _call_f_setFiltersChildEvents_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setFiltersChildEvents (arg1); } @@ -2779,8 +2779,8 @@ static void _call_f_setFlag_4199 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setFlag (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -2800,7 +2800,7 @@ static void _call_f_setFlags_4139 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setFlags (arg1); } @@ -2820,7 +2820,7 @@ static void _call_f_setFocus_1877 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setFocus (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -2840,7 +2840,7 @@ static void _call_f_setFocusProxy_1919 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setFocusProxy (arg1); } @@ -2860,7 +2860,7 @@ static void _call_f_setGraphicsEffect_2109 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsEffect *arg1 = args.read (heap); + QGraphicsEffect *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setGraphicsEffect (arg1); } @@ -2880,7 +2880,7 @@ static void _call_f_setGroup_2444 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItemGroup *arg1 = args.read (heap); + QGraphicsItemGroup *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setGroup (arg1); } @@ -2900,7 +2900,7 @@ static void _call_f_setHandlesChildEvents_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setHandlesChildEvents (arg1); } @@ -2920,7 +2920,7 @@ static void _call_f_setInputMethodHints_2985 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setInputMethodHints (arg1); } @@ -2942,8 +2942,8 @@ static void _call_f_setMatrix_2779 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setMatrix (arg1, arg2); } @@ -2963,7 +2963,7 @@ static void _call_f_setOpacity_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setOpacity (arg1); } @@ -2983,7 +2983,7 @@ static void _call_f_setPanelModality_3180 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setPanelModality (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -3003,7 +3003,7 @@ static void _call_f_setParentItem_1919 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setParentItem (arg1); } @@ -3023,7 +3023,7 @@ static void _call_f_setPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setPos (arg1); } @@ -3045,8 +3045,8 @@ static void _call_f_setPos_2034 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setPos (arg1, arg2); } @@ -3066,7 +3066,7 @@ static void _call_f_setRotation_1071 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setRotation (arg1); } @@ -3086,7 +3086,7 @@ static void _call_f_setScale_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setScale (arg1); } @@ -3106,7 +3106,7 @@ static void _call_f_setSelected_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setSelected (arg1); } @@ -3126,7 +3126,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setToolTip (arg1); } @@ -3148,8 +3148,8 @@ static void _call_f_setTransform_3106 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setTransform (arg1, arg2); } @@ -3169,7 +3169,7 @@ static void _call_f_setTransformOriginPoint_1986 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setTransformOriginPoint (arg1); } @@ -3191,8 +3191,8 @@ static void _call_f_setTransformOriginPoint_2034 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setTransformOriginPoint (arg1, arg2); } @@ -3212,7 +3212,7 @@ static void _call_f_setTransformations_3968 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setTransformations (arg1); } @@ -3232,7 +3232,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setVisible (arg1); } @@ -3252,7 +3252,7 @@ static void _call_f_setX_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setX (arg1); } @@ -3272,7 +3272,7 @@ static void _call_f_setY_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setY (arg1); } @@ -3292,7 +3292,7 @@ static void _call_f_setZValue_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setZValue (arg1); } @@ -3329,8 +3329,8 @@ static void _call_f_shear_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->shear (arg1, arg2); } @@ -3366,7 +3366,7 @@ static void _call_f_stackBefore_2614 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->stackBefore (arg1); } @@ -3508,8 +3508,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->translate (arg1, arg2); } @@ -3592,7 +3592,7 @@ static void _call_f_update_1862 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args ? args.read (heap) : (const QRectF &)(QRectF()); + const QRectF &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->update (arg1); } @@ -3618,10 +3618,10 @@ static void _call_f_update_3960 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->update (arg1, arg2, arg3, arg4); } @@ -4515,8 +4515,8 @@ static void _call_ctor_QGraphicsItem_Adaptor_3825 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg2 = args ? args.read (heap) : (QGraphicsScene *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsItem_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemAnimation.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemAnimation.cc index c77e64548..f3609cb86 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemAnimation.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemAnimation.cc @@ -88,7 +88,7 @@ static void _call_f_horizontalScaleAt_c1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsItemAnimation *)cls)->horizontalScaleAt (arg1)); } @@ -107,7 +107,7 @@ static void _call_f_horizontalShearAt_c1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsItemAnimation *)cls)->horizontalShearAt (arg1)); } @@ -141,7 +141,7 @@ static void _call_f_matrixAt_c1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix)((QGraphicsItemAnimation *)cls)->matrixAt (arg1)); } @@ -160,7 +160,7 @@ static void _call_f_posAt_c1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItemAnimation *)cls)->posAt (arg1)); } @@ -210,7 +210,7 @@ static void _call_f_rotationAt_c1071 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsItemAnimation *)cls)->rotationAt (arg1)); } @@ -259,7 +259,7 @@ static void _call_f_setItem_1919 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setItem (arg1); } @@ -281,8 +281,8 @@ static void _call_f_setPosAt_2949 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setPosAt (arg1, arg2); } @@ -304,8 +304,8 @@ static void _call_f_setRotationAt_2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setRotationAt (arg1, arg2); } @@ -329,9 +329,9 @@ static void _call_f_setScaleAt_2997 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setScaleAt (arg1, arg2, arg3); } @@ -355,9 +355,9 @@ static void _call_f_setShearAt_2997 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setShearAt (arg1, arg2, arg3); } @@ -377,7 +377,7 @@ static void _call_f_setStep_1071 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setStep (arg1); } @@ -397,7 +397,7 @@ static void _call_f_setTimeLine_1494 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimeLine *arg1 = args.read (heap); + QTimeLine *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setTimeLine (arg1); } @@ -421,9 +421,9 @@ static void _call_f_setTranslationAt_2997 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setTranslationAt (arg1, arg2, arg3); } @@ -488,7 +488,7 @@ static void _call_f_verticalScaleAt_c1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsItemAnimation *)cls)->verticalScaleAt (arg1)); } @@ -507,7 +507,7 @@ static void _call_f_verticalShearAt_c1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsItemAnimation *)cls)->verticalShearAt (arg1)); } @@ -526,7 +526,7 @@ static void _call_f_xTranslationAt_c1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsItemAnimation *)cls)->xTranslationAt (arg1)); } @@ -545,7 +545,7 @@ static void _call_f_yTranslationAt_c1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsItemAnimation *)cls)->yTranslationAt (arg1)); } @@ -566,8 +566,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsItemAnimation::tr (arg1, arg2)); } @@ -590,9 +590,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsItemAnimation::tr (arg1, arg2, arg3)); } @@ -613,8 +613,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsItemAnimation::trUtf8 (arg1, arg2)); } @@ -637,9 +637,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsItemAnimation::trUtf8 (arg1, arg2, arg3)); } @@ -874,7 +874,7 @@ static void _call_ctor_QGraphicsItemAnimation_Adaptor_1302 (const qt_gsi::Generi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsItemAnimation_Adaptor (arg1)); } @@ -988,7 +988,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsItemAnimation_Adaptor *)cls)->emitter_QGraphicsItemAnimation_destroyed_1302 (arg1); } @@ -1079,7 +1079,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsItemAnimation_Adaptor *)cls)->fp_QGraphicsItemAnimation_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemGroup.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemGroup.cc index a22e5d545..c68b4c541 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemGroup.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsItemGroup.cc @@ -76,7 +76,7 @@ static void _call_f_addToGroup_1919 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup *)cls)->addToGroup (arg1); @@ -112,7 +112,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup *)cls)->isObscuredBy (arg1)); } @@ -150,9 +150,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup *)cls)->paint (arg1, arg2, arg3); } @@ -172,7 +172,7 @@ static void _call_f_removeFromGroup_1919 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup *)cls)->removeFromGroup (arg1); } @@ -837,8 +837,8 @@ static void _call_ctor_QGraphicsItemGroup_Adaptor_3825 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg2 = args ? args.read (heap) : (QGraphicsScene *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsItemGroup_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayout.cc index 097362513..0d1a1ecde 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayout.cc @@ -93,10 +93,10 @@ static void _call_f_getContentsMargins_c4704 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout *)cls)->getContentsMargins (arg1, arg2, arg3, arg4); } @@ -147,7 +147,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsLayout *)cls)->itemAt (arg1)); } @@ -166,7 +166,7 @@ static void _call_f_removeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout *)cls)->removeAt (arg1); } @@ -192,10 +192,10 @@ static void _call_f_setContentsMargins_3960 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout *)cls)->setContentsMargins (arg1, arg2, arg3, arg4); } @@ -231,7 +231,7 @@ static void _call_f_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout *)cls)->widgetEvent (arg1); } @@ -464,7 +464,7 @@ static void _call_ctor_QGraphicsLayout_Adaptor_2557 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args ? args.read (heap) : (QGraphicsLayoutItem *)(0); + QGraphicsLayoutItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsLayout_Adaptor (arg1)); } @@ -482,7 +482,7 @@ static void _call_fp_addChildLayoutItem_2557 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->fp_QGraphicsLayout_addChildLayoutItem_2557 (arg1); } @@ -644,7 +644,7 @@ static void _call_fp_setGraphicsItem_1919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->fp_QGraphicsLayout_setGraphicsItem_1919 (arg1); } @@ -663,7 +663,7 @@ static void _call_fp_setOwnedByLayout_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->fp_QGraphicsLayout_setOwnedByLayout_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayoutItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayoutItem.cc index fbd01736f..f765066c4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayoutItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLayoutItem.cc @@ -71,8 +71,8 @@ static void _call_f_effectiveSizeHint_c3330 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args ? args.read (heap) : (const QSizeF &)(QSizeF()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsLayoutItem *)cls)->effectiveSizeHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -112,10 +112,10 @@ static void _call_f_getContentsMargins_c4704 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->getContentsMargins (arg1, arg2, arg3, arg4); } @@ -330,7 +330,7 @@ static void _call_f_setGeometry_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setGeometry (arg1); } @@ -350,7 +350,7 @@ static void _call_f_setMaximumHeight_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMaximumHeight (arg1); } @@ -370,7 +370,7 @@ static void _call_f_setMaximumSize_1875 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMaximumSize (arg1); } @@ -392,8 +392,8 @@ static void _call_f_setMaximumSize_2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMaximumSize (arg1, arg2); } @@ -413,7 +413,7 @@ static void _call_f_setMaximumWidth_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMaximumWidth (arg1); } @@ -433,7 +433,7 @@ static void _call_f_setMinimumHeight_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMinimumHeight (arg1); } @@ -453,7 +453,7 @@ static void _call_f_setMinimumSize_1875 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMinimumSize (arg1); } @@ -475,8 +475,8 @@ static void _call_f_setMinimumSize_2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMinimumSize (arg1, arg2); } @@ -496,7 +496,7 @@ static void _call_f_setMinimumWidth_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMinimumWidth (arg1); } @@ -516,7 +516,7 @@ static void _call_f_setParentLayoutItem_2557 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setParentLayoutItem (arg1); } @@ -536,7 +536,7 @@ static void _call_f_setPreferredHeight_1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setPreferredHeight (arg1); } @@ -556,7 +556,7 @@ static void _call_f_setPreferredSize_1875 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setPreferredSize (arg1); } @@ -578,8 +578,8 @@ static void _call_f_setPreferredSize_2034 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setPreferredSize (arg1, arg2); } @@ -599,7 +599,7 @@ static void _call_f_setPreferredWidth_1071 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setPreferredWidth (arg1); } @@ -619,7 +619,7 @@ static void _call_f_setSizePolicy_2429 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizePolicy &arg1 = args.read (heap); + const QSizePolicy &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setSizePolicy (arg1); } @@ -643,9 +643,9 @@ static void _call_f_setSizePolicy_7191 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::DefaultType)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::DefaultType), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setSizePolicy (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -853,8 +853,8 @@ static void _call_ctor_QGraphicsLayoutItem_Adaptor_3313 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args ? args.read (heap) : (QGraphicsLayoutItem *)(0); - bool arg2 = args ? args.read (heap) : (bool)(false); + QGraphicsLayoutItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write (new QGraphicsLayoutItem_Adaptor (arg1, arg2)); } @@ -929,7 +929,7 @@ static void _call_fp_setGraphicsItem_1919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem_Adaptor *)cls)->fp_QGraphicsLayoutItem_setGraphicsItem_1919 (arg1); } @@ -948,7 +948,7 @@ static void _call_fp_setOwnedByLayout_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem_Adaptor *)cls)->fp_QGraphicsLayoutItem_setOwnedByLayout_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLineItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLineItem.cc index 0267c1488..2c64591bb 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLineItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLineItem.cc @@ -94,7 +94,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem *)cls)->contains (arg1)); } @@ -113,7 +113,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem *)cls)->isObscuredBy (arg1)); } @@ -166,9 +166,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem *)cls)->paint (arg1, arg2, arg3); } @@ -203,7 +203,7 @@ static void _call_f_setLine_1856 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem *)cls)->setLine (arg1); } @@ -229,10 +229,10 @@ static void _call_f_setLine_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem *)cls)->setLine (arg1, arg2, arg3, arg4); } @@ -252,7 +252,7 @@ static void _call_f_setPen_1685 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem *)cls)->setPen (arg1); } @@ -973,8 +973,8 @@ static void _call_ctor_QGraphicsLineItem_Adaptor_3825 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg2 = args ? args.read (heap) : (QGraphicsScene *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsLineItem_Adaptor (arg1, arg2)); } @@ -996,9 +996,9 @@ static void _call_ctor_QGraphicsLineItem_Adaptor_5573 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg3 = args ? args.read (heap) : (QGraphicsScene *)(0); + const QLineF &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsLineItem_Adaptor (arg1, arg2, arg3)); } @@ -1026,12 +1026,12 @@ static void _call_ctor_QGraphicsLineItem_Adaptor_7677 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - QGraphicsItem *arg5 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg6 = args ? args.read (heap) : (QGraphicsScene *)(0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsLineItem_Adaptor (arg1, arg2, arg3, arg4, arg5, arg6)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLinearLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLinearLayout.cc index 415242b9b..0a39c4549 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLinearLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsLinearLayout.cc @@ -56,7 +56,7 @@ static void _call_f_addItem_2557 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->addItem (arg1); } @@ -76,7 +76,7 @@ static void _call_f_addStretch_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->addStretch (arg1); } @@ -96,7 +96,7 @@ static void _call_f_alignment_c2557 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QGraphicsLinearLayout *)cls)->alignment (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_dump_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->dump (arg1); } @@ -152,8 +152,8 @@ static void _call_f_insertItem_3216 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QGraphicsLayoutItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QGraphicsLayoutItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->insertItem (arg1, arg2); } @@ -175,8 +175,8 @@ static void _call_f_insertStretch_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(1); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->insertStretch (arg1, arg2); } @@ -212,7 +212,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsLinearLayout *)cls)->itemAt (arg1)); } @@ -231,7 +231,7 @@ static void _call_f_itemSpacing_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsLinearLayout *)cls)->itemSpacing (arg1)); } @@ -265,7 +265,7 @@ static void _call_f_removeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->removeAt (arg1); } @@ -285,7 +285,7 @@ static void _call_f_removeItem_2557 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->removeItem (arg1); } @@ -307,8 +307,8 @@ static void _call_f_setAlignment_5199 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->setAlignment (arg1, arg2); } @@ -328,7 +328,7 @@ static void _call_f_setGeometry_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->setGeometry (arg1); } @@ -350,8 +350,8 @@ static void _call_f_setItemSpacing_1730 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->setItemSpacing (arg1, arg2); } @@ -371,7 +371,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -391,7 +391,7 @@ static void _call_f_setSpacing_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->setSpacing (arg1); } @@ -413,8 +413,8 @@ static void _call_f_setStretchFactor_3216 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->setStretchFactor (arg1, arg2); } @@ -436,8 +436,8 @@ static void _call_f_sizeHint_c3330 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args ? args.read (heap) : (const QSizeF &)(QSizeF()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsLinearLayout *)cls)->sizeHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -471,7 +471,7 @@ static void _call_f_stretchFactor_c2557 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsLinearLayout *)cls)->stretchFactor (arg1)); } @@ -723,7 +723,7 @@ static void _call_ctor_QGraphicsLinearLayout_Adaptor_2557 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args ? args.read (heap) : (QGraphicsLayoutItem *)(0); + QGraphicsLayoutItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsLinearLayout_Adaptor (arg1)); } @@ -743,8 +743,8 @@ static void _call_ctor_QGraphicsLinearLayout_Adaptor_4362 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QGraphicsLayoutItem *arg2 = args ? args.read (heap) : (QGraphicsLayoutItem *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QGraphicsLayoutItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsLinearLayout_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -762,7 +762,7 @@ static void _call_fp_addChildLayoutItem_2557 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->fp_QGraphicsLinearLayout_addChildLayoutItem_2557 (arg1); } @@ -924,7 +924,7 @@ static void _call_fp_setGraphicsItem_1919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->fp_QGraphicsLinearLayout_setGraphicsItem_1919 (arg1); } @@ -943,7 +943,7 @@ static void _call_fp_setOwnedByLayout_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->fp_QGraphicsLinearLayout_setOwnedByLayout_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsObject.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsObject.cc index ca1a8b5cf..24f952fa9 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsObject.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsObject.cc @@ -110,8 +110,8 @@ static void _call_f_grabGesture_4352 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::GestureFlags()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::GestureFlags(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject *)cls)->grabGesture (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -131,7 +131,7 @@ static void _call_f_ungrabGesture_1902 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject *)cls)->ungrabGesture (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -153,8 +153,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsObject::tr (arg1, arg2)); } @@ -177,9 +177,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsObject::tr (arg1, arg2, arg3)); } @@ -200,8 +200,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsObject::trUtf8 (arg1, arg2)); } @@ -224,9 +224,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsObject::trUtf8 (arg1, arg2, arg3)); } @@ -1096,7 +1096,7 @@ static void _call_ctor_QGraphicsObject_Adaptor_1919 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsObject_Adaptor (arg1)); } @@ -1319,7 +1319,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsObject_Adaptor *)cls)->emitter_QGraphicsObject_destroyed_1302 (arg1); } @@ -1995,7 +1995,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsObject_Adaptor *)cls)->fp_QGraphicsObject_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsOpacityEffect.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsOpacityEffect.cc index f4ebbc7c6..039aa0fd3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsOpacityEffect.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsOpacityEffect.cc @@ -103,7 +103,7 @@ static void _call_f_setOpacity_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect *)cls)->setOpacity (arg1); } @@ -123,7 +123,7 @@ static void _call_f_setOpacityMask_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect *)cls)->setOpacityMask (arg1); } @@ -145,8 +145,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsOpacityEffect::tr (arg1, arg2)); } @@ -169,9 +169,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsOpacityEffect::tr (arg1, arg2, arg3)); } @@ -192,8 +192,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsOpacityEffect::trUtf8 (arg1, arg2)); } @@ -216,9 +216,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsOpacityEffect::trUtf8 (arg1, arg2, arg3)); } @@ -493,7 +493,7 @@ static void _call_ctor_QGraphicsOpacityEffect_Adaptor_1302 (const qt_gsi::Generi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsOpacityEffect_Adaptor (arg1)); } @@ -582,7 +582,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsOpacityEffect_Adaptor *)cls)->emitter_QGraphicsOpacityEffect_destroyed_1302 (arg1); } @@ -648,7 +648,7 @@ static void _call_fp_drawSource_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->fp_QGraphicsOpacityEffect_drawSource_1426 (arg1); } @@ -667,7 +667,7 @@ static void _call_emitter_enabledChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QGraphicsOpacityEffect_Adaptor *)cls)->emitter_QGraphicsOpacityEffect_enabledChanged_864 (arg1); } @@ -734,7 +734,7 @@ static void _call_emitter_opacityChanged_1071 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QGraphicsOpacityEffect_Adaptor *)cls)->emitter_QGraphicsOpacityEffect_opacityChanged_1071 (arg1); } @@ -752,7 +752,7 @@ static void _call_emitter_opacityMaskChanged_1910 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsOpacityEffect_Adaptor *)cls)->emitter_QGraphicsOpacityEffect_opacityMaskChanged_1910 (arg1); } @@ -770,7 +770,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsOpacityEffect_Adaptor *)cls)->fp_QGraphicsOpacityEffect_receivers_c1731 (arg1)); } @@ -802,7 +802,7 @@ static void _call_fp_sourceBoundingRect_c2426 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); ret.write ((QRectF)((QGraphicsOpacityEffect_Adaptor *)cls)->fp_QGraphicsOpacityEffect_sourceBoundingRect_c2426 (arg1)); } @@ -862,9 +862,9 @@ static void _call_fp_sourcePixmap_c6763 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); - QPoint *arg2 = args ? args.read (heap) : (QPoint *)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); + QPoint *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect), heap); ret.write ((QPixmap)((QGraphicsOpacityEffect_Adaptor *)cls)->fp_QGraphicsOpacityEffect_sourcePixmap_c6763 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPathItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPathItem.cc index 5a0377721..568bfb844 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPathItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPathItem.cc @@ -94,7 +94,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem *)cls)->contains (arg1)); } @@ -113,7 +113,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem *)cls)->isObscuredBy (arg1)); } @@ -151,9 +151,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem *)cls)->paint (arg1, arg2, arg3); } @@ -188,7 +188,7 @@ static void _call_f_setPath_2514 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem *)cls)->setPath (arg1); } @@ -888,8 +888,8 @@ static void _call_ctor_QGraphicsPathItem_Adaptor_3825 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg2 = args ? args.read (heap) : (QGraphicsScene *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsPathItem_Adaptor (arg1, arg2)); } @@ -911,9 +911,9 @@ static void _call_ctor_QGraphicsPathItem_Adaptor_6231 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg3 = args ? args.read (heap) : (QGraphicsScene *)(0); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsPathItem_Adaptor (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPixmapItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPixmapItem.cc index 49cc959cd..54efaf527 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPixmapItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPixmapItem.cc @@ -93,7 +93,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem *)cls)->contains (arg1)); } @@ -112,7 +112,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem *)cls)->isObscuredBy (arg1)); } @@ -165,9 +165,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem *)cls)->paint (arg1, arg2, arg3); } @@ -202,7 +202,7 @@ static void _call_f_setOffset_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem *)cls)->setOffset (arg1); } @@ -224,8 +224,8 @@ static void _call_f_setOffset_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem *)cls)->setOffset (arg1, arg2); } @@ -245,7 +245,7 @@ static void _call_f_setPixmap_2017 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem *)cls)->setPixmap (arg1); } @@ -265,7 +265,7 @@ static void _call_f_setShapeMode_3358 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem *)cls)->setShapeMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -285,7 +285,7 @@ static void _call_f_setTransformationMode_2633 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem *)cls)->setTransformationMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1022,8 +1022,8 @@ static void _call_ctor_QGraphicsPixmapItem_Adaptor_3825 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg2 = args ? args.read (heap) : (QGraphicsScene *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsPixmapItem_Adaptor (arg1, arg2)); } @@ -1045,9 +1045,9 @@ static void _call_ctor_QGraphicsPixmapItem_Adaptor_5734 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg3 = args ? args.read (heap) : (QGraphicsScene *)(0); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsPixmapItem_Adaptor (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPolygonItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPolygonItem.cc index b53959c42..6e309fe90 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPolygonItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsPolygonItem.cc @@ -94,7 +94,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem *)cls)->contains (arg1)); } @@ -128,7 +128,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem *)cls)->isObscuredBy (arg1)); } @@ -166,9 +166,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem *)cls)->paint (arg1, arg2, arg3); } @@ -203,7 +203,7 @@ static void _call_f_setFillRule_1548 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem *)cls)->setFillRule (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -223,7 +223,7 @@ static void _call_f_setPolygon_2208 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem *)cls)->setPolygon (arg1); } @@ -925,8 +925,8 @@ static void _call_ctor_QGraphicsPolygonItem_Adaptor_3825 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg2 = args ? args.read (heap) : (QGraphicsScene *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsPolygonItem_Adaptor (arg1, arg2)); } @@ -948,9 +948,9 @@ static void _call_ctor_QGraphicsPolygonItem_Adaptor_5925 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg3 = args ? args.read (heap) : (QGraphicsScene *)(0); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsPolygonItem_Adaptor (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsProxyWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsProxyWidget.cc index a752235e6..48f249210 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsProxyWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsProxyWidget.cc @@ -109,7 +109,7 @@ static void _call_f_createProxyForChildWidget_1315 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsProxyWidget *)((QGraphicsProxyWidget *)cls)->createProxyForChildWidget (arg1)); } @@ -132,9 +132,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget *)cls)->paint (arg1, arg2, arg3); } @@ -154,7 +154,7 @@ static void _call_f_setGeometry_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget *)cls)->setGeometry (arg1); } @@ -174,7 +174,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget *)cls)->setWidget (arg1); } @@ -194,7 +194,7 @@ static void _call_f_subWidgetRect_c2010 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsProxyWidget *)cls)->subWidgetRect (arg1)); } @@ -245,8 +245,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsProxyWidget::tr (arg1, arg2)); } @@ -269,9 +269,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsProxyWidget::tr (arg1, arg2, arg3)); } @@ -292,8 +292,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsProxyWidget::trUtf8 (arg1, arg2)); } @@ -316,9 +316,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsProxyWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1499,8 +1499,8 @@ static void _call_ctor_QGraphicsProxyWidget_Adaptor_4306 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QGraphicsProxyWidget_Adaptor (arg1, arg2)); } @@ -1771,7 +1771,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsProxyWidget_Adaptor *)cls)->emitter_QGraphicsProxyWidget_destroyed_1302 (arg1); } @@ -2531,7 +2531,7 @@ static void _call_fp_newProxyWidget_2010 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsProxyWidget *)((QGraphicsProxyWidget_Adaptor *)cls)->fp_QGraphicsProxyWidget_newProxyWidget_2010 (arg1)); } @@ -2717,7 +2717,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsProxyWidget_Adaptor *)cls)->fp_QGraphicsProxyWidget_receivers_c1731 (arg1)); } @@ -2916,7 +2916,7 @@ static void _call_fp_setGraphicsItem_1919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->fp_QGraphicsProxyWidget_setGraphicsItem_1919 (arg1); } @@ -2935,7 +2935,7 @@ static void _call_fp_setOwnedByLayout_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->fp_QGraphicsProxyWidget_setOwnedByLayout_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRectItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRectItem.cc index 19560212f..9a9d65e54 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRectItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRectItem.cc @@ -94,7 +94,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem *)cls)->contains (arg1)); } @@ -113,7 +113,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem *)cls)->isObscuredBy (arg1)); } @@ -151,9 +151,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem *)cls)->paint (arg1, arg2, arg3); } @@ -188,7 +188,7 @@ static void _call_f_setRect_1862 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem *)cls)->setRect (arg1); } @@ -214,10 +214,10 @@ static void _call_f_setRect_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem *)cls)->setRect (arg1, arg2, arg3, arg4); } @@ -936,8 +936,8 @@ static void _call_ctor_QGraphicsRectItem_Adaptor_3825 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg2 = args ? args.read (heap) : (QGraphicsScene *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsRectItem_Adaptor (arg1, arg2)); } @@ -959,9 +959,9 @@ static void _call_ctor_QGraphicsRectItem_Adaptor_5579 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg3 = args ? args.read (heap) : (QGraphicsScene *)(0); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsRectItem_Adaptor (arg1, arg2, arg3)); } @@ -989,12 +989,12 @@ static void _call_ctor_QGraphicsRectItem_Adaptor_7677 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - QGraphicsItem *arg5 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg6 = args ? args.read (heap) : (QGraphicsScene *)(0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsRectItem_Adaptor (arg1, arg2, arg3, arg4, arg5, arg6)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRotation.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRotation.cc index 546205867..65d47e33c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRotation.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsRotation.cc @@ -85,7 +85,7 @@ static void _call_f_applyTo_c1556 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMatrix4x4 *arg1 = args.read (heap); + QMatrix4x4 *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation *)cls)->applyTo (arg1); } @@ -135,7 +135,7 @@ static void _call_f_setAngle_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation *)cls)->setAngle (arg1); } @@ -155,7 +155,7 @@ static void _call_f_setAxis_2140 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation *)cls)->setAxis (arg1); } @@ -175,7 +175,7 @@ static void _call_f_setAxis_1154 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation *)cls)->setAxis (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -195,7 +195,7 @@ static void _call_f_setOrigin_2140 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation *)cls)->setOrigin (arg1); } @@ -217,8 +217,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsRotation::tr (arg1, arg2)); } @@ -241,9 +241,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsRotation::tr (arg1, arg2, arg3)); } @@ -264,8 +264,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsRotation::trUtf8 (arg1, arg2)); } @@ -288,9 +288,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsRotation::trUtf8 (arg1, arg2, arg3)); } @@ -517,7 +517,7 @@ static void _call_ctor_QGraphicsRotation_Adaptor_1302 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsRotation_Adaptor (arg1)); } @@ -635,7 +635,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsRotation_Adaptor *)cls)->emitter_QGraphicsRotation_destroyed_1302 (arg1); } @@ -740,7 +740,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsRotation_Adaptor *)cls)->fp_QGraphicsRotation_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScale.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScale.cc index dec630c02..234ac7f9b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScale.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScale.cc @@ -70,7 +70,7 @@ static void _call_f_applyTo_c1556 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMatrix4x4 *arg1 = args.read (heap); + QMatrix4x4 *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale *)cls)->applyTo (arg1); } @@ -105,7 +105,7 @@ static void _call_f_setOrigin_2140 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale *)cls)->setOrigin (arg1); } @@ -125,7 +125,7 @@ static void _call_f_setXScale_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale *)cls)->setXScale (arg1); } @@ -145,7 +145,7 @@ static void _call_f_setYScale_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale *)cls)->setYScale (arg1); } @@ -165,7 +165,7 @@ static void _call_f_setZScale_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale *)cls)->setZScale (arg1); } @@ -232,8 +232,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsScale::tr (arg1, arg2)); } @@ -256,9 +256,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsScale::tr (arg1, arg2, arg3)); } @@ -279,8 +279,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsScale::trUtf8 (arg1, arg2)); } @@ -303,9 +303,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsScale::trUtf8 (arg1, arg2, arg3)); } @@ -526,7 +526,7 @@ static void _call_ctor_QGraphicsScale_Adaptor_1302 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsScale_Adaptor (arg1)); } @@ -616,7 +616,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsScale_Adaptor *)cls)->emitter_QGraphicsScale_destroyed_1302 (arg1); } @@ -721,7 +721,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsScale_Adaptor *)cls)->fp_QGraphicsScale_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScene.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScene.cc index 5ce8b6d59..b4c0f2b6a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScene.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsScene.cc @@ -116,9 +116,9 @@ static void _call_f_addEllipse_5241 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPen &arg2 = args ? args.read (heap) : (const QPen &)(QPen()); - const QBrush &arg3 = args ? args.read (heap) : (const QBrush &)(QBrush()); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPen &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); + const QBrush &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QBrush(), heap); ret.write ((QGraphicsEllipseItem *)((QGraphicsScene *)cls)->addEllipse (arg1, arg2, arg3)); } @@ -147,12 +147,12 @@ static void _call_f_addEllipse_7339 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - const QPen &arg5 = args ? args.read (heap) : (const QPen &)(QPen()); - const QBrush &arg6 = args ? args.read (heap) : (const QBrush &)(QBrush()); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + const QPen &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); + const QBrush &arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QBrush(), heap); ret.write ((QGraphicsEllipseItem *)((QGraphicsScene *)cls)->addEllipse (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -171,7 +171,7 @@ static void _call_f_addItem_1919 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->addItem (arg1); @@ -194,8 +194,8 @@ static void _call_f_addLine_3433 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); - const QPen &arg2 = args ? args.read (heap) : (const QPen &)(QPen()); + const QLineF &arg1 = gsi::arg_reader() (args, heap); + const QPen &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); ret.write ((QGraphicsLineItem *)((QGraphicsScene *)cls)->addLine (arg1, arg2)); } @@ -222,11 +222,11 @@ static void _call_f_addLine_5537 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - const QPen &arg5 = args ? args.read (heap) : (const QPen &)(QPen()); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + const QPen &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); ret.write ((QGraphicsLineItem *)((QGraphicsScene *)cls)->addLine (arg1, arg2, arg3, arg4, arg5)); } @@ -249,9 +249,9 @@ static void _call_f_addPath_5893 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const QPen &arg2 = args ? args.read (heap) : (const QPen &)(QPen()); - const QBrush &arg3 = args ? args.read (heap) : (const QBrush &)(QBrush()); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const QPen &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); + const QBrush &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QBrush(), heap); ret.write ((QGraphicsPathItem *)((QGraphicsScene *)cls)->addPath (arg1, arg2, arg3)); } @@ -270,7 +270,7 @@ static void _call_f_addPixmap_2017 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsPixmapItem *)((QGraphicsScene *)cls)->addPixmap (arg1)); } @@ -293,9 +293,9 @@ static void _call_f_addPolygon_5587 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); - const QPen &arg2 = args ? args.read (heap) : (const QPen &)(QPen()); - const QBrush &arg3 = args ? args.read (heap) : (const QBrush &)(QBrush()); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); + const QPen &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); + const QBrush &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QBrush(), heap); ret.write ((QGraphicsPolygonItem *)((QGraphicsScene *)cls)->addPolygon (arg1, arg2, arg3)); } @@ -318,9 +318,9 @@ static void _call_f_addRect_5241 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPen &arg2 = args ? args.read (heap) : (const QPen &)(QPen()); - const QBrush &arg3 = args ? args.read (heap) : (const QBrush &)(QBrush()); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPen &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); + const QBrush &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QBrush(), heap); ret.write ((QGraphicsRectItem *)((QGraphicsScene *)cls)->addRect (arg1, arg2, arg3)); } @@ -349,12 +349,12 @@ static void _call_f_addRect_7339 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - const QPen &arg5 = args ? args.read (heap) : (const QPen &)(QPen()); - const QBrush &arg6 = args ? args.read (heap) : (const QBrush &)(QBrush()); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + const QPen &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); + const QBrush &arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QBrush(), heap); ret.write ((QGraphicsRectItem *)((QGraphicsScene *)cls)->addRect (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -375,8 +375,8 @@ static void _call_f_addSimpleText_3718 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QFont &arg2 = args ? args.read (heap) : (const QFont &)(QFont()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QFont &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QFont(), heap); ret.write ((QGraphicsSimpleTextItem *)((QGraphicsScene *)cls)->addSimpleText (arg1, arg2)); } @@ -397,8 +397,8 @@ static void _call_f_addText_3718 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QFont &arg2 = args ? args.read (heap) : (const QFont &)(QFont()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QFont &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QFont(), heap); ret.write ((QGraphicsTextItem *)((QGraphicsScene *)cls)->addText (arg1, arg2)); } @@ -419,8 +419,8 @@ static void _call_f_addWidget_3702 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QGraphicsProxyWidget *)((QGraphicsScene *)cls)->addWidget (arg1, arg2)); } @@ -535,8 +535,8 @@ static void _call_f_collidingItems_c4977 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsScene *)cls)->collidingItems (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -555,7 +555,7 @@ static void _call_f_createItemGroup_3411 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QGraphicsItemGroup *)((QGraphicsScene *)cls)->createItemGroup (arg1)); } @@ -574,7 +574,7 @@ static void _call_f_destroyItemGroup_2444 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItemGroup *arg1 = args.read (heap); + QGraphicsItemGroup *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->destroyItemGroup (arg1); } @@ -669,7 +669,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsScene *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -696,11 +696,11 @@ static void _call_f_invalidate_7495 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - QFlags arg5 = args ? args.read > (heap) : (QFlags)(QGraphicsScene::AllLayers); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QGraphicsScene::AllLayers, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->invalidate (arg1, arg2, arg3, arg4, arg5); } @@ -722,8 +722,8 @@ static void _call_f_invalidate_5397 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args ? args.read (heap) : (const QRectF &)(QRectF()); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QGraphicsScene::AllLayers); + const QRectF &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QGraphicsScene::AllLayers, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->invalidate (arg1, arg2); } @@ -773,7 +773,7 @@ static void _call_f_itemAt_c1986 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsItem *)((QGraphicsScene *)cls)->itemAt (arg1)); } @@ -794,8 +794,8 @@ static void _call_f_itemAt_c4228 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QTransform &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QTransform &arg2 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsItem *)((QGraphicsScene *)cls)->itemAt (arg1, arg2)); } @@ -816,8 +816,8 @@ static void _call_f_itemAt_c2034 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsItem *)((QGraphicsScene *)cls)->itemAt (arg1, arg2)); } @@ -840,9 +840,9 @@ static void _call_f_itemAt_c4276 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - const QTransform &arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const QTransform &arg3 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsItem *)((QGraphicsScene *)cls)->itemAt (arg1, arg2, arg3)); } @@ -891,7 +891,7 @@ static void _call_f_items_c1681 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -916,10 +916,10 @@ static void _call_f_items_c8164 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QTransform &arg4 = args ? args.read (heap) : (const QTransform &)(QTransform()); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QTransform &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTransform(), heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -944,10 +944,10 @@ static void _call_f_items_c8040 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QTransform &arg4 = args ? args.read (heap) : (const QTransform &)(QTransform()); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QTransform &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTransform(), heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -972,10 +972,10 @@ static void _call_f_items_c8386 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QTransform &arg4 = args ? args.read (heap) : (const QTransform &)(QTransform()); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QTransform &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTransform(), heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -1000,10 +1000,10 @@ static void _call_f_items_c8692 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QTransform &arg4 = args ? args.read (heap) : (const QTransform &)(QTransform()); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QTransform &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTransform(), heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -1022,7 +1022,7 @@ static void _call_f_items_c1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (arg1)); } @@ -1043,8 +1043,8 @@ static void _call_f_items_c4225 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1065,8 +1065,8 @@ static void _call_f_items_c4571 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1087,8 +1087,8 @@ static void _call_f_items_c4877 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1115,11 +1115,11 @@ static void _call_f_items_c6323 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -1150,13 +1150,13 @@ static void _call_f_items_c10138 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg6 = args.read::target_type & > (heap); - const QTransform &arg7 = args ? args.read (heap) : (const QTransform &)(QTransform()); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg6 = gsi::arg_reader::target_type & >() (args, heap); + const QTransform &arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTransform(), heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref(), qt_gsi::QtToCppAdaptor(arg6).cref(), arg7)); } @@ -1220,7 +1220,7 @@ static void _call_f_removeItem_1919 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->removeItem (arg1); } @@ -1246,10 +1246,10 @@ static void _call_f_render_7083 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args ? args.read (heap) : (const QRectF &)(QRectF()); - const QRectF &arg3 = args ? args.read (heap) : (const QRectF &)(QRectF()); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::KeepAspectRatio)); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); + const QRectF &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::KeepAspectRatio), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->render (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -1316,8 +1316,8 @@ static void _call_f_sendEvent_3028 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScene *)cls)->sendEvent (arg1, arg2)); } @@ -1336,7 +1336,7 @@ static void _call_f_setActivePanel_1919 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setActivePanel (arg1); } @@ -1356,7 +1356,7 @@ static void _call_f_setActiveWindow_2132 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsWidget *arg1 = args.read (heap); + QGraphicsWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setActiveWindow (arg1); } @@ -1376,7 +1376,7 @@ static void _call_f_setBackgroundBrush_1910 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setBackgroundBrush (arg1); } @@ -1396,7 +1396,7 @@ static void _call_f_setBspTreeDepth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setBspTreeDepth (arg1); } @@ -1416,7 +1416,7 @@ static void _call_f_setFocus_1877 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setFocus (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1438,8 +1438,8 @@ static void _call_f_setFocusItem_3688 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason)); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setFocusItem (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1459,7 +1459,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setFont (arg1); } @@ -1479,7 +1479,7 @@ static void _call_f_setForegroundBrush_1910 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setForegroundBrush (arg1); } @@ -1499,7 +1499,7 @@ static void _call_f_setItemIndexMethod_3456 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setItemIndexMethod (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1519,7 +1519,7 @@ static void _call_f_setPalette_2113 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setPalette (arg1); } @@ -1539,7 +1539,7 @@ static void _call_f_setSceneRect_1862 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setSceneRect (arg1); } @@ -1565,10 +1565,10 @@ static void _call_f_setSceneRect_3960 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setSceneRect (arg1, arg2, arg3, arg4); } @@ -1588,7 +1588,7 @@ static void _call_f_setSelectionArea_2514 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setSelectionArea (arg1); } @@ -1610,8 +1610,8 @@ static void _call_f_setSelectionArea_4756 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const QTransform &arg2 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const QTransform &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setSelectionArea (arg1, arg2); } @@ -1633,8 +1633,8 @@ static void _call_f_setSelectionArea_4877 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setSelectionArea (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1658,9 +1658,9 @@ static void _call_f_setSelectionArea_7119 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QTransform &arg3 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QTransform &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setSelectionArea (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -1680,7 +1680,7 @@ static void _call_f_setSortCacheEnabled_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setSortCacheEnabled (arg1); } @@ -1700,7 +1700,7 @@ static void _call_f_setStickyFocus_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setStickyFocus (arg1); } @@ -1720,7 +1720,7 @@ static void _call_f_setStyle_1232 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle *arg1 = args.read (heap); + QStyle *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setStyle (arg1); } @@ -1776,10 +1776,10 @@ static void _call_f_update_3960 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->update (arg1, arg2, arg3, arg4); } @@ -1799,7 +1799,7 @@ static void _call_f_update_1862 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args ? args.read (heap) : (const QRectF &)(QRectF()); + const QRectF &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->update (arg1); } @@ -1851,8 +1851,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsScene::tr (arg1, arg2)); } @@ -1875,9 +1875,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsScene::tr (arg1, arg2, arg3)); } @@ -1898,8 +1898,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsScene::trUtf8 (arg1, arg2)); } @@ -1922,9 +1922,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsScene::trUtf8 (arg1, arg2, arg3)); } @@ -2540,7 +2540,7 @@ static void _call_ctor_QGraphicsScene_Adaptor_1302 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsScene_Adaptor (arg1)); } @@ -2560,8 +2560,8 @@ static void _call_ctor_QGraphicsScene_Adaptor_3056 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsScene_Adaptor (arg1, arg2)); } @@ -2587,11 +2587,11 @@ static void _call_ctor_QGraphicsScene_Adaptor_5154 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - QObject *arg5 = args ? args.read (heap) : (QObject *)(0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + QObject *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsScene_Adaptor (arg1, arg2, arg3, arg4, arg5)); } @@ -2609,7 +2609,7 @@ static void _call_emitter_changed_2477 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ((QGraphicsScene_Adaptor *)cls)->emitter_QGraphicsScene_changed_2477 (arg1); } @@ -2699,7 +2699,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsScene_Adaptor *)cls)->emitter_QGraphicsScene_destroyed_1302 (arg1); } @@ -2964,7 +2964,7 @@ static void _call_fp_focusNextPrevChild_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScene_Adaptor *)cls)->fp_QGraphicsScene_focusNextPrevChild_864 (arg1)); } @@ -3221,7 +3221,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsScene_Adaptor *)cls)->fp_QGraphicsScene_receivers_c1731 (arg1)); } @@ -3239,7 +3239,7 @@ static void _call_emitter_sceneRectChanged_1862 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsScene_Adaptor *)cls)->emitter_QGraphicsScene_sceneRectChanged_1862 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneContextMenuEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneContextMenuEvent.cc index 35305ab01..9aa456c5a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneContextMenuEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneContextMenuEvent.cc @@ -128,7 +128,7 @@ static void _call_f_setModifiers_3077 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneContextMenuEvent *)cls)->setModifiers (arg1); } @@ -148,7 +148,7 @@ static void _call_f_setPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneContextMenuEvent *)cls)->setPos (arg1); } @@ -168,7 +168,7 @@ static void _call_f_setReason_4220 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneContextMenuEvent *)cls)->setReason (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -188,7 +188,7 @@ static void _call_f_setScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneContextMenuEvent *)cls)->setScenePos (arg1); } @@ -208,7 +208,7 @@ static void _call_f_setScreenPos_1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneContextMenuEvent *)cls)->setScreenPos (arg1); } @@ -279,7 +279,7 @@ static void _call_ctor_QGraphicsSceneContextMenuEvent_Adaptor_1565 (const qt_gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::None)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::None), heap); ret.write (new QGraphicsSceneContextMenuEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneDragDropEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneDragDropEvent.cc index 6a788a9e1..6a2ad5b3d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneDragDropEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneDragDropEvent.cc @@ -205,7 +205,7 @@ static void _call_f_setButtons_2602 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setButtons (arg1); } @@ -225,7 +225,7 @@ static void _call_f_setDropAction_1760 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setDropAction (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -245,7 +245,7 @@ static void _call_f_setMimeData_2168 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setMimeData (arg1); } @@ -265,7 +265,7 @@ static void _call_f_setModifiers_3077 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setModifiers (arg1); } @@ -285,7 +285,7 @@ static void _call_f_setPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setPos (arg1); } @@ -305,7 +305,7 @@ static void _call_f_setPossibleActions_2456 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setPossibleActions (arg1); } @@ -325,7 +325,7 @@ static void _call_f_setProposedAction_1760 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setProposedAction (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -345,7 +345,7 @@ static void _call_f_setScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setScenePos (arg1); } @@ -365,7 +365,7 @@ static void _call_f_setScreenPos_1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setScreenPos (arg1); } @@ -385,7 +385,7 @@ static void _call_f_setSource_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setSource (arg1); } @@ -482,7 +482,7 @@ static void _call_ctor_QGraphicsSceneDragDropEvent_Adaptor_1565 (const qt_gsi::G { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::None)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::None), heap); ret.write (new QGraphicsSceneDragDropEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneEvent.cc index 6be113df7..17da116ae 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneEvent.cc @@ -51,7 +51,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneEvent *)cls)->setWidget (arg1); } @@ -123,7 +123,7 @@ static void _call_ctor_QGraphicsSceneEvent_Adaptor_1565 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QGraphicsSceneEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneHelpEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneHelpEvent.cc index 571bd9c87..5e2e3a44f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneHelpEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneHelpEvent.cc @@ -83,7 +83,7 @@ static void _call_f_setScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHelpEvent *)cls)->setScenePos (arg1); } @@ -103,7 +103,7 @@ static void _call_f_setScreenPos_1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHelpEvent *)cls)->setScreenPos (arg1); } @@ -168,7 +168,7 @@ static void _call_ctor_QGraphicsSceneHelpEvent_Adaptor_1565 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::None)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::None), heap); ret.write (new QGraphicsSceneHelpEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneHoverEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneHoverEvent.cc index 848fa143d..3cac54dd3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneHoverEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneHoverEvent.cc @@ -158,7 +158,7 @@ static void _call_f_setLastPos_1986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHoverEvent *)cls)->setLastPos (arg1); } @@ -178,7 +178,7 @@ static void _call_f_setLastScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHoverEvent *)cls)->setLastScenePos (arg1); } @@ -198,7 +198,7 @@ static void _call_f_setLastScreenPos_1916 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHoverEvent *)cls)->setLastScreenPos (arg1); } @@ -218,7 +218,7 @@ static void _call_f_setModifiers_3077 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHoverEvent *)cls)->setModifiers (arg1); } @@ -238,7 +238,7 @@ static void _call_f_setPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHoverEvent *)cls)->setPos (arg1); } @@ -258,7 +258,7 @@ static void _call_f_setScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHoverEvent *)cls)->setScenePos (arg1); } @@ -278,7 +278,7 @@ static void _call_f_setScreenPos_1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHoverEvent *)cls)->setScreenPos (arg1); } @@ -353,7 +353,7 @@ static void _call_ctor_QGraphicsSceneHoverEvent_Adaptor_1565 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::None)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::None), heap); ret.write (new QGraphicsSceneHoverEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneMouseEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneMouseEvent.cc index fe1c871e8..e9a6db079 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneMouseEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneMouseEvent.cc @@ -68,7 +68,7 @@ static void _call_f_buttonDownPos_c1906 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPointF)((QGraphicsSceneMouseEvent *)cls)->buttonDownPos (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -87,7 +87,7 @@ static void _call_f_buttonDownScenePos_c1906 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPointF)((QGraphicsSceneMouseEvent *)cls)->buttonDownScenePos (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -106,7 +106,7 @@ static void _call_f_buttonDownScreenPos_c1906 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPoint)((QGraphicsSceneMouseEvent *)cls)->buttonDownScreenPos (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -245,7 +245,7 @@ static void _call_f_setButton_1906 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setButton (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -267,8 +267,8 @@ static void _call_f_setButtonDownPos_3784 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPointF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setButtonDownPos (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -290,8 +290,8 @@ static void _call_f_setButtonDownScenePos_3784 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPointF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setButtonDownScenePos (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -313,8 +313,8 @@ static void _call_f_setButtonDownScreenPos_3714 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPoint &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setButtonDownScreenPos (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -334,7 +334,7 @@ static void _call_f_setButtons_2602 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setButtons (arg1); } @@ -354,7 +354,7 @@ static void _call_f_setLastPos_1986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setLastPos (arg1); } @@ -374,7 +374,7 @@ static void _call_f_setLastScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setLastScenePos (arg1); } @@ -394,7 +394,7 @@ static void _call_f_setLastScreenPos_1916 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setLastScreenPos (arg1); } @@ -414,7 +414,7 @@ static void _call_f_setModifiers_3077 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setModifiers (arg1); } @@ -434,7 +434,7 @@ static void _call_f_setPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setPos (arg1); } @@ -454,7 +454,7 @@ static void _call_f_setScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setScenePos (arg1); } @@ -474,7 +474,7 @@ static void _call_f_setScreenPos_1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setScreenPos (arg1); } @@ -559,7 +559,7 @@ static void _call_ctor_QGraphicsSceneMouseEvent_Adaptor_1565 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::None)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::None), heap); ret.write (new QGraphicsSceneMouseEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneMoveEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneMoveEvent.cc index 7ef888b41..087868ebf 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneMoveEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneMoveEvent.cc @@ -82,7 +82,7 @@ static void _call_f_setNewPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMoveEvent *)cls)->setNewPos (arg1); } @@ -102,7 +102,7 @@ static void _call_f_setOldPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMoveEvent *)cls)->setOldPos (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneResizeEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneResizeEvent.cc index 68fa93fd1..2b7eeb8c6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneResizeEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneResizeEvent.cc @@ -82,7 +82,7 @@ static void _call_f_setNewSize_1875 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneResizeEvent *)cls)->setNewSize (arg1); } @@ -102,7 +102,7 @@ static void _call_f_setOldSize_1875 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneResizeEvent *)cls)->setOldSize (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneWheelEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneWheelEvent.cc index 3d14343e5..4b095d713 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneWheelEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSceneWheelEvent.cc @@ -158,7 +158,7 @@ static void _call_f_setButtons_2602 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneWheelEvent *)cls)->setButtons (arg1); } @@ -178,7 +178,7 @@ static void _call_f_setDelta_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneWheelEvent *)cls)->setDelta (arg1); } @@ -198,7 +198,7 @@ static void _call_f_setModifiers_3077 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneWheelEvent *)cls)->setModifiers (arg1); } @@ -218,7 +218,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneWheelEvent *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -238,7 +238,7 @@ static void _call_f_setPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneWheelEvent *)cls)->setPos (arg1); } @@ -258,7 +258,7 @@ static void _call_f_setScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneWheelEvent *)cls)->setScenePos (arg1); } @@ -278,7 +278,7 @@ static void _call_f_setScreenPos_1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneWheelEvent *)cls)->setScreenPos (arg1); } @@ -353,7 +353,7 @@ static void _call_ctor_QGraphicsSceneWheelEvent_Adaptor_1565 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::None)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::None), heap); ret.write (new QGraphicsSceneWheelEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSimpleTextItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSimpleTextItem.cc index 3db516ce2..95a416b9f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSimpleTextItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsSimpleTextItem.cc @@ -95,7 +95,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem *)cls)->contains (arg1)); } @@ -129,7 +129,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem *)cls)->isObscuredBy (arg1)); } @@ -167,9 +167,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem *)cls)->paint (arg1, arg2, arg3); } @@ -189,7 +189,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem *)cls)->setFont (arg1); } @@ -209,7 +209,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem *)cls)->setText (arg1); } @@ -926,8 +926,8 @@ static void _call_ctor_QGraphicsSimpleTextItem_Adaptor_3825 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg2 = args ? args.read (heap) : (QGraphicsScene *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsSimpleTextItem_Adaptor (arg1, arg2)); } @@ -949,9 +949,9 @@ static void _call_ctor_QGraphicsSimpleTextItem_Adaptor_5742 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg3 = args ? args.read (heap) : (QGraphicsScene *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsSimpleTextItem_Adaptor (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTextItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTextItem.cc index 15a293955..1afd69c7b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTextItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTextItem.cc @@ -129,7 +129,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem *)cls)->contains (arg1)); } @@ -193,7 +193,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem *)cls)->isObscuredBy (arg1)); } @@ -246,9 +246,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->paint (arg1, arg2, arg3); } @@ -268,7 +268,7 @@ static void _call_f_setDefaultTextColor_1905 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setDefaultTextColor (arg1); } @@ -288,7 +288,7 @@ static void _call_f_setDocument_1955 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setDocument (arg1); } @@ -308,7 +308,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setFont (arg1); } @@ -328,7 +328,7 @@ static void _call_f_setHtml_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setHtml (arg1); } @@ -348,7 +348,7 @@ static void _call_f_setOpenExternalLinks_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setOpenExternalLinks (arg1); } @@ -368,7 +368,7 @@ static void _call_f_setPlainText_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setPlainText (arg1); } @@ -388,7 +388,7 @@ static void _call_f_setTabChangesFocus_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setTabChangesFocus (arg1); } @@ -408,7 +408,7 @@ static void _call_f_setTextCursor_2453 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setTextCursor (arg1); } @@ -428,7 +428,7 @@ static void _call_f_setTextInteractionFlags_3396 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setTextInteractionFlags (arg1); } @@ -448,7 +448,7 @@ static void _call_f_setTextWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setTextWidth (arg1); } @@ -590,8 +590,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsTextItem::tr (arg1, arg2)); } @@ -614,9 +614,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsTextItem::tr (arg1, arg2, arg3)); } @@ -637,8 +637,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsTextItem::trUtf8 (arg1, arg2)); } @@ -661,9 +661,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsTextItem::trUtf8 (arg1, arg2, arg3)); } @@ -1546,8 +1546,8 @@ static void _call_ctor_QGraphicsTextItem_Adaptor_3825 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg2 = args ? args.read (heap) : (QGraphicsScene *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsTextItem_Adaptor (arg1, arg2)); } @@ -1569,9 +1569,9 @@ static void _call_ctor_QGraphicsTextItem_Adaptor_5742 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); - QGraphicsScene *arg3 = args ? args.read (heap) : (QGraphicsScene *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QGraphicsScene *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsTextItem_Adaptor (arg1, arg2, arg3)); } @@ -1794,7 +1794,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsTextItem_Adaptor *)cls)->emitter_QGraphicsTextItem_destroyed_1302 (arg1); } @@ -2282,7 +2282,7 @@ static void _call_emitter_linkActivated_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsTextItem_Adaptor *)cls)->emitter_QGraphicsTextItem_linkActivated_2025 (arg1); } @@ -2300,7 +2300,7 @@ static void _call_emitter_linkHovered_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsTextItem_Adaptor *)cls)->emitter_QGraphicsTextItem_linkHovered_2025 (arg1); } @@ -2506,7 +2506,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsTextItem_Adaptor *)cls)->fp_QGraphicsTextItem_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTransform.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTransform.cc index 2e20db606..b21369cbf 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTransform.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsTransform.cc @@ -69,7 +69,7 @@ static void _call_f_applyTo_c1556 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMatrix4x4 *arg1 = args.read (heap); + QMatrix4x4 *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform *)cls)->applyTo (arg1); } @@ -91,8 +91,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsTransform::tr (arg1, arg2)); } @@ -115,9 +115,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsTransform::tr (arg1, arg2, arg3)); } @@ -138,8 +138,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsTransform::trUtf8 (arg1, arg2)); } @@ -162,9 +162,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsTransform::trUtf8 (arg1, arg2, arg3)); } @@ -364,7 +364,7 @@ static void _call_ctor_QGraphicsTransform_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsTransform_Adaptor (arg1)); } @@ -454,7 +454,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsTransform_Adaptor *)cls)->emitter_QGraphicsTransform_destroyed_1302 (arg1); } @@ -545,7 +545,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsTransform_Adaptor *)cls)->fp_QGraphicsTransform_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsView.cc index cc8cd4eff..6068b69fa 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsView.cc @@ -166,7 +166,7 @@ static void _call_f_centerOn_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->centerOn (arg1); } @@ -188,8 +188,8 @@ static void _call_f_centerOn_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->centerOn (arg1, arg2); } @@ -209,7 +209,7 @@ static void _call_f_centerOn_2614 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->centerOn (arg1); } @@ -248,9 +248,9 @@ static void _call_f_ensureVisible_3180 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(50); - int arg3 = args ? args.read (heap) : (int)(50); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->ensureVisible (arg1, arg2, arg3); } @@ -280,12 +280,12 @@ static void _call_f_ensureVisible_5278 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - int arg5 = args ? args.read (heap) : (int)(50); - int arg6 = args ? args.read (heap) : (int)(50); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); + int arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->ensureVisible (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -309,9 +309,9 @@ static void _call_f_ensureVisible_3932 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(50); - int arg3 = args ? args.read (heap) : (int)(50); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->ensureVisible (arg1, arg2, arg3); } @@ -333,8 +333,8 @@ static void _call_f_fitInView_4011 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio)); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->fitInView (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -362,11 +362,11 @@ static void _call_f_fitInView_6109 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio)); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->fitInView (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()); } @@ -388,8 +388,8 @@ static void _call_f_fitInView_4763 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio)); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->fitInView (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -424,7 +424,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsView *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -445,8 +445,8 @@ static void _call_f_invalidateScene_5397 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args ? args.read (heap) : (const QRectF &)(QRectF()); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QGraphicsScene::AllLayers); + const QRectF &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QGraphicsScene::AllLayers, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->invalidateScene (arg1, arg2); } @@ -496,7 +496,7 @@ static void _call_f_itemAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsItem *)((QGraphicsView *)cls)->itemAt (arg1)); } @@ -517,8 +517,8 @@ static void _call_f_itemAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsItem *)((QGraphicsView *)cls)->itemAt (arg1, arg2)); } @@ -552,7 +552,7 @@ static void _call_f_items_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QGraphicsView *)cls)->items (arg1)); } @@ -573,8 +573,8 @@ static void _call_f_items_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QGraphicsView *)cls)->items (arg1, arg2)); } @@ -595,8 +595,8 @@ static void _call_f_items_c4155 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsView *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -623,11 +623,11 @@ static void _call_f_items_c5107 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsView *)cls)->items (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -648,8 +648,8 @@ static void _call_f_items_c4501 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsView *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -670,8 +670,8 @@ static void _call_f_items_c4877 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsView *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -690,7 +690,7 @@ static void _call_f_mapFromScene_c1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QGraphicsView *)cls)->mapFromScene (arg1)); } @@ -709,7 +709,7 @@ static void _call_f_mapFromScene_c1862 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QGraphicsView *)cls)->mapFromScene (arg1)); } @@ -728,7 +728,7 @@ static void _call_f_mapFromScene_c2208 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QGraphicsView *)cls)->mapFromScene (arg1)); } @@ -747,7 +747,7 @@ static void _call_f_mapFromScene_c2514 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsView *)cls)->mapFromScene (arg1)); } @@ -768,8 +768,8 @@ static void _call_f_mapFromScene_c2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QGraphicsView *)cls)->mapFromScene (arg1, arg2)); } @@ -794,10 +794,10 @@ static void _call_f_mapFromScene_c3960 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QGraphicsView *)cls)->mapFromScene (arg1, arg2, arg3, arg4)); } @@ -816,7 +816,7 @@ static void _call_f_mapToScene_c1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsView *)cls)->mapToScene (arg1)); } @@ -835,7 +835,7 @@ static void _call_f_mapToScene_c1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsView *)cls)->mapToScene (arg1)); } @@ -854,7 +854,7 @@ static void _call_f_mapToScene_c2138 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsView *)cls)->mapToScene (arg1)); } @@ -873,7 +873,7 @@ static void _call_f_mapToScene_c2514 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsView *)cls)->mapToScene (arg1)); } @@ -894,8 +894,8 @@ static void _call_f_mapToScene_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsView *)cls)->mapToScene (arg1, arg2)); } @@ -920,10 +920,10 @@ static void _call_f_mapToScene_c2744 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsView *)cls)->mapToScene (arg1, arg2, arg3, arg4)); } @@ -978,10 +978,10 @@ static void _call_f_render_7013 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args ? args.read (heap) : (const QRectF &)(QRectF()); - const QRect &arg3 = args ? args.read (heap) : (const QRect &)(QRect()); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::KeepAspectRatio)); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); + const QRect &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRect(), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::KeepAspectRatio), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->render (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -1079,7 +1079,7 @@ static void _call_f_rotate_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->rotate (arg1); } @@ -1116,8 +1116,8 @@ static void _call_f_scale_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->scale (arg1, arg2); } @@ -1167,7 +1167,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setAlignment (arg1); } @@ -1187,7 +1187,7 @@ static void _call_f_setBackgroundBrush_1910 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setBackgroundBrush (arg1); } @@ -1207,7 +1207,7 @@ static void _call_f_setCacheMode_3792 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setCacheMode (arg1); } @@ -1227,7 +1227,7 @@ static void _call_f_setDragMode_2632 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setDragMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1247,7 +1247,7 @@ static void _call_f_setForegroundBrush_1910 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setForegroundBrush (arg1); } @@ -1267,7 +1267,7 @@ static void _call_f_setInteractive_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setInteractive (arg1); } @@ -1289,8 +1289,8 @@ static void _call_f_setMatrix_2779 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setMatrix (arg1, arg2); } @@ -1312,8 +1312,8 @@ static void _call_f_setOptimizationFlag_4282 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setOptimizationFlag (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -1333,7 +1333,7 @@ static void _call_f_setOptimizationFlags_4222 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setOptimizationFlags (arg1); } @@ -1355,8 +1355,8 @@ static void _call_f_setRenderHint_3123 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setRenderHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -1376,7 +1376,7 @@ static void _call_f_setRenderHints_3063 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setRenderHints (arg1); } @@ -1396,7 +1396,7 @@ static void _call_f_setResizeAnchor_3328 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setResizeAnchor (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1416,7 +1416,7 @@ static void _call_f_setRubberBandSelectionMode_2471 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setRubberBandSelectionMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1436,7 +1436,7 @@ static void _call_f_setScene_2014 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsScene *arg1 = args.read (heap); + QGraphicsScene *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setScene (arg1); } @@ -1456,7 +1456,7 @@ static void _call_f_setSceneRect_1862 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setSceneRect (arg1); } @@ -1482,10 +1482,10 @@ static void _call_f_setSceneRect_3960 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setSceneRect (arg1, arg2, arg3, arg4); } @@ -1507,8 +1507,8 @@ static void _call_f_setTransform_3106 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setTransform (arg1, arg2); } @@ -1528,7 +1528,7 @@ static void _call_f_setTransformationAnchor_3328 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setTransformationAnchor (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1548,7 +1548,7 @@ static void _call_f_setViewportUpdateMode_3725 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setViewportUpdateMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1570,8 +1570,8 @@ static void _call_f_shear_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->shear (arg1, arg2); } @@ -1638,8 +1638,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->translate (arg1, arg2); } @@ -1659,7 +1659,7 @@ static void _call_f_updateScene_2477 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->updateScene (arg1); } @@ -1679,7 +1679,7 @@ static void _call_f_updateSceneRect_1862 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->updateSceneRect (arg1); } @@ -1731,8 +1731,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsView::tr (arg1, arg2)); } @@ -1755,9 +1755,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsView::tr (arg1, arg2, arg3)); } @@ -1778,8 +1778,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsView::trUtf8 (arg1, arg2)); } @@ -1802,9 +1802,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsView::trUtf8 (arg1, arg2, arg3)); } @@ -2834,7 +2834,7 @@ static void _call_ctor_QGraphicsView_Adaptor_1315 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsView_Adaptor (arg1)); } @@ -2854,8 +2854,8 @@ static void _call_ctor_QGraphicsView_Adaptor_3221 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsScene *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QGraphicsScene *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsView_Adaptor (arg1, arg2)); } @@ -2997,9 +2997,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->fp_QGraphicsView_create_2208 (arg1, arg2, arg3); } @@ -3018,7 +3018,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsView_Adaptor *)cls)->emitter_QGraphicsView_customContextMenuRequested_1916 (arg1); } @@ -3062,8 +3062,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->fp_QGraphicsView_destroy_1620 (arg1, arg2); } @@ -3082,7 +3082,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsView_Adaptor *)cls)->emitter_QGraphicsView_destroyed_1302 (arg1); } @@ -3250,7 +3250,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->fp_QGraphicsView_drawFrame_1426 (arg1); } @@ -3928,7 +3928,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsView_Adaptor *)cls)->fp_QGraphicsView_receivers_c1731 (arg1)); } @@ -4032,10 +4032,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->fp_QGraphicsView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -4054,7 +4054,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->fp_QGraphicsView_setViewportMargins_2115 (arg1); } @@ -4097,7 +4097,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->fp_QGraphicsView_setupViewport_1315 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsWidget.cc index dc3aac3a7..7ab745319 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGraphicsWidget.cc @@ -123,7 +123,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->addAction (arg1); } @@ -143,7 +143,7 @@ static void _call_f_addActions_1780 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QList arg1 = args.read > (heap); + QList arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->addActions (arg1); } @@ -275,10 +275,10 @@ static void _call_f_getContentsMargins_c4704 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->getContentsMargins (arg1, arg2, arg3, arg4); } @@ -304,10 +304,10 @@ static void _call_f_getWindowFrameMargins_c4704 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->getWindowFrameMargins (arg1, arg2, arg3, arg4); } @@ -329,8 +329,8 @@ static void _call_f_grabShortcut_4758 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::WindowShortcut)); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::WindowShortcut), heap); ret.write ((int)((QGraphicsWidget *)cls)->grabShortcut (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -351,8 +351,8 @@ static void _call_f_insertAction_2510 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - QAction *arg2 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + QAction *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->insertAction (arg1, arg2); } @@ -374,8 +374,8 @@ static void _call_f_insertActions_2981 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - QList arg2 = args.read > (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + QList arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->insertActions (arg1, arg2); } @@ -444,9 +444,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->paint (arg1, arg2, arg3); } @@ -470,9 +470,9 @@ static void _call_f_paintWindowFrame_6301 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->paintWindowFrame (arg1, arg2, arg3); } @@ -522,7 +522,7 @@ static void _call_f_releaseShortcut_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->releaseShortcut (arg1); } @@ -542,7 +542,7 @@ static void _call_f_removeAction_1309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->removeAction (arg1); } @@ -562,7 +562,7 @@ static void _call_f_resize_1875 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->resize (arg1); } @@ -584,8 +584,8 @@ static void _call_f_resize_2034 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->resize (arg1, arg2); } @@ -607,8 +607,8 @@ static void _call_f_setAttribute_3065 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setAttribute (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -634,10 +634,10 @@ static void _call_f_setContentsMargins_3960 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setContentsMargins (arg1, arg2, arg3, arg4); } @@ -657,7 +657,7 @@ static void _call_f_setFocusPolicy_1885 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setFocusPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -677,7 +677,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setFont (arg1); } @@ -697,7 +697,7 @@ static void _call_f_setGeometry_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setGeometry (arg1); } @@ -723,10 +723,10 @@ static void _call_f_setGeometry_3960 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setGeometry (arg1, arg2, arg3, arg4); } @@ -746,7 +746,7 @@ static void _call_f_setLayout_2158 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayout *arg1 = args.read (heap); + QGraphicsLayout *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setLayout (arg1); } @@ -766,7 +766,7 @@ static void _call_f_setLayoutDirection_2316 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setLayoutDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -786,7 +786,7 @@ static void _call_f_setPalette_2113 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setPalette (arg1); } @@ -808,8 +808,8 @@ static void _call_f_setShortcutAutoRepeat_1523 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setShortcutAutoRepeat (arg1, arg2); } @@ -831,8 +831,8 @@ static void _call_f_setShortcutEnabled_1523 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setShortcutEnabled (arg1, arg2); } @@ -852,7 +852,7 @@ static void _call_f_setStyle_1232 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle *arg1 = args.read (heap); + QStyle *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setStyle (arg1); } @@ -872,7 +872,7 @@ static void _call_f_setWindowFlags_2495 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setWindowFlags (arg1); } @@ -898,10 +898,10 @@ static void _call_f_setWindowFrameMargins_3960 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setWindowFrameMargins (arg1, arg2, arg3, arg4); } @@ -921,7 +921,7 @@ static void _call_f_setWindowTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setWindowTitle (arg1); } @@ -986,7 +986,7 @@ static void _call_f_testAttribute_c2309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QGraphicsWidget *)cls)->testAttribute (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1129,8 +1129,8 @@ static void _call_f_setTabOrder_4156 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsWidget *arg1 = args.read (heap); - QGraphicsWidget *arg2 = args.read (heap); + QGraphicsWidget *arg1 = gsi::arg_reader() (args, heap); + QGraphicsWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QGraphicsWidget::setTabOrder (arg1, arg2); } @@ -1152,8 +1152,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsWidget::tr (arg1, arg2)); } @@ -1176,9 +1176,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsWidget::tr (arg1, arg2, arg3)); } @@ -1199,8 +1199,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGraphicsWidget::trUtf8 (arg1, arg2)); } @@ -1223,9 +1223,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGraphicsWidget::trUtf8 (arg1, arg2, arg3)); } @@ -2497,8 +2497,8 @@ static void _call_ctor_QGraphicsWidget_Adaptor_4306 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QGraphicsWidget_Adaptor (arg1, arg2)); } @@ -2769,7 +2769,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsWidget_Adaptor *)cls)->emitter_QGraphicsWidget_destroyed_1302 (arg1); } @@ -3697,7 +3697,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsWidget_Adaptor *)cls)->fp_QGraphicsWidget_receivers_c1731 (arg1)); } @@ -3896,7 +3896,7 @@ static void _call_fp_setGraphicsItem_1919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->fp_QGraphicsWidget_setGraphicsItem_1919 (arg1); } @@ -3915,7 +3915,7 @@ static void _call_fp_setOwnedByLayout_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->fp_QGraphicsWidget_setOwnedByLayout_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc index 050647640..a0ed8baa0 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGridLayout.cc @@ -85,12 +85,12 @@ static void _call_f_addItem_7018 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(1); - int arg5 = args ? args.read (heap) : (int)(1); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->addItem (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -116,11 +116,11 @@ static void _call_f_addLayout_5301 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(0); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->addLayout (arg1, arg2, arg3, arg4); } @@ -150,13 +150,13 @@ static void _call_f_addLayout_6619 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->addLayout (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -176,7 +176,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->addWidget (arg1); } @@ -202,10 +202,10 @@ static void _call_f_addWidget_5275 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->addWidget (arg1, arg2, arg3, arg4); } @@ -235,12 +235,12 @@ static void _call_f_addWidget_6593 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->addWidget (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -262,8 +262,8 @@ static void _call_f_cellRect_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QGridLayout *)cls)->cellRect (arg1, arg2)); } @@ -297,7 +297,7 @@ static void _call_f_columnMinimumWidth_c767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout *)cls)->columnMinimumWidth (arg1)); } @@ -316,7 +316,7 @@ static void _call_f_columnStretch_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout *)cls)->columnStretch (arg1)); } @@ -373,11 +373,11 @@ static void _call_f_getItemPosition_4147 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); - int *arg5 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); + int *arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->getItemPosition (arg1, arg2, arg3, arg4, arg5); } @@ -412,7 +412,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout *)cls)->heightForWidth (arg1)); } @@ -462,7 +462,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QGridLayout *)cls)->itemAt (arg1)); } @@ -483,8 +483,8 @@ static void _call_f_itemAtPosition_c1426 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QGridLayout *)cls)->itemAtPosition (arg1, arg2)); } @@ -518,7 +518,7 @@ static void _call_f_minimumHeightForWidth_c767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout *)cls)->minimumHeightForWidth (arg1)); } @@ -582,7 +582,7 @@ static void _call_f_rowMinimumHeight_c767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout *)cls)->rowMinimumHeight (arg1)); } @@ -601,7 +601,7 @@ static void _call_f_rowStretch_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout *)cls)->rowStretch (arg1)); } @@ -622,8 +622,8 @@ static void _call_f_setColumnMinimumWidth_1426 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setColumnMinimumWidth (arg1, arg2); } @@ -645,8 +645,8 @@ static void _call_f_setColumnStretch_1426 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setColumnStretch (arg1, arg2); } @@ -668,8 +668,8 @@ static void _call_f_setDefaultPositioning_2572 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setDefaultPositioning (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -689,7 +689,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setGeometry (arg1); } @@ -709,7 +709,7 @@ static void _call_f_setHorizontalSpacing_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setHorizontalSpacing (arg1); } @@ -729,7 +729,7 @@ static void _call_f_setOriginCorner_1366 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setOriginCorner (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -751,8 +751,8 @@ static void _call_f_setRowMinimumHeight_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setRowMinimumHeight (arg1, arg2); } @@ -774,8 +774,8 @@ static void _call_f_setRowStretch_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setRowStretch (arg1, arg2); } @@ -795,7 +795,7 @@ static void _call_f_setSpacing_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setSpacing (arg1); } @@ -815,7 +815,7 @@ static void _call_f_setVerticalSpacing_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setVerticalSpacing (arg1); } @@ -865,7 +865,7 @@ static void _call_f_takeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QGridLayout *)cls)->takeAt (arg1)); } @@ -901,8 +901,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGridLayout::tr (arg1, arg2)); } @@ -925,9 +925,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGridLayout::tr (arg1, arg2, arg3)); } @@ -948,8 +948,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGridLayout::trUtf8 (arg1, arg2)); } @@ -972,9 +972,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGridLayout::trUtf8 (arg1, arg2, arg3)); } @@ -1515,7 +1515,7 @@ static void _call_ctor_QGridLayout_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QGridLayout_Adaptor (arg1)); } @@ -1547,7 +1547,7 @@ static void _call_fp_addChildLayout_1341 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->fp_QGridLayout_addChildLayout_1341 (arg1); @@ -1567,7 +1567,7 @@ static void _call_fp_addChildWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->fp_QGridLayout_addChildWidget_1315 (arg1); } @@ -1610,7 +1610,7 @@ static void _call_fp_alignmentRect_c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QGridLayout_Adaptor *)cls)->fp_QGridLayout_alignmentRect_c1792 (arg1)); } @@ -1695,7 +1695,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGridLayout_Adaptor *)cls)->emitter_QGridLayout_destroyed_1302 (arg1); } @@ -2031,7 +2031,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout_Adaptor *)cls)->fp_QGridLayout_receivers_c1731 (arg1)); } @@ -2191,7 +2191,7 @@ static void _call_fp_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->fp_QGridLayout_widgetEvent_1217 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQGroupBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQGroupBox.cc index a197823b7..bc46b65e3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQGroupBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQGroupBox.cc @@ -187,7 +187,7 @@ static void _call_f_setAlignment_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox *)cls)->setAlignment (arg1); } @@ -207,7 +207,7 @@ static void _call_f_setCheckable_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox *)cls)->setCheckable (arg1); } @@ -227,7 +227,7 @@ static void _call_f_setChecked_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox *)cls)->setChecked (arg1); } @@ -247,7 +247,7 @@ static void _call_f_setFlat_864 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox *)cls)->setFlat (arg1); } @@ -267,7 +267,7 @@ static void _call_f_setTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox *)cls)->setTitle (arg1); } @@ -304,8 +304,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGroupBox::tr (arg1, arg2)); } @@ -328,9 +328,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGroupBox::tr (arg1, arg2, arg3)); } @@ -351,8 +351,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QGroupBox::trUtf8 (arg1, arg2)); } @@ -375,9 +375,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QGroupBox::trUtf8 (arg1, arg2, arg3)); } @@ -1273,7 +1273,7 @@ static void _call_ctor_QGroupBox_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGroupBox_Adaptor (arg1)); } @@ -1293,8 +1293,8 @@ static void _call_ctor_QGroupBox_Adaptor_3232 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGroupBox_Adaptor (arg1, arg2)); } @@ -1384,7 +1384,7 @@ static void _call_emitter_clicked_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QGroupBox_Adaptor *)cls)->emitter_QGroupBox_clicked_864 (arg1); } @@ -1454,9 +1454,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->fp_QGroupBox_create_2208 (arg1, arg2, arg3); } @@ -1475,7 +1475,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QGroupBox_Adaptor *)cls)->emitter_QGroupBox_customContextMenuRequested_1916 (arg1); } @@ -1519,8 +1519,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->fp_QGroupBox_destroy_1620 (arg1, arg2); } @@ -1539,7 +1539,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGroupBox_Adaptor *)cls)->emitter_QGroupBox_destroyed_1302 (arg1); } @@ -1944,7 +1944,7 @@ static void _call_fp_initStyleOption_c2687 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionGroupBox *arg1 = args.read (heap); + QStyleOptionGroupBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->fp_QGroupBox_initStyleOption_c2687 (arg1); } @@ -2331,7 +2331,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGroupBox_Adaptor *)cls)->fp_QGroupBox_receivers_c1731 (arg1)); } @@ -2541,7 +2541,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QGroupBox_Adaptor *)cls)->emitter_QGroupBox_toggled_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQHBoxLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQHBoxLayout.cc index 0ced6feb1..8c3727194 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQHBoxLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQHBoxLayout.cc @@ -77,8 +77,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QHBoxLayout::tr (arg1, arg2)); } @@ -101,9 +101,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QHBoxLayout::tr (arg1, arg2, arg3)); } @@ -124,8 +124,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QHBoxLayout::trUtf8 (arg1, arg2)); } @@ -148,9 +148,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QHBoxLayout::trUtf8 (arg1, arg2, arg3)); } @@ -670,7 +670,7 @@ static void _call_ctor_QHBoxLayout_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QHBoxLayout_Adaptor (arg1)); } @@ -688,7 +688,7 @@ static void _call_fp_addChildLayout_1341 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->fp_QHBoxLayout_addChildLayout_1341 (arg1); @@ -708,7 +708,7 @@ static void _call_fp_addChildWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->fp_QHBoxLayout_addChildWidget_1315 (arg1); } @@ -751,7 +751,7 @@ static void _call_fp_alignmentRect_c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QHBoxLayout_Adaptor *)cls)->fp_QHBoxLayout_alignmentRect_c1792 (arg1)); } @@ -836,7 +836,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QHBoxLayout_Adaptor *)cls)->emitter_QHBoxLayout_destroyed_1302 (arg1); } @@ -1032,8 +1032,8 @@ static void _call_fp_insertItem_2399 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QLayoutItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QLayoutItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->fp_QHBoxLayout_insertItem_2399 (arg1, arg2); } @@ -1194,7 +1194,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHBoxLayout_Adaptor *)cls)->fp_QHBoxLayout_receivers_c1731 (arg1)); } @@ -1354,7 +1354,7 @@ static void _call_fp_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->fp_QHBoxLayout_widgetEvent_1217 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQHeaderView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQHeaderView.cc index c76f2fc5d..64f904393 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQHeaderView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQHeaderView.cc @@ -199,9 +199,9 @@ static void _call_f_headerDataChanged_3231 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->headerDataChanged (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3); } @@ -236,7 +236,7 @@ static void _call_f_hideSection_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->hideSection (arg1); } @@ -301,7 +301,7 @@ static void _call_f_isSectionHidden_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView *)cls)->isSectionHidden (arg1)); } @@ -350,7 +350,7 @@ static void _call_f_logicalIndex_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->logicalIndex (arg1)); } @@ -369,7 +369,7 @@ static void _call_f_logicalIndexAt_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->logicalIndexAt (arg1)); } @@ -390,8 +390,8 @@ static void _call_f_logicalIndexAt_c1426 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->logicalIndexAt (arg1, arg2)); } @@ -410,7 +410,7 @@ static void _call_f_logicalIndexAt_c1916 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->logicalIndexAt (arg1)); } @@ -446,8 +446,8 @@ static void _call_f_moveSection_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->moveSection (arg1, arg2); } @@ -513,7 +513,7 @@ static void _call_f_resizeMode_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QHeaderView *)cls)->resizeMode (arg1))); } @@ -534,8 +534,8 @@ static void _call_f_resizeSection_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->resizeSection (arg1, arg2); } @@ -555,7 +555,7 @@ static void _call_f_resizeSections_2644 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->resizeSections (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -575,7 +575,7 @@ static void _call_f_restoreState_2309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView *)cls)->restoreState (arg1)); } @@ -609,7 +609,7 @@ static void _call_f_sectionPosition_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->sectionPosition (arg1)); } @@ -628,7 +628,7 @@ static void _call_f_sectionSize_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->sectionSize (arg1)); } @@ -647,7 +647,7 @@ static void _call_f_sectionSizeHint_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->sectionSizeHint (arg1)); } @@ -666,7 +666,7 @@ static void _call_f_sectionViewportPosition_c767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->sectionViewportPosition (arg1)); } @@ -715,7 +715,7 @@ static void _call_f_setCascadingSectionResizes_864 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setCascadingSectionResizes (arg1); } @@ -735,7 +735,7 @@ static void _call_f_setClickable_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setClickable (arg1); } @@ -755,7 +755,7 @@ static void _call_f_setDefaultAlignment_2750 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setDefaultAlignment (arg1); } @@ -775,7 +775,7 @@ static void _call_f_setDefaultSectionSize_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setDefaultSectionSize (arg1); } @@ -795,7 +795,7 @@ static void _call_f_setHighlightSections_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setHighlightSections (arg1); } @@ -815,7 +815,7 @@ static void _call_f_setMinimumSectionSize_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setMinimumSectionSize (arg1); } @@ -835,7 +835,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setModel (arg1); } @@ -855,7 +855,7 @@ static void _call_f_setMovable_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setMovable (arg1); } @@ -875,7 +875,7 @@ static void _call_f_setOffset_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setOffset (arg1); } @@ -911,7 +911,7 @@ static void _call_f_setOffsetToSectionPosition_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setOffsetToSectionPosition (arg1); } @@ -931,7 +931,7 @@ static void _call_f_setResizeMode_2644 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setResizeMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -953,8 +953,8 @@ static void _call_f_setResizeMode_3303 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setResizeMode (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -976,8 +976,8 @@ static void _call_f_setSectionHidden_1523 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setSectionHidden (arg1, arg2); } @@ -999,8 +999,8 @@ static void _call_f_setSortIndicator_2340 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setSortIndicator (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1020,7 +1020,7 @@ static void _call_f_setSortIndicatorShown_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setSortIndicatorShown (arg1); } @@ -1040,7 +1040,7 @@ static void _call_f_setStretchLastSection_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setStretchLastSection (arg1); } @@ -1060,7 +1060,7 @@ static void _call_f_showSection_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->showSection (arg1); } @@ -1157,8 +1157,8 @@ static void _call_f_swapSections_1426 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->swapSections (arg1, arg2); } @@ -1178,7 +1178,7 @@ static void _call_f_visualIndex_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->visualIndex (arg1)); } @@ -1197,7 +1197,7 @@ static void _call_f_visualIndexAt_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->visualIndexAt (arg1)); } @@ -1218,8 +1218,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QHeaderView::tr (arg1, arg2)); } @@ -1242,9 +1242,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QHeaderView::tr (arg1, arg2, arg3)); } @@ -1265,8 +1265,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QHeaderView::trUtf8 (arg1, arg2)); } @@ -1289,9 +1289,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QHeaderView::trUtf8 (arg1, arg2, arg3)); } @@ -3133,8 +3133,8 @@ static void _call_ctor_QHeaderView_Adaptor_3120 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QHeaderView_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -3176,7 +3176,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_activated_2395 (arg1); } @@ -3242,7 +3242,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_clicked_2395 (arg1); } @@ -3363,9 +3363,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_create_2208 (arg1, arg2, arg3); } @@ -3411,7 +3411,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_customContextMenuRequested_1916 (arg1); } @@ -3482,8 +3482,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_destroy_1620 (arg1, arg2); } @@ -3502,7 +3502,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_destroyed_1302 (arg1); } @@ -3593,7 +3593,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_doubleClicked_2395 (arg1); } @@ -3683,7 +3683,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_drawFrame_1426 (arg1); } @@ -3841,7 +3841,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_entered_2395 (arg1); } @@ -4211,7 +4211,7 @@ static void _call_fp_initStyleOption_c2450 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionHeader *arg1 = args.read (heap); + QStyleOptionHeader *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_initStyleOption_c2450 (arg1); } @@ -4262,8 +4262,8 @@ static void _call_fp_initializeSections_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_initializeSections_1426 (arg1, arg2); } @@ -4753,7 +4753,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_pressed_2395 (arg1); } @@ -4771,7 +4771,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView_Adaptor *)cls)->fp_QHeaderView_receivers_c1731 (arg1)); } @@ -4967,8 +4967,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_scrollDirtyRegion_1426 (arg1, arg2); } @@ -5016,8 +5016,8 @@ static void _call_emitter_sectionAutoResize_3303 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionAutoResize_3303 (arg1, arg2); } @@ -5035,7 +5035,7 @@ static void _call_emitter_sectionClicked_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionClicked_767 (arg1); } @@ -5055,8 +5055,8 @@ static void _call_emitter_sectionCountChanged_1426 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionCountChanged_1426 (arg1, arg2); } @@ -5074,7 +5074,7 @@ static void _call_emitter_sectionDoubleClicked_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionDoubleClicked_767 (arg1); } @@ -5092,7 +5092,7 @@ static void _call_emitter_sectionEntered_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionEntered_767 (arg1); } @@ -5110,7 +5110,7 @@ static void _call_emitter_sectionHandleDoubleClicked_767 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionHandleDoubleClicked_767 (arg1); } @@ -5132,9 +5132,9 @@ static void _call_emitter_sectionMoved_2085 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionMoved_2085 (arg1, arg2, arg3); } @@ -5152,7 +5152,7 @@ static void _call_emitter_sectionPressed_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionPressed_767 (arg1); } @@ -5174,9 +5174,9 @@ static void _call_emitter_sectionResized_2085 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionResized_2085 (arg1, arg2, arg3); } @@ -5221,9 +5221,9 @@ static void _call_fp_sectionsAboutToBeRemoved_3713 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_sectionsAboutToBeRemoved_3713 (arg1, arg2, arg3); } @@ -5246,9 +5246,9 @@ static void _call_fp_sectionsInserted_3713 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_sectionsInserted_3713 (arg1, arg2, arg3); } @@ -5373,7 +5373,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setDirtyRegion_2006 (arg1); } @@ -5392,7 +5392,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setHorizontalStepsPerItem_767 (arg1); } @@ -5510,7 +5510,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setState_2776 (arg1); } @@ -5529,7 +5529,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setVerticalStepsPerItem_767 (arg1); } @@ -5554,10 +5554,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -5576,7 +5576,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setViewportMargins_2115 (arg1); } @@ -5619,7 +5619,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setupViewport_1315 (arg1); } @@ -5729,8 +5729,8 @@ static void _call_emitter_sortIndicatorChanged_2340 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sortIndicatorChanged_2340 (arg1, arg2); } @@ -5963,7 +5963,7 @@ static void _call_fp_updateSection_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_updateSection_767 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQHelpEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQHelpEvent.cc index a4075459f..5a7a2a1fe 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQHelpEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQHelpEvent.cc @@ -186,9 +186,9 @@ static void _call_ctor_QHelpEvent_Adaptor_5181 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPoint &arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); ret.write (new QHelpEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQHoverEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQHoverEvent.cc index 5f12c8a5a..0569427b4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQHoverEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQHoverEvent.cc @@ -122,9 +122,9 @@ static void _call_ctor_QHoverEvent_Adaptor_5181 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPoint &arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); ret.write (new QHoverEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQIcon.cc b/src/gsiqt/qt4/QtGui/gsiDeclQIcon.cc index 85fd22aa7..67936e796 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQIcon.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQIcon.cc @@ -71,7 +71,7 @@ static void _call_ctor_QIcon_2017 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); ret.write (new QIcon (arg1)); } @@ -90,7 +90,7 @@ static void _call_ctor_QIcon_1787 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ret.write (new QIcon (arg1)); } @@ -109,7 +109,7 @@ static void _call_ctor_QIcon_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QIcon (arg1)); } @@ -128,7 +128,7 @@ static void _call_ctor_QIcon_1694 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIconEngine *arg1 = args.read (heap); + QIconEngine *arg1 = gsi::arg_reader() (args, heap); ret.write (new QIcon (arg1)); } @@ -147,7 +147,7 @@ static void _call_ctor_QIcon_1830 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIconEngineV2 *arg1 = args.read (heap); + QIconEngineV2 *arg1 = gsi::arg_reader() (args, heap); ret.write (new QIcon (arg1)); } @@ -170,9 +170,9 @@ static void _call_f_actualSize_c4543 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write ((QSize)((QIcon *)cls)->actualSize (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -197,10 +197,10 @@ static void _call_f_addFile_6460 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QSize &arg2 = args ? args.read (heap) : (const QSize &)(QSize()); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSize(), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIcon *)cls)->addFile (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -224,9 +224,9 @@ static void _call_f_addPixmap_4755 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIcon *)cls)->addPixmap (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -248,8 +248,8 @@ static void _call_f_availableSizes_c2846 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write > ((QList)((QIcon *)cls)->availableSizes (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -329,7 +329,7 @@ static void _call_f_operator_eq__1787 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon &)((QIcon *)cls)->operator= (arg1)); } @@ -356,11 +356,11 @@ static void _call_f_paint_c8490 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::AlignCenter); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AlignCenter, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIcon *)cls)->paint (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref(), qt_gsi::QtToCppAdaptor(arg5).cref()); } @@ -394,14 +394,14 @@ static void _call_f_paint_c9442 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(Qt::AlignCenter); - const qt_gsi::Converter::target_type & arg7 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg8 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + QPainter *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AlignCenter, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg8 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIcon *)cls)->paint (arg1, arg2, arg3, arg4, arg5, arg6, qt_gsi::QtToCppAdaptor(arg7).cref(), qt_gsi::QtToCppAdaptor(arg8).cref()); } @@ -425,9 +425,9 @@ static void _call_f_pixmap_c4543 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write ((QPixmap)((QIcon *)cls)->pixmap (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -452,10 +452,10 @@ static void _call_f_pixmap_c4164 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write ((QPixmap)((QIcon *)cls)->pixmap (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -478,9 +478,9 @@ static void _call_f_pixmap_c3505 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write ((QPixmap)((QIcon *)cls)->pixmap (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -516,8 +516,8 @@ static void _call_f_fromTheme_3704 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QIcon &arg2 = args ? args.read (heap) : (const QIcon &)(QIcon()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QIcon(), heap); ret.write ((QIcon)QIcon::fromTheme (arg1, arg2)); } @@ -536,7 +536,7 @@ static void _call_f_hasThemeIcon_2025 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QIcon::hasThemeIcon (arg1)); } @@ -555,7 +555,7 @@ static void _call_f_setThemeName_2025 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QIcon::setThemeName (arg1); } @@ -575,7 +575,7 @@ static void _call_f_setThemeSearchPaths_2437 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QIcon::setThemeSearchPaths (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQIconEngine.cc b/src/gsiqt/qt4/QtGui/gsiDeclQIconEngine.cc index 55a8fa157..a33d68f45 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQIconEngine.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQIconEngine.cc @@ -58,9 +58,9 @@ static void _call_f_actualSize_4543 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSize)((QIconEngine *)cls)->actualSize (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -85,10 +85,10 @@ static void _call_f_addFile_6460 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine *)cls)->addFile (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -112,9 +112,9 @@ static void _call_f_addPixmap_4755 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine *)cls)->addPixmap (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -140,10 +140,10 @@ static void _call_f_paint_5848 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine *)cls)->paint (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -167,9 +167,9 @@ static void _call_f_pixmap_4543 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPixmap)((QIconEngine *)cls)->pixmap (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePlugin.cc b/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePlugin.cc index c73ba51b0..1de17d591 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePlugin.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePlugin.cc @@ -69,7 +69,7 @@ static void _call_f_create_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIconEngine *)((QIconEnginePlugin *)cls)->create (arg1)); } @@ -105,8 +105,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QIconEnginePlugin::tr (arg1, arg2)); } @@ -129,9 +129,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QIconEnginePlugin::tr (arg1, arg2, arg3)); } @@ -152,8 +152,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QIconEnginePlugin::trUtf8 (arg1, arg2)); } @@ -176,9 +176,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QIconEnginePlugin::trUtf8 (arg1, arg2, arg3)); } @@ -390,7 +390,7 @@ static void _call_ctor_QIconEnginePlugin_Adaptor_1302 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QIconEnginePlugin_Adaptor (arg1)); } @@ -479,7 +479,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QIconEnginePlugin_Adaptor *)cls)->emitter_QIconEnginePlugin_destroyed_1302 (arg1); } @@ -589,7 +589,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QIconEnginePlugin_Adaptor *)cls)->fp_QIconEnginePlugin_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePluginV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePluginV2.cc index 5e41bba16..39f6576fd 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePluginV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQIconEnginePluginV2.cc @@ -69,7 +69,7 @@ static void _call_f_create_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QIconEngineV2 *)((QIconEnginePluginV2 *)cls)->create (arg1)); } @@ -105,8 +105,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QIconEnginePluginV2::tr (arg1, arg2)); } @@ -129,9 +129,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QIconEnginePluginV2::tr (arg1, arg2, arg3)); } @@ -152,8 +152,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QIconEnginePluginV2::trUtf8 (arg1, arg2)); } @@ -176,9 +176,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QIconEnginePluginV2::trUtf8 (arg1, arg2, arg3)); } @@ -390,7 +390,7 @@ static void _call_ctor_QIconEnginePluginV2_Adaptor_1302 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QIconEnginePluginV2_Adaptor (arg1)); } @@ -479,7 +479,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QIconEnginePluginV2_Adaptor *)cls)->emitter_QIconEnginePluginV2_destroyed_1302 (arg1); } @@ -589,7 +589,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QIconEnginePluginV2_Adaptor *)cls)->fp_QIconEnginePluginV2_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQIconEngineV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQIconEngineV2.cc index 6d57c5123..e77d30590 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQIconEngineV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQIconEngineV2.cc @@ -57,8 +57,8 @@ static void _call_f_availableSizes_2846 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write > ((QList)((QIconEngineV2 *)cls)->availableSizes (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -107,7 +107,7 @@ static void _call_f_read_1697 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEngineV2 *)cls)->read (arg1)); } @@ -128,8 +128,8 @@ static void _call_f_virtual_hook_1715 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - void *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngineV2 *)cls)->virtual_hook (arg1, arg2); } @@ -149,7 +149,7 @@ static void _call_f_write_c1697 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEngineV2 *)cls)->write (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc b/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc index 757f256b5..1572ee93c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQImage.cc @@ -148,7 +148,7 @@ static void _call_f_color_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((unsigned int)((QImage *)cls)->color (arg1)); } @@ -199,8 +199,8 @@ static void _call_f_convertToFormat_c4993 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((QImage)((QImage *)cls)->convertToFormat (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -223,9 +223,9 @@ static void _call_f_convertToFormat_c7392 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVector &arg2 = args.read & > (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVector &arg2 = gsi::arg_reader & >() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((QImage)((QImage *)cls)->convertToFormat (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -244,7 +244,7 @@ static void _call_f_copy_c1792 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args ? args.read (heap) : (const QRect &)(QRect()); + const QRect &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRect(), heap); ret.write ((QImage)((QImage *)cls)->copy (arg1)); } @@ -269,10 +269,10 @@ static void _call_f_copy_c2744 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((QImage)((QImage *)cls)->copy (arg1, arg2, arg3, arg4)); } @@ -291,7 +291,7 @@ static void _call_f_createAlphaMask_c3368 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((QImage)((QImage *)cls)->createAlphaMask (arg1)); } @@ -310,7 +310,7 @@ static void _call_f_createHeuristicMask_c864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); ret.write ((QImage)((QImage *)cls)->createHeuristicMask (arg1)); } @@ -331,8 +331,8 @@ static void _call_f_createMaskFromColor_c3198 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::MaskInColor)); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::MaskInColor), heap); ret.write ((QImage)((QImage *)cls)->createMaskFromColor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -412,7 +412,7 @@ static void _call_f_fill_1772 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->fill (arg1); } @@ -477,7 +477,7 @@ static void _call_f_invertPixels_2137 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QImage::InvertRgb)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QImage::InvertRgb), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->invertPixels (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -544,8 +544,8 @@ static void _call_f_load_3070 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImage *)cls)->load (arg1, arg2)); } @@ -566,8 +566,8 @@ static void _call_f_load_3648 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QImage *)cls)->load (arg1, arg2)); } @@ -590,9 +590,9 @@ static void _call_f_loadFromData_5018 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const unsigned char *arg1 = args.read (heap); - int arg2 = args.read (heap); - const char *arg3 = args ? args.read (heap) : (const char *)(0); + const unsigned char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QImage *)cls)->loadFromData (arg1, arg2, arg3)); } @@ -613,8 +613,8 @@ static void _call_f_loadFromData_3932 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QImage *)cls)->loadFromData (arg1, arg2)); } @@ -635,8 +635,8 @@ static void _call_f_mirrored_c1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); ret.write ((QImage)((QImage *)cls)->mirrored (arg1, arg2)); } @@ -700,7 +700,7 @@ static void _call_f_operator_excl__eq__c1877 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImage *)cls)->operator!= (arg1)); } @@ -719,7 +719,7 @@ static void _call_f_operator_eq__1877 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write ((QImage &)((QImage *)cls)->operator= (arg1)); } @@ -738,7 +738,7 @@ static void _call_f_operator_eq__eq__c1877 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImage *)cls)->operator== (arg1)); } @@ -774,8 +774,8 @@ static void _call_f_pixel_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((unsigned int)((QImage *)cls)->pixel (arg1, arg2)); } @@ -794,7 +794,7 @@ static void _call_f_pixel_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((unsigned int)((QImage *)cls)->pixel (arg1)); } @@ -815,8 +815,8 @@ static void _call_f_pixelIndex_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QImage *)cls)->pixelIndex (arg1, arg2)); } @@ -835,7 +835,7 @@ static void _call_f_pixelIndex_c1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QImage *)cls)->pixelIndex (arg1)); } @@ -888,9 +888,9 @@ static void _call_f_save_c4307 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((bool)((QImage *)cls)->save (arg1, arg2, arg3)); } @@ -913,9 +913,9 @@ static void _call_f_save_c3729 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((bool)((QImage *)cls)->save (arg1, arg2, arg3)); } @@ -940,10 +940,10 @@ static void _call_f_scaled_c6100 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QImage)((QImage *)cls)->scaled (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -966,9 +966,9 @@ static void _call_f_scaled_c6479 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QImage)((QImage *)cls)->scaled (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -989,8 +989,8 @@ static void _call_f_scaledToHeight_c3292 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QImage)((QImage *)cls)->scaledToHeight (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1011,8 +1011,8 @@ static void _call_f_scaledToWidth_c3292 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QImage)((QImage *)cls)->scaledToWidth (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1031,7 +1031,7 @@ static void _call_f_scanLine_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const unsigned char *)((QImage *)cls)->scanLine (arg1)); } @@ -1065,7 +1065,7 @@ static void _call_f_setAlphaChannel_1877 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setAlphaChannel (arg1); } @@ -1087,8 +1087,8 @@ static void _call_f_setColor_2431 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setColor (arg1, arg2); } @@ -1108,7 +1108,7 @@ static void _call_f_setColorCount_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setColorCount (arg1); } @@ -1128,7 +1128,7 @@ static void _call_f_setColorTable_2325 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector arg1 = args.read > (heap); + const QVector arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setColorTable (arg1); } @@ -1148,7 +1148,7 @@ static void _call_f_setDotsPerMeterX_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setDotsPerMeterX (arg1); } @@ -1168,7 +1168,7 @@ static void _call_f_setDotsPerMeterY_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setDotsPerMeterY (arg1); } @@ -1188,7 +1188,7 @@ static void _call_f_setNumColors_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setNumColors (arg1); } @@ -1208,7 +1208,7 @@ static void _call_f_setOffset_1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setOffset (arg1); } @@ -1232,9 +1232,9 @@ static void _call_f_setPixel_3090 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - unsigned int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + unsigned int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setPixel (arg1, arg2, arg3); } @@ -1256,8 +1256,8 @@ static void _call_f_setPixel_3580 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setPixel (arg1, arg2); } @@ -1279,8 +1279,8 @@ static void _call_f_setText_3942 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setText (arg1, arg2); } @@ -1304,9 +1304,9 @@ static void _call_f_setText_5271 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setText (arg1, arg2, arg3); } @@ -1343,8 +1343,8 @@ static void _call_f_text_c3354 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QImage *)cls)->text (arg1, arg2)); } @@ -1363,7 +1363,7 @@ static void _call_f_text_c2981 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImageTextKeyLang &arg1 = args.read (heap); + const QImageTextKeyLang &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QImage *)cls)->text (arg1)); } @@ -1429,8 +1429,8 @@ static void _call_f_transformed_c4548 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QImage)((QImage *)cls)->transformed (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1451,8 +1451,8 @@ static void _call_f_transformed_c4875 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QImage)((QImage *)cls)->transformed (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1473,8 +1473,8 @@ static void _call_f_valid_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImage *)cls)->valid (arg1, arg2)); } @@ -1493,7 +1493,7 @@ static void _call_f_valid_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImage *)cls)->valid (arg1)); } @@ -1531,9 +1531,9 @@ static void _call_f_fromData_5018 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const unsigned char *arg1 = args.read (heap); - int arg2 = args.read (heap); - const char *arg3 = args ? args.read (heap) : (const char *)(0); + const unsigned char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QImage)QImage::fromData (arg1, arg2, arg3)); } @@ -1554,8 +1554,8 @@ static void _call_f_fromData_3932 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QImage)QImage::fromData (arg1, arg2)); } @@ -1578,9 +1578,9 @@ static void _call_f_trueMatrix_3341 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QMatrix)QImage::trueMatrix (arg1, arg2, arg3)); } @@ -1603,9 +1603,9 @@ static void _call_f_trueMatrix_3668 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QTransform)QImage::trueMatrix (arg1, arg2, arg3)); } @@ -1829,8 +1829,8 @@ static void _call_ctor_QImage_Adaptor_3430 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QImage_Adaptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1852,9 +1852,9 @@ static void _call_ctor_QImage_Adaptor_3051 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QImage_Adaptor (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -1878,10 +1878,10 @@ static void _call_ctor_QImage_Adaptor_5679 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const unsigned char *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + const unsigned char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QImage_Adaptor (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -1907,11 +1907,11 @@ static void _call_ctor_QImage_Adaptor_6338 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const unsigned char *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args.read::target_type & > (heap); + const unsigned char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QImage_Adaptor (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -1931,8 +1931,8 @@ static void _call_ctor_QImage_Adaptor_3648 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QImage_Adaptor (arg1, arg2)); } @@ -1950,7 +1950,7 @@ static void _call_ctor_QImage_Adaptor_1877 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write (new QImage_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQImageIOHandler.cc b/src/gsiqt/qt4/QtGui/gsiDeclQImageIOHandler.cc index 1d69a6a2e..22c009d90 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQImageIOHandler.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQImageIOHandler.cc @@ -143,7 +143,7 @@ static void _call_f_jumpToImage_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOHandler *)cls)->jumpToImage (arg1)); } @@ -222,7 +222,7 @@ static void _call_f_option_c3086 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QImageIOHandler *)cls)->option (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -241,7 +241,7 @@ static void _call_f_read_1186 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QImage *arg1 = args.read (heap); + QImage *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOHandler *)cls)->read (arg1)); } @@ -260,7 +260,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOHandler *)cls)->setDevice (arg1); } @@ -280,7 +280,7 @@ static void _call_f_setFormat_2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOHandler *)cls)->setFormat (arg1); } @@ -300,7 +300,7 @@ static void _call_f_setFormat_c2309 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOHandler *)cls)->setFormat (arg1); } @@ -322,8 +322,8 @@ static void _call_f_setOption_5097 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOHandler *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -343,7 +343,7 @@ static void _call_f_supportsOption_c3086 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QImageIOHandler *)cls)->supportsOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -362,7 +362,7 @@ static void _call_f_write_1877 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOHandler *)cls)->write (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQImageIOPlugin.cc b/src/gsiqt/qt4/QtGui/gsiDeclQImageIOPlugin.cc index 950a568ca..57c0c2512 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQImageIOPlugin.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQImageIOPlugin.cc @@ -72,8 +72,8 @@ static void _call_f_capabilities_c3648 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QImageIOPlugin *)cls)->capabilities (arg1, arg2)); } @@ -94,8 +94,8 @@ static void _call_f_create_c3648 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write ((QImageIOHandler *)((QImageIOPlugin *)cls)->create (arg1, arg2)); } @@ -131,8 +131,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QImageIOPlugin::tr (arg1, arg2)); } @@ -155,9 +155,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QImageIOPlugin::tr (arg1, arg2, arg3)); } @@ -178,8 +178,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QImageIOPlugin::trUtf8 (arg1, arg2)); } @@ -202,9 +202,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QImageIOPlugin::trUtf8 (arg1, arg2, arg3)); } @@ -436,7 +436,7 @@ static void _call_ctor_QImageIOPlugin_Adaptor_1302 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QImageIOPlugin_Adaptor (arg1)); } @@ -554,7 +554,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QImageIOPlugin_Adaptor *)cls)->emitter_QImageIOPlugin_destroyed_1302 (arg1); } @@ -664,7 +664,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QImageIOPlugin_Adaptor *)cls)->fp_QImageIOPlugin_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQImageReader.cc b/src/gsiqt/qt4/QtGui/gsiDeclQImageReader.cc index 1a6bffeee..8c2e5082d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQImageReader.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQImageReader.cc @@ -72,8 +72,8 @@ static void _call_ctor_QImageReader_3648 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QImageReader (arg1, arg2)); } @@ -94,8 +94,8 @@ static void _call_ctor_QImageReader_4226 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QImageReader (arg1, arg2)); } @@ -324,7 +324,7 @@ static void _call_f_jumpToImage_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageReader *)cls)->jumpToImage (arg1)); } @@ -418,7 +418,7 @@ static void _call_f_read_1186 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QImage *arg1 = args.read (heap); + QImage *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageReader *)cls)->read (arg1)); } @@ -467,7 +467,7 @@ static void _call_f_setAutoDetectImageFormat_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setAutoDetectImageFormat (arg1); } @@ -487,7 +487,7 @@ static void _call_f_setBackgroundColor_1905 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setBackgroundColor (arg1); } @@ -507,7 +507,7 @@ static void _call_f_setClipRect_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setClipRect (arg1); } @@ -527,7 +527,7 @@ static void _call_f_setDecideFormatFromContent_864 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setDecideFormatFromContent (arg1); } @@ -547,7 +547,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setDevice (arg1); } @@ -567,7 +567,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setFileName (arg1); } @@ -587,7 +587,7 @@ static void _call_f_setFormat_2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setFormat (arg1); } @@ -607,7 +607,7 @@ static void _call_f_setQuality_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setQuality (arg1); } @@ -627,7 +627,7 @@ static void _call_f_setScaledClipRect_1792 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setScaledClipRect (arg1); } @@ -647,7 +647,7 @@ static void _call_f_setScaledSize_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setScaledSize (arg1); } @@ -697,7 +697,7 @@ static void _call_f_supportsOption_c3086 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QImageReader *)cls)->supportsOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -716,7 +716,7 @@ static void _call_f_text_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QImageReader *)cls)->text (arg1)); } @@ -750,7 +750,7 @@ static void _call_f_imageFormat_2025 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)QImageReader::imageFormat (arg1)); } @@ -769,7 +769,7 @@ static void _call_f_imageFormat_1447 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)QImageReader::imageFormat (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQImageTextKeyLang.cc b/src/gsiqt/qt4/QtGui/gsiDeclQImageTextKeyLang.cc index e6f69df08..4e27b6565 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQImageTextKeyLang.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQImageTextKeyLang.cc @@ -52,8 +52,8 @@ static void _call_ctor_QImageTextKeyLang_3354 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); ret.write (new QImageTextKeyLang (arg1, arg2)); } @@ -87,7 +87,7 @@ static void _call_f_operator_excl__eq__c2981 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImageTextKeyLang &arg1 = args.read (heap); + const QImageTextKeyLang &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageTextKeyLang *)cls)->operator!= (arg1)); } @@ -106,7 +106,7 @@ static void _call_f_operator_lt__c2981 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImageTextKeyLang &arg1 = args.read (heap); + const QImageTextKeyLang &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageTextKeyLang *)cls)->operator< (arg1)); } @@ -125,7 +125,7 @@ static void _call_f_operator_eq__eq__c2981 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImageTextKeyLang &arg1 = args.read (heap); + const QImageTextKeyLang &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageTextKeyLang *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQImageWriter.cc b/src/gsiqt/qt4/QtGui/gsiDeclQImageWriter.cc index 8eb1f4346..74a2fb318 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQImageWriter.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQImageWriter.cc @@ -69,8 +69,8 @@ static void _call_ctor_QImageWriter_3648 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write (new QImageWriter (arg1, arg2)); } @@ -91,8 +91,8 @@ static void _call_ctor_QImageWriter_4226 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QImageWriter (arg1, arg2)); } @@ -261,7 +261,7 @@ static void _call_f_setCompression_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setCompression (arg1); } @@ -281,7 +281,7 @@ static void _call_f_setDescription_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setDescription (arg1); } @@ -301,7 +301,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setDevice (arg1); } @@ -321,7 +321,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setFileName (arg1); } @@ -341,7 +341,7 @@ static void _call_f_setFormat_2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setFormat (arg1); } @@ -361,7 +361,7 @@ static void _call_f_setGamma_970 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setGamma (arg1); } @@ -381,7 +381,7 @@ static void _call_f_setQuality_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setQuality (arg1); } @@ -403,8 +403,8 @@ static void _call_f_setText_3942 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setText (arg1, arg2); } @@ -424,7 +424,7 @@ static void _call_f_supportsOption_c3086 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QImageWriter *)cls)->supportsOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -443,7 +443,7 @@ static void _call_f_write_1877 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageWriter *)cls)->write (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQInputContext.cc b/src/gsiqt/qt4/QtGui/gsiDeclQInputContext.cc index 4e07db860..2d90dc4a5 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQInputContext.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQInputContext.cc @@ -88,7 +88,7 @@ static void _call_f_filterEvent_1912 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QEvent *arg1 = args.read (heap); + const QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputContext *)cls)->filterEvent (arg1)); } @@ -184,8 +184,8 @@ static void _call_f_mouseHandler_2397 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QMouseEvent *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QMouseEvent *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputContext *)cls)->mouseHandler (arg1, arg2); } @@ -221,7 +221,7 @@ static void _call_f_sendEvent_3045 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QInputMethodEvent &arg1 = args.read (heap); + const QInputMethodEvent &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputContext *)cls)->sendEvent (arg1); } @@ -241,7 +241,7 @@ static void _call_f_setFocusWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputContext *)cls)->setFocusWidget (arg1); } @@ -261,7 +261,7 @@ static void _call_f_standardFormat_c3336 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QTextFormat)((QInputContext *)cls)->standardFormat (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -296,7 +296,7 @@ static void _call_f_widgetDestroyed_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputContext *)cls)->widgetDestroyed (arg1); } @@ -318,8 +318,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QInputContext::tr (arg1, arg2)); } @@ -342,9 +342,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QInputContext::tr (arg1, arg2, arg3)); } @@ -365,8 +365,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QInputContext::trUtf8 (arg1, arg2)); } @@ -389,9 +389,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QInputContext::trUtf8 (arg1, arg2, arg3)); } @@ -758,7 +758,7 @@ static void _call_ctor_QInputContext_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QInputContext_Adaptor (arg1)); } @@ -843,7 +843,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QInputContext_Adaptor *)cls)->emitter_QInputContext_destroyed_1302 (arg1); } @@ -1060,7 +1060,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QInputContext_Adaptor *)cls)->fp_QInputContext_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQInputContextFactory.cc b/src/gsiqt/qt4/QtGui/gsiDeclQInputContextFactory.cc index 6f966e6c8..95085f01c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQInputContextFactory.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQInputContextFactory.cc @@ -69,8 +69,8 @@ static void _call_f_create_3219 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); ret.write ((QInputContext *)QInputContextFactory::create (arg1, arg2)); } @@ -89,7 +89,7 @@ static void _call_f_description_2025 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QInputContextFactory::description (arg1)); } @@ -108,7 +108,7 @@ static void _call_f_displayName_2025 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QInputContextFactory::displayName (arg1)); } @@ -142,7 +142,7 @@ static void _call_f_languages_2025 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)QInputContextFactory::languages (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQInputContextPlugin.cc b/src/gsiqt/qt4/QtGui/gsiDeclQInputContextPlugin.cc index 2cc96132d..3b9436d6f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQInputContextPlugin.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQInputContextPlugin.cc @@ -69,7 +69,7 @@ static void _call_f_create_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QInputContext *)((QInputContextPlugin *)cls)->create (arg1)); } @@ -88,7 +88,7 @@ static void _call_f_description_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QInputContextPlugin *)cls)->description (arg1)); } @@ -107,7 +107,7 @@ static void _call_f_displayName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QInputContextPlugin *)cls)->displayName (arg1)); } @@ -141,7 +141,7 @@ static void _call_f_languages_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QInputContextPlugin *)cls)->languages (arg1)); } @@ -162,8 +162,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QInputContextPlugin::tr (arg1, arg2)); } @@ -186,9 +186,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QInputContextPlugin::tr (arg1, arg2, arg3)); } @@ -209,8 +209,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QInputContextPlugin::trUtf8 (arg1, arg2)); } @@ -233,9 +233,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QInputContextPlugin::trUtf8 (arg1, arg2, arg3)); } @@ -501,7 +501,7 @@ static void _call_ctor_QInputContextPlugin_Adaptor_1302 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QInputContextPlugin_Adaptor (arg1)); } @@ -613,7 +613,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QInputContextPlugin_Adaptor *)cls)->emitter_QInputContextPlugin_destroyed_1302 (arg1); } @@ -769,7 +769,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QInputContextPlugin_Adaptor *)cls)->fp_QInputContextPlugin_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQInputDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQInputDialog.cc index fe9ab3454..a39fa7872 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQInputDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQInputDialog.cc @@ -141,7 +141,7 @@ static void _call_f_done_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->done (arg1); } @@ -374,8 +374,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->open (arg1, arg2); } @@ -410,7 +410,7 @@ static void _call_f_setCancelButtonText_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setCancelButtonText (arg1); } @@ -430,7 +430,7 @@ static void _call_f_setComboBoxEditable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setComboBoxEditable (arg1); } @@ -450,7 +450,7 @@ static void _call_f_setComboBoxItems_2437 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setComboBoxItems (arg1); } @@ -470,7 +470,7 @@ static void _call_f_setDoubleDecimals_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setDoubleDecimals (arg1); } @@ -490,7 +490,7 @@ static void _call_f_setDoubleMaximum_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setDoubleMaximum (arg1); } @@ -510,7 +510,7 @@ static void _call_f_setDoubleMinimum_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setDoubleMinimum (arg1); } @@ -532,8 +532,8 @@ static void _call_f_setDoubleRange_2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setDoubleRange (arg1, arg2); } @@ -553,7 +553,7 @@ static void _call_f_setDoubleValue_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setDoubleValue (arg1); } @@ -573,7 +573,7 @@ static void _call_f_setInputMode_2670 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setInputMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -593,7 +593,7 @@ static void _call_f_setIntMaximum_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setIntMaximum (arg1); } @@ -613,7 +613,7 @@ static void _call_f_setIntMinimum_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setIntMinimum (arg1); } @@ -635,8 +635,8 @@ static void _call_f_setIntRange_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setIntRange (arg1, arg2); } @@ -656,7 +656,7 @@ static void _call_f_setIntStep_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setIntStep (arg1); } @@ -676,7 +676,7 @@ static void _call_f_setIntValue_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setIntValue (arg1); } @@ -696,7 +696,7 @@ static void _call_f_setLabelText_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setLabelText (arg1); } @@ -716,7 +716,7 @@ static void _call_f_setOkButtonText_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setOkButtonText (arg1); } @@ -738,8 +738,8 @@ static void _call_f_setOption_4262 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -759,7 +759,7 @@ static void _call_f_setOptions_4202 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setOptions (arg1); } @@ -779,7 +779,7 @@ static void _call_f_setTextEchoMode_2187 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setTextEchoMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -799,7 +799,7 @@ static void _call_f_setTextValue_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setTextValue (arg1); } @@ -819,7 +819,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setVisible (arg1); } @@ -854,7 +854,7 @@ static void _call_f_testOption_c3506 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QInputDialog *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -919,15 +919,15 @@ static void _call_f_getDouble_12026 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - double arg4 = args ? args.read (heap) : (double)(0); - double arg5 = args ? args.read (heap) : (double)(-2147483647); - double arg6 = args ? args.read (heap) : (double)(2147483647); - int arg7 = args ? args.read (heap) : (int)(1); - bool *arg8 = args ? args.read (heap) : (bool *)(0); - QFlags arg9 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + double arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-2147483647, heap); + double arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (2147483647, heap); + int arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + bool *arg8 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg9 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((double)QInputDialog::getDouble (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)); } @@ -962,15 +962,15 @@ static void _call_f_getInt_11114 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); - int arg5 = args ? args.read (heap) : (int)(-2147483647); - int arg6 = args ? args.read (heap) : (int)(2147483647); - int arg7 = args ? args.read (heap) : (int)(1); - bool *arg8 = args ? args.read (heap) : (bool *)(0); - QFlags arg9 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-2147483647, heap); + int arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (2147483647, heap); + int arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + bool *arg8 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg9 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((int)QInputDialog::getInt (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)); } @@ -1005,15 +1005,15 @@ static void _call_f_getInteger_11114 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); - int arg5 = args ? args.read (heap) : (int)(-2147483647); - int arg6 = args ? args.read (heap) : (int)(2147483647); - int arg7 = args ? args.read (heap) : (int)(1); - bool *arg8 = args ? args.read (heap) : (bool *)(0); - QFlags arg9 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-2147483647, heap); + int arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (2147483647, heap); + int arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + bool *arg8 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg9 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((int)QInputDialog::getInteger (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)); } @@ -1046,14 +1046,14 @@ static void _call_f_getItem_12222 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QStringList &arg4 = args.read (heap); - int arg5 = args ? args.read (heap) : (int)(0); - bool arg6 = args ? args.read (heap) : (bool)(true); - bool *arg7 = args ? args.read (heap) : (bool *)(0); - QFlags arg8 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QStringList &arg4 = gsi::arg_reader() (args, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + bool arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool *arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg8 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QString)QInputDialog::getItem (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)); } @@ -1084,13 +1084,13 @@ static void _call_f_getText_12474 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLineEdit::Normal)); - const QString &arg5 = args ? args.read (heap) : (const QString &)(QString()); - bool *arg6 = args ? args.read (heap) : (bool *)(0); - QFlags arg7 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLineEdit::Normal), heap); + const QString &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + bool *arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg7 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QString)QInputDialog::getText (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref(), arg5, arg6, arg7)); } @@ -1111,8 +1111,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QInputDialog::tr (arg1, arg2)); } @@ -1135,9 +1135,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QInputDialog::tr (arg1, arg2, arg3)); } @@ -1158,8 +1158,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QInputDialog::trUtf8 (arg1, arg2)); } @@ -1182,9 +1182,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QInputDialog::trUtf8 (arg1, arg2, arg3)); } @@ -2211,8 +2211,8 @@ static void _call_ctor_QInputDialog_Adaptor_3702 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QInputDialog_Adaptor (arg1, arg2)); } @@ -2288,7 +2288,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->fp_QInputDialog_adjustPosition_1315 (arg1); } @@ -2407,9 +2407,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->fp_QInputDialog_create_2208 (arg1, arg2, arg3); } @@ -2428,7 +2428,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_customContextMenuRequested_1916 (arg1); } @@ -2472,8 +2472,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->fp_QInputDialog_destroy_1620 (arg1, arg2); } @@ -2492,7 +2492,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_destroyed_1302 (arg1); } @@ -2558,7 +2558,7 @@ static void _call_emitter_doubleValueChanged_1071 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_doubleValueChanged_1071 (arg1); } @@ -2576,7 +2576,7 @@ static void _call_emitter_doubleValueSelected_1071 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_doubleValueSelected_1071 (arg1); } @@ -2787,7 +2787,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_finished_767 (arg1); } @@ -3022,7 +3022,7 @@ static void _call_emitter_intValueChanged_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_intValueChanged_767 (arg1); } @@ -3040,7 +3040,7 @@ static void _call_emitter_intValueSelected_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_intValueSelected_767 (arg1); } @@ -3379,7 +3379,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QInputDialog_Adaptor *)cls)->fp_QInputDialog_receivers_c1731 (arg1)); } @@ -3599,7 +3599,7 @@ static void _call_emitter_textValueChanged_2025 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_textValueChanged_2025 (arg1); } @@ -3617,7 +3617,7 @@ static void _call_emitter_textValueSelected_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_textValueSelected_2025 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQInputEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQInputEvent.cc index 16a2e90ee..57da66a78 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQInputEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQInputEvent.cc @@ -65,7 +65,7 @@ static void _call_f_setModifiers_3077 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputEvent *)cls)->setModifiers (arg1); } @@ -130,8 +130,8 @@ static void _call_ctor_QInputEvent_Adaptor_4534 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::NoModifier); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::NoModifier, heap); ret.write (new QInputEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQInputMethodEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQInputMethodEvent.cc index 35f94eb39..293d86da1 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQInputMethodEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQInputMethodEvent.cc @@ -67,8 +67,8 @@ static void _call_ctor_QInputMethodEvent_6641 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); ret.write (new QInputMethodEvent (arg1, arg2)); } @@ -87,7 +87,7 @@ static void _call_ctor_QInputMethodEvent_3045 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QInputMethodEvent &arg1 = args.read (heap); + const QInputMethodEvent &arg1 = gsi::arg_reader() (args, heap); ret.write (new QInputMethodEvent (arg1)); } @@ -185,9 +185,9 @@ static void _call_f_setCommitString_3343 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - int arg3 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputMethodEvent *)cls)->setCommitString (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQInputMethodEvent_Attribute.cc b/src/gsiqt/qt4/QtGui/gsiDeclQInputMethodEvent_Attribute.cc index 32609e53d..8cb6a6bfe 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQInputMethodEvent_Attribute.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQInputMethodEvent_Attribute.cc @@ -56,10 +56,10 @@ static void _call_ctor_QInputMethodEvent_Attribute_6102 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - QVariant arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + QVariant arg4 = gsi::arg_reader() (args, heap); ret.write (new QInputMethodEvent::Attribute (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQIntValidator.cc b/src/gsiqt/qt4/QtGui/gsiDeclQIntValidator.cc index cfb9ee8ec..8b18ff9af 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQIntValidator.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQIntValidator.cc @@ -84,7 +84,7 @@ static void _call_f_setBottom_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator *)cls)->setBottom (arg1); } @@ -106,8 +106,8 @@ static void _call_f_setRange_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator *)cls)->setRange (arg1, arg2); } @@ -127,7 +127,7 @@ static void _call_f_setTop_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator *)cls)->setTop (arg1); } @@ -164,8 +164,8 @@ static void _call_f_validate_c2171 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QIntValidator *)cls)->validate (arg1, arg2))); } @@ -186,8 +186,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QIntValidator::tr (arg1, arg2)); } @@ -210,9 +210,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QIntValidator::tr (arg1, arg2, arg3)); } @@ -233,8 +233,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QIntValidator::trUtf8 (arg1, arg2)); } @@ -257,9 +257,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QIntValidator::trUtf8 (arg1, arg2, arg3)); } @@ -496,7 +496,7 @@ static void _call_ctor_QIntValidator_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QIntValidator_Adaptor (arg1)); } @@ -518,9 +518,9 @@ static void _call_ctor_QIntValidator_Adaptor_2620 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QObject *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QObject *arg3 = gsi::arg_reader() (args, heap); ret.write (new QIntValidator_Adaptor (arg1, arg2, arg3)); } @@ -586,7 +586,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QIntValidator_Adaptor *)cls)->emitter_QIntValidator_destroyed_1302 (arg1); } @@ -701,7 +701,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QIntValidator_Adaptor *)cls)->fp_QIntValidator_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQItemDelegate.cc b/src/gsiqt/qt4/QtGui/gsiDeclQItemDelegate.cc index 95d3cd45e..bc6816cff 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQItemDelegate.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQItemDelegate.cc @@ -86,9 +86,9 @@ static void _call_f_createEditor_c6860 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QItemDelegate *)cls)->createEditor (arg1, arg2, arg3)); } @@ -141,9 +141,9 @@ static void _call_f_paint_c6971 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate *)cls)->paint (arg1, arg2, arg3); } @@ -163,7 +163,7 @@ static void _call_f_setClipping_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate *)cls)->setClipping (arg1); } @@ -185,8 +185,8 @@ static void _call_f_setEditorData_c3602 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate *)cls)->setEditorData (arg1, arg2); } @@ -206,7 +206,7 @@ static void _call_f_setItemEditorFactory_2445 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemEditorFactory *arg1 = args.read (heap); + QItemEditorFactory *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate *)cls)->setItemEditorFactory (arg1); } @@ -230,9 +230,9 @@ static void _call_f_setModelData_c5913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate *)cls)->setModelData (arg1, arg2, arg3); } @@ -254,8 +254,8 @@ static void _call_f_sizeHint_c5653 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QItemDelegate *)cls)->sizeHint (arg1, arg2)); } @@ -278,9 +278,9 @@ static void _call_f_updateEditorGeometry_c6860 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate *)cls)->updateEditorGeometry (arg1, arg2, arg3); } @@ -302,8 +302,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QItemDelegate::tr (arg1, arg2)); } @@ -326,9 +326,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QItemDelegate::tr (arg1, arg2, arg3)); } @@ -349,8 +349,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QItemDelegate::trUtf8 (arg1, arg2)); } @@ -373,9 +373,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QItemDelegate::trUtf8 (arg1, arg2, arg3)); } @@ -799,7 +799,7 @@ static void _call_ctor_QItemDelegate_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QItemDelegate_Adaptor (arg1)); } @@ -821,9 +821,9 @@ static void _call_fp_check_c7061 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_check_c7061 (arg1, arg2, arg3)); } @@ -867,8 +867,8 @@ static void _call_emitter_closeEditor_4926 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemDelegate::NoHint)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemDelegate::NoHint), heap); ((QItemDelegate_Adaptor *)cls)->emitter_QItemDelegate_closeEditor_4926 (arg1, arg2); } @@ -886,7 +886,7 @@ static void _call_emitter_commitData_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ((QItemDelegate_Adaptor *)cls)->emitter_QItemDelegate_commitData_1315 (arg1); } @@ -959,8 +959,8 @@ static void _call_fp_decoration_c5377 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_decoration_c5377 (arg1, arg2)); } @@ -978,7 +978,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QItemDelegate_Adaptor *)cls)->emitter_QItemDelegate_destroyed_1302 (arg1); } @@ -1028,11 +1028,11 @@ static void _call_fp_doLayout_c7101 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - QRect *arg2 = args.read (heap); - QRect *arg3 = args.read (heap); - QRect *arg4 = args.read (heap); - bool arg5 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + QRect *arg2 = gsi::arg_reader() (args, heap); + QRect *arg3 = gsi::arg_reader() (args, heap); + QRect *arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_doLayout_c7101 (arg1, arg2, arg3, arg4, arg5); } @@ -1055,9 +1055,9 @@ static void _call_fp_drawBackground_c6971 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_drawBackground_c6971 (arg1, arg2, arg3); } @@ -1316,7 +1316,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_receivers_c1731 (arg1)); } @@ -1338,9 +1338,9 @@ static void _call_fp_rect_c6312 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_rect_c6312 (arg1, arg2, arg3)); } @@ -1362,9 +1362,9 @@ static void _call_fp_selected_c4778 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - const QPalette &arg2 = args.read (heap); - bool arg3 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + const QPalette &arg2 = gsi::arg_reader() (args, heap); + bool arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap *)((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_selected_c4778 (arg1, arg2, arg3)); } @@ -1455,8 +1455,8 @@ static void _call_fp_setOptions_c5653 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); ret.write ((QStyleOptionViewItem)((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_setOptions_c5653 (arg1, arg2)); } @@ -1500,7 +1500,7 @@ static void _call_emitter_sizeHintChanged_2395 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QItemDelegate_Adaptor *)cls)->emitter_QItemDelegate_sizeHintChanged_2395 (arg1); } @@ -1524,10 +1524,10 @@ static void _call_fp_textRectangle_c6720 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const QFont &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QFont &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_textRectangle_c6720 (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorCreatorBase.cc b/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorCreatorBase.cc index ecf646471..8bce48232 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorCreatorBase.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorCreatorBase.cc @@ -51,7 +51,7 @@ static void _call_f_createWidget_c1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QItemEditorCreatorBase *)cls)->createWidget (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorFactory.cc b/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorFactory.cc index c750cf536..eecdd3bfb 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorFactory.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQItemEditorFactory.cc @@ -54,8 +54,8 @@ static void _call_f_createEditor_c2983 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QItemEditorFactory *)cls)->createEditor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -76,8 +76,8 @@ static void _call_f_registerEditor_4484 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QItemEditorCreatorBase *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QItemEditorCreatorBase *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemEditorFactory *)cls)->registerEditor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -97,7 +97,7 @@ static void _call_f_valuePropertyName_c1776 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QByteArray)((QItemEditorFactory *)cls)->valuePropertyName (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -131,7 +131,7 @@ static void _call_f_setDefaultFactory_2445 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemEditorFactory *arg1 = args.read (heap); + QItemEditorFactory *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QItemEditorFactory::setDefaultFactory (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQItemSelection.cc b/src/gsiqt/qt4/QtGui/gsiDeclQItemSelection.cc index 6b9818b32..719c0289d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQItemSelection.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQItemSelection.cc @@ -69,8 +69,8 @@ static void _call_ctor_QItemSelection_4682 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write (new QItemSelection (arg1, arg2)); } @@ -89,7 +89,7 @@ static void _call_f_contains_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelection *)cls)->contains (arg1)); } @@ -125,8 +125,8 @@ static void _call_f_merge_7090 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelection *)cls)->merge (arg1, arg2); } @@ -148,8 +148,8 @@ static void _call_f_select_4682 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelection *)cls)->select (arg1, arg2); } @@ -173,9 +173,9 @@ static void _call_f_split_8260 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelectionRange &arg1 = args.read (heap); - const QItemSelectionRange &arg2 = args.read (heap); - QItemSelection *arg3 = args.read (heap); + const QItemSelectionRange &arg1 = gsi::arg_reader() (args, heap); + const QItemSelectionRange &arg2 = gsi::arg_reader() (args, heap); + QItemSelection *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QItemSelection::split (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQItemSelectionModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQItemSelectionModel.cc index f4b75c5d7..82bf1fc40 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQItemSelectionModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQItemSelectionModel.cc @@ -105,8 +105,8 @@ static void _call_f_columnIntersectsSelection_c3054 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel *)cls)->columnIntersectsSelection (arg1, arg2)); } @@ -157,8 +157,8 @@ static void _call_f_isColumnSelected_c3054 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel *)cls)->isColumnSelected (arg1, arg2)); } @@ -179,8 +179,8 @@ static void _call_f_isRowSelected_c3054 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel *)cls)->isRowSelected (arg1, arg2)); } @@ -199,7 +199,7 @@ static void _call_f_isSelected_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel *)cls)->isSelected (arg1)); } @@ -251,8 +251,8 @@ static void _call_f_rowIntersectsSelection_c3054 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel *)cls)->rowIntersectsSelection (arg1, arg2)); } @@ -273,8 +273,8 @@ static void _call_f_select_6758 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel *)cls)->select (arg1, arg2); } @@ -296,8 +296,8 @@ static void _call_f_select_7090 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel *)cls)->select (arg1, arg2); } @@ -317,7 +317,7 @@ static void _call_f_selectedColumns_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QItemSelectionModel *)cls)->selectedColumns (arg1)); } @@ -351,7 +351,7 @@ static void _call_f_selectedRows_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QItemSelectionModel *)cls)->selectedRows (arg1)); } @@ -387,8 +387,8 @@ static void _call_f_setCurrentIndex_6758 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel *)cls)->setCurrentIndex (arg1, arg2); } @@ -410,8 +410,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QItemSelectionModel::tr (arg1, arg2)); } @@ -434,9 +434,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QItemSelectionModel::tr (arg1, arg2, arg3)); } @@ -457,8 +457,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QItemSelectionModel::trUtf8 (arg1, arg2)); } @@ -481,9 +481,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QItemSelectionModel::trUtf8 (arg1, arg2, arg3)); } @@ -775,7 +775,7 @@ static void _call_ctor_QItemSelectionModel_Adaptor_2419 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); ret.write (new QItemSelectionModel_Adaptor (arg1)); } @@ -795,8 +795,8 @@ static void _call_ctor_QItemSelectionModel_Adaptor_3613 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); ret.write (new QItemSelectionModel_Adaptor (arg1, arg2)); } @@ -860,8 +860,8 @@ static void _call_emitter_currentChanged_4682 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QItemSelectionModel_Adaptor *)cls)->emitter_QItemSelectionModel_currentChanged_4682 (arg1, arg2); } @@ -881,8 +881,8 @@ static void _call_emitter_currentColumnChanged_4682 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QItemSelectionModel_Adaptor *)cls)->emitter_QItemSelectionModel_currentColumnChanged_4682 (arg1, arg2); } @@ -902,8 +902,8 @@ static void _call_emitter_currentRowChanged_4682 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QItemSelectionModel_Adaptor *)cls)->emitter_QItemSelectionModel_currentRowChanged_4682 (arg1, arg2); } @@ -945,7 +945,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QItemSelectionModel_Adaptor *)cls)->emitter_QItemSelectionModel_destroyed_1302 (arg1); } @@ -989,8 +989,8 @@ static void _call_fp_emitSelectionChanged_5346 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->fp_QItemSelectionModel_emitSelectionChanged_5346 (arg1, arg2); } @@ -1058,7 +1058,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QItemSelectionModel_Adaptor *)cls)->fp_QItemSelectionModel_receivers_c1731 (arg1)); } @@ -1152,8 +1152,8 @@ static void _call_emitter_selectionChanged_5346 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); ((QItemSelectionModel_Adaptor *)cls)->emitter_QItemSelectionModel_selectionChanged_5346 (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQItemSelectionRange.cc b/src/gsiqt/qt4/QtGui/gsiDeclQItemSelectionRange.cc index 4e30f5327..305e4ead2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQItemSelectionRange.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQItemSelectionRange.cc @@ -67,7 +67,7 @@ static void _call_ctor_QItemSelectionRange_3220 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelectionRange &arg1 = args.read (heap); + const QItemSelectionRange &arg1 = gsi::arg_reader() (args, heap); ret.write (new QItemSelectionRange (arg1)); } @@ -88,8 +88,8 @@ static void _call_ctor_QItemSelectionRange_4682 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write (new QItemSelectionRange (arg1, arg2)); } @@ -108,7 +108,7 @@ static void _call_ctor_QItemSelectionRange_2395 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write (new QItemSelectionRange (arg1)); } @@ -157,7 +157,7 @@ static void _call_f_contains_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionRange *)cls)->contains (arg1)); } @@ -180,9 +180,9 @@ static void _call_f_contains_c3713 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionRange *)cls)->contains (arg1, arg2, arg3)); } @@ -231,7 +231,7 @@ static void _call_f_intersect_c3220 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelectionRange &arg1 = args.read (heap); + const QItemSelectionRange &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelectionRange)((QItemSelectionRange *)cls)->intersect (arg1)); } @@ -250,7 +250,7 @@ static void _call_f_intersected_c3220 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelectionRange &arg1 = args.read (heap); + const QItemSelectionRange &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelectionRange)((QItemSelectionRange *)cls)->intersected (arg1)); } @@ -269,7 +269,7 @@ static void _call_f_intersects_c3220 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelectionRange &arg1 = args.read (heap); + const QItemSelectionRange &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionRange *)cls)->intersects (arg1)); } @@ -333,7 +333,7 @@ static void _call_f_operator_excl__eq__c3220 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelectionRange &arg1 = args.read (heap); + const QItemSelectionRange &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionRange *)cls)->operator!= (arg1)); } @@ -352,7 +352,7 @@ static void _call_f_operator_eq__eq__c3220 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelectionRange &arg1 = args.read (heap); + const QItemSelectionRange &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionRange *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQKeyEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQKeyEvent.cc index a64c1c94c..a95cda854 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQKeyEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQKeyEvent.cc @@ -110,7 +110,7 @@ static void _call_f_matches_c2869 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QKeyEvent *)cls)->matches (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -220,15 +220,15 @@ static void _call_f_createExtendedKeyEvent_13204 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); - quint32 arg4 = args.read (heap); - quint32 arg5 = args.read (heap); - quint32 arg6 = args.read (heap); - const QString &arg7 = args ? args.read (heap) : (const QString &)(QString()); - bool arg8 = args ? args.read (heap) : (bool)(false); - unsigned short int arg9 = args ? args.read (heap) : (unsigned short int)(1); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); + quint32 arg4 = gsi::arg_reader() (args, heap); + quint32 arg5 = gsi::arg_reader() (args, heap); + quint32 arg6 = gsi::arg_reader() (args, heap); + const QString &arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + bool arg8 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); + unsigned short int arg9 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write ((QKeyEvent *)QKeyEvent::createExtendedKeyEvent (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)); } @@ -321,12 +321,12 @@ static void _call_ctor_QKeyEvent_Adaptor_10234 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - bool arg5 = args ? args.read (heap) : (bool)(false); - unsigned short int arg6 = args ? args.read (heap) : (unsigned short int)(1); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + bool arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); + unsigned short int arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write (new QKeyEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5, arg6)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQKeySequence.cc b/src/gsiqt/qt4/QtGui/gsiDeclQKeySequence.cc index 4e3c03f99..a70269dc5 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQKeySequence.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQKeySequence.cc @@ -65,7 +65,7 @@ static void _call_ctor_QKeySequence_2025 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QKeySequence (arg1)); } @@ -90,10 +90,10 @@ static void _call_ctor_QKeySequence_2744 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - int arg3 = args ? args.read (heap) : (int)(0); - int arg4 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QKeySequence (arg1, arg2, arg3, arg4)); } @@ -112,7 +112,7 @@ static void _call_ctor_QKeySequence_2516 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write (new QKeySequence (arg1)); } @@ -131,7 +131,7 @@ static void _call_ctor_QKeySequence_2869 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QKeySequence (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -195,7 +195,7 @@ static void _call_f_matches_c2516 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QKeySequence *)cls)->matches (arg1))); } @@ -214,7 +214,7 @@ static void _call_f_operator_excl__eq__c2516 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequence *)cls)->operator!= (arg1)); } @@ -233,7 +233,7 @@ static void _call_f_operator_lt__c2516 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequence *)cls)->operator< (arg1)); } @@ -252,7 +252,7 @@ static void _call_f_operator_lt__eq__c2516 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequence *)cls)->operator<= (arg1)); } @@ -271,7 +271,7 @@ static void _call_f_operator_eq__2516 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write ((QKeySequence &)((QKeySequence *)cls)->operator= (arg1)); } @@ -290,7 +290,7 @@ static void _call_f_operator_eq__eq__c2516 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequence *)cls)->operator== (arg1)); } @@ -309,7 +309,7 @@ static void _call_f_operator_gt__c2516 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequence *)cls)->operator> (arg1)); } @@ -328,7 +328,7 @@ static void _call_f_operator_gt__eq__c2516 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequence *)cls)->operator>= (arg1)); } @@ -347,7 +347,7 @@ static void _call_f_operator_index__c1772 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QKeySequence *)cls)->operator[] (arg1)); } @@ -366,7 +366,7 @@ static void _call_f_toString_c3197 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QKeySequence::PortableText)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QKeySequence::PortableText), heap); ret.write ((QString)((QKeySequence *)cls)->toString (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -387,8 +387,8 @@ static void _call_f_fromString_5114 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QKeySequence::PortableText)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QKeySequence::PortableText), heap); ret.write ((QKeySequence)QKeySequence::fromString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -407,7 +407,7 @@ static void _call_f_keyBindings_2869 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QList)QKeySequence::keyBindings (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -426,7 +426,7 @@ static void _call_f_mnemonic_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QKeySequence)QKeySequence::mnemonic (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLCDNumber.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLCDNumber.cc index 1964539c3..c8c4aa1f8 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQLCDNumber.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQLCDNumber.cc @@ -111,7 +111,7 @@ static void _call_f_checkOverflow_c1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLCDNumber *)cls)->checkOverflow (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_checkOverflow_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLCDNumber *)cls)->checkOverflow (arg1)); } @@ -164,7 +164,7 @@ static void _call_f_display_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber *)cls)->display (arg1); } @@ -184,7 +184,7 @@ static void _call_f_display_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber *)cls)->display (arg1); } @@ -204,7 +204,7 @@ static void _call_f_display_1071 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber *)cls)->display (arg1); } @@ -316,7 +316,7 @@ static void _call_f_setDigitCount_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber *)cls)->setDigitCount (arg1); } @@ -352,7 +352,7 @@ static void _call_f_setMode_1850 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber *)cls)->setMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -372,7 +372,7 @@ static void _call_f_setNumDigits_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber *)cls)->setNumDigits (arg1); } @@ -408,7 +408,7 @@ static void _call_f_setSegmentStyle_2713 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber *)cls)->setSegmentStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -428,7 +428,7 @@ static void _call_f_setSmallDecimalPoint_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber *)cls)->setSmallDecimalPoint (arg1); } @@ -495,8 +495,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QLCDNumber::tr (arg1, arg2)); } @@ -519,9 +519,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QLCDNumber::tr (arg1, arg2, arg3)); } @@ -542,8 +542,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QLCDNumber::trUtf8 (arg1, arg2)); } @@ -566,9 +566,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QLCDNumber::trUtf8 (arg1, arg2, arg3)); } @@ -1468,7 +1468,7 @@ static void _call_ctor_QLCDNumber_Adaptor_1315 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLCDNumber_Adaptor (arg1)); } @@ -1488,8 +1488,8 @@ static void _call_ctor_QLCDNumber_Adaptor_2979 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLCDNumber_Adaptor (arg1, arg2)); } @@ -1631,9 +1631,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->fp_QLCDNumber_create_2208 (arg1, arg2, arg3); } @@ -1652,7 +1652,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QLCDNumber_Adaptor *)cls)->emitter_QLCDNumber_customContextMenuRequested_1916 (arg1); } @@ -1696,8 +1696,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->fp_QLCDNumber_destroy_1620 (arg1, arg2); } @@ -1716,7 +1716,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QLCDNumber_Adaptor *)cls)->emitter_QLCDNumber_destroyed_1302 (arg1); } @@ -1830,7 +1830,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->fp_QLCDNumber_drawFrame_1426 (arg1); } @@ -2522,7 +2522,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLCDNumber_Adaptor *)cls)->fp_QLCDNumber_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLabel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLabel.cc index 7b2a2ac89..c285cfb31 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQLabel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQLabel.cc @@ -175,7 +175,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLabel *)cls)->heightForWidth (arg1)); } @@ -299,7 +299,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setAlignment (arg1); } @@ -319,7 +319,7 @@ static void _call_f_setBuddy_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setBuddy (arg1); } @@ -339,7 +339,7 @@ static void _call_f_setIndent_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setIndent (arg1); } @@ -359,7 +359,7 @@ static void _call_f_setMargin_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setMargin (arg1); } @@ -379,7 +379,7 @@ static void _call_f_setMovie_1215 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMovie *arg1 = args.read (heap); + QMovie *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setMovie (arg1); } @@ -399,7 +399,7 @@ static void _call_f_setNum_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setNum (arg1); } @@ -419,7 +419,7 @@ static void _call_f_setNum_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setNum (arg1); } @@ -439,7 +439,7 @@ static void _call_f_setOpenExternalLinks_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setOpenExternalLinks (arg1); } @@ -459,7 +459,7 @@ static void _call_f_setPicture_2126 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPicture &arg1 = args.read (heap); + const QPicture &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setPicture (arg1); } @@ -479,7 +479,7 @@ static void _call_f_setPixmap_2017 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setPixmap (arg1); } @@ -499,7 +499,7 @@ static void _call_f_setScaledContents_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setScaledContents (arg1); } @@ -519,7 +519,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setText (arg1); } @@ -539,7 +539,7 @@ static void _call_f_setTextFormat_1787 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setTextFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -559,7 +559,7 @@ static void _call_f_setTextInteractionFlags_3396 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setTextInteractionFlags (arg1); } @@ -579,7 +579,7 @@ static void _call_f_setWordWrap_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setWordWrap (arg1); } @@ -676,8 +676,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QLabel::tr (arg1, arg2)); } @@ -700,9 +700,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QLabel::tr (arg1, arg2, arg3)); } @@ -723,8 +723,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QLabel::trUtf8 (arg1, arg2)); } @@ -747,9 +747,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QLabel::trUtf8 (arg1, arg2, arg3)); } @@ -1680,8 +1680,8 @@ static void _call_ctor_QLabel_Adaptor_3702 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QLabel_Adaptor (arg1, arg2)); } @@ -1703,9 +1703,9 @@ static void _call_ctor_QLabel_Adaptor_5619 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QLabel_Adaptor (arg1, arg2, arg3)); } @@ -1847,9 +1847,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->fp_QLabel_create_2208 (arg1, arg2, arg3); } @@ -1868,7 +1868,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QLabel_Adaptor *)cls)->emitter_QLabel_customContextMenuRequested_1916 (arg1); } @@ -1912,8 +1912,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->fp_QLabel_destroy_1620 (arg1, arg2); } @@ -1932,7 +1932,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QLabel_Adaptor *)cls)->emitter_QLabel_destroyed_1302 (arg1); } @@ -2046,7 +2046,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->fp_QLabel_drawFrame_1426 (arg1); } @@ -2495,7 +2495,7 @@ static void _call_emitter_linkActivated_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QLabel_Adaptor *)cls)->emitter_QLabel_linkActivated_2025 (arg1); } @@ -2513,7 +2513,7 @@ static void _call_emitter_linkHovered_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QLabel_Adaptor *)cls)->emitter_QLabel_linkHovered_2025 (arg1); } @@ -2760,7 +2760,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLabel_Adaptor *)cls)->fp_QLabel_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc index b0314be34..2c9d92993 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQLayout.cc @@ -89,7 +89,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->addItem (arg1); @@ -110,7 +110,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->addWidget (arg1); } @@ -211,10 +211,10 @@ static void _call_f_getContentsMargins_c3488 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->getContentsMargins (arg1, arg2, arg3, arg4); } @@ -234,7 +234,7 @@ static void _call_f_indexOf_c1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout *)cls)->indexOf (arg1)); } @@ -299,7 +299,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QLayout *)cls)->itemAt (arg1)); } @@ -408,7 +408,7 @@ static void _call_f_removeItem_1740 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->removeItem (arg1); } @@ -428,7 +428,7 @@ static void _call_f_removeWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->removeWidget (arg1); } @@ -450,8 +450,8 @@ static void _call_f_setAlignment_3957 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QLayout *)cls)->setAlignment (arg1, arg2)); } @@ -472,8 +472,8 @@ static void _call_f_setAlignment_3983 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QLayout *)cls)->setAlignment (arg1, arg2)); } @@ -492,7 +492,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setAlignment (arg1); } @@ -518,10 +518,10 @@ static void _call_f_setContentsMargins_2744 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setContentsMargins (arg1, arg2, arg3, arg4); } @@ -541,7 +541,7 @@ static void _call_f_setContentsMargins_2115 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setContentsMargins (arg1); } @@ -561,7 +561,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setEnabled (arg1); } @@ -581,7 +581,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setGeometry (arg1); } @@ -601,7 +601,7 @@ static void _call_f_setMargin_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setMargin (arg1); } @@ -621,7 +621,7 @@ static void _call_f_setMenuBar_1315 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setMenuBar (arg1); } @@ -641,7 +641,7 @@ static void _call_f_setSizeConstraint_2743 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setSizeConstraint (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -661,7 +661,7 @@ static void _call_f_setSpacing_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setSpacing (arg1); } @@ -711,7 +711,7 @@ static void _call_f_takeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QLayout *)cls)->takeAt (arg1)); } @@ -730,7 +730,7 @@ static void _call_f_totalHeightForWidth_c767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout *)cls)->totalHeightForWidth (arg1)); } @@ -812,8 +812,8 @@ static void _call_f_closestAcceptableSize_3707 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)QLayout::closestAcceptableSize (arg1, arg2)); } @@ -834,8 +834,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QLayout::tr (arg1, arg2)); } @@ -858,9 +858,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QLayout::tr (arg1, arg2, arg3)); } @@ -881,8 +881,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QLayout::trUtf8 (arg1, arg2)); } @@ -905,9 +905,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QLayout::trUtf8 (arg1, arg2, arg3)); } @@ -1502,7 +1502,7 @@ static void _call_ctor_QLayout_Adaptor_1315 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QLayout_Adaptor (arg1)); } @@ -1534,7 +1534,7 @@ static void _call_fp_addChildLayout_1341 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->fp_QLayout_addChildLayout_1341 (arg1); @@ -1554,7 +1554,7 @@ static void _call_fp_addChildWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->fp_QLayout_addChildWidget_1315 (arg1); } @@ -1597,7 +1597,7 @@ static void _call_fp_alignmentRect_c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QLayout_Adaptor *)cls)->fp_QLayout_alignmentRect_c1792 (arg1)); } @@ -1682,7 +1682,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QLayout_Adaptor *)cls)->emitter_QLayout_destroyed_1302 (arg1); } @@ -2018,7 +2018,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout_Adaptor *)cls)->fp_QLayout_receivers_c1731 (arg1)); } @@ -2178,7 +2178,7 @@ static void _call_fp_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->fp_QLayout_widgetEvent_1217 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLayoutItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLayoutItem.cc index e36ac2bb6..25fbf5a92 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQLayoutItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQLayoutItem.cc @@ -130,7 +130,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayoutItem *)cls)->heightForWidth (arg1)); } @@ -210,7 +210,7 @@ static void _call_f_minimumHeightForWidth_c767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayoutItem *)cls)->minimumHeightForWidth (arg1)); } @@ -244,7 +244,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayoutItem *)cls)->setAlignment (arg1); } @@ -264,7 +264,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayoutItem *)cls)->setGeometry (arg1); } @@ -609,7 +609,7 @@ static void _call_ctor_QLayoutItem_Adaptor_2750 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(0); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QLayoutItem_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLineEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLineEdit.cc index 47979e0a3..6ca404413 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQLineEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQLineEdit.cc @@ -210,8 +210,8 @@ static void _call_f_cursorBackward_1523 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(1); + bool arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->cursorBackward (arg1, arg2); } @@ -233,8 +233,8 @@ static void _call_f_cursorForward_1523 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(1); + bool arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->cursorForward (arg1, arg2); } @@ -269,7 +269,7 @@ static void _call_f_cursorPositionAt_1916 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLineEdit *)cls)->cursorPositionAt (arg1)); } @@ -288,7 +288,7 @@ static void _call_f_cursorWordBackward_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->cursorWordBackward (arg1); } @@ -308,7 +308,7 @@ static void _call_f_cursorWordForward_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->cursorWordForward (arg1); } @@ -421,7 +421,7 @@ static void _call_f_end_864 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->end (arg1); } @@ -441,7 +441,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineEdit *)cls)->event (arg1)); } @@ -466,10 +466,10 @@ static void _call_f_getTextMargins_c3488 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->getTextMargins (arg1, arg2, arg3, arg4); } @@ -534,7 +534,7 @@ static void _call_f_home_864 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->home (arg1); } @@ -569,7 +569,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QLineEdit *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -588,7 +588,7 @@ static void _call_f_insert_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->insert (arg1); } @@ -776,7 +776,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setAlignment (arg1); } @@ -796,7 +796,7 @@ static void _call_f_setCompleter_1642 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCompleter *arg1 = args.read (heap); + QCompleter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setCompleter (arg1); } @@ -816,7 +816,7 @@ static void _call_f_setCursorPosition_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setCursorPosition (arg1); } @@ -836,7 +836,7 @@ static void _call_f_setDragEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setDragEnabled (arg1); } @@ -856,7 +856,7 @@ static void _call_f_setEchoMode_2187 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setEchoMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -876,7 +876,7 @@ static void _call_f_setFrame_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setFrame (arg1); } @@ -896,7 +896,7 @@ static void _call_f_setInputMask_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setInputMask (arg1); } @@ -916,7 +916,7 @@ static void _call_f_setMaxLength_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setMaxLength (arg1); } @@ -936,7 +936,7 @@ static void _call_f_setModified_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setModified (arg1); } @@ -956,7 +956,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setReadOnly (arg1); } @@ -978,8 +978,8 @@ static void _call_f_setSelection_1426 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setSelection (arg1, arg2); } @@ -999,7 +999,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setText (arg1); } @@ -1025,10 +1025,10 @@ static void _call_f_setTextMargins_2744 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setTextMargins (arg1, arg2, arg3, arg4); } @@ -1048,7 +1048,7 @@ static void _call_f_setTextMargins_2115 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setTextMargins (arg1); } @@ -1068,7 +1068,7 @@ static void _call_f_setValidator_2332 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QValidator *arg1 = args.read (heap); + const QValidator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setValidator (arg1); } @@ -1166,8 +1166,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QLineEdit::tr (arg1, arg2)); } @@ -1190,9 +1190,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QLineEdit::tr (arg1, arg2, arg3)); } @@ -1213,8 +1213,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QLineEdit::trUtf8 (arg1, arg2)); } @@ -1237,9 +1237,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QLineEdit::trUtf8 (arg1, arg2, arg3)); } @@ -2216,7 +2216,7 @@ static void _call_ctor_QLineEdit_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLineEdit_Adaptor (arg1)); } @@ -2236,8 +2236,8 @@ static void _call_ctor_QLineEdit_Adaptor_3232 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLineEdit_Adaptor (arg1, arg2)); } @@ -2379,9 +2379,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->fp_QLineEdit_create_2208 (arg1, arg2, arg3); } @@ -2402,8 +2402,8 @@ static void _call_emitter_cursorPositionChanged_1426 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QLineEdit_Adaptor *)cls)->emitter_QLineEdit_cursorPositionChanged_1426 (arg1, arg2); } @@ -2435,7 +2435,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QLineEdit_Adaptor *)cls)->emitter_QLineEdit_customContextMenuRequested_1916 (arg1); } @@ -2479,8 +2479,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->fp_QLineEdit_destroy_1620 (arg1, arg2); } @@ -2499,7 +2499,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QLineEdit_Adaptor *)cls)->emitter_QLineEdit_destroyed_1302 (arg1); } @@ -2918,7 +2918,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->fp_QLineEdit_initStyleOption_c2356 (arg1); } @@ -3305,7 +3305,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLineEdit_Adaptor *)cls)->fp_QLineEdit_receivers_c1731 (arg1)); } @@ -3519,7 +3519,7 @@ static void _call_emitter_textChanged_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QLineEdit_Adaptor *)cls)->emitter_QLineEdit_textChanged_2025 (arg1); } @@ -3537,7 +3537,7 @@ static void _call_emitter_textEdited_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QLineEdit_Adaptor *)cls)->emitter_QLineEdit_textEdited_2025 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQLinearGradient.cc b/src/gsiqt/qt4/QtGui/gsiDeclQLinearGradient.cc index d4ea4aaac..4fd3df38e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQLinearGradient.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQLinearGradient.cc @@ -70,8 +70,8 @@ static void _call_ctor_QLinearGradient_3864 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); ret.write (new QLinearGradient (arg1, arg2)); } @@ -96,10 +96,10 @@ static void _call_ctor_QLinearGradient_3960 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write (new QLinearGradient (arg1, arg2, arg3, arg4)); } @@ -133,7 +133,7 @@ static void _call_f_setFinalStop_1986 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLinearGradient *)cls)->setFinalStop (arg1); } @@ -155,8 +155,8 @@ static void _call_f_setFinalStop_2034 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLinearGradient *)cls)->setFinalStop (arg1, arg2); } @@ -176,7 +176,7 @@ static void _call_f_setStart_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLinearGradient *)cls)->setStart (arg1); } @@ -198,8 +198,8 @@ static void _call_f_setStart_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLinearGradient *)cls)->setStart (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQListView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQListView.cc index 31c828c41..92abd2a90 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQListView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQListView.cc @@ -195,7 +195,7 @@ static void _call_f_indexAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QListView *)cls)->indexAt (arg1)); } @@ -214,7 +214,7 @@ static void _call_f_isRowHidden_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView *)cls)->isRowHidden (arg1)); } @@ -341,8 +341,8 @@ static void _call_f_scrollTo_5576 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->scrollTo (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -362,7 +362,7 @@ static void _call_f_setBatchSize_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setBatchSize (arg1); } @@ -382,7 +382,7 @@ static void _call_f_setFlow_1864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setFlow (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -402,7 +402,7 @@ static void _call_f_setGridSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setGridSize (arg1); } @@ -422,7 +422,7 @@ static void _call_f_setLayoutMode_2483 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setLayoutMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -442,7 +442,7 @@ static void _call_f_setModelColumn_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setModelColumn (arg1); } @@ -462,7 +462,7 @@ static void _call_f_setMovement_2299 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setMovement (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -482,7 +482,7 @@ static void _call_f_setResizeMode_2471 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setResizeMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -502,7 +502,7 @@ static void _call_f_setRootIndex_2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setRootIndex (arg1); } @@ -524,8 +524,8 @@ static void _call_f_setRowHidden_1523 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setRowHidden (arg1, arg2); } @@ -545,7 +545,7 @@ static void _call_f_setSelectionRectVisible_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setSelectionRectVisible (arg1); } @@ -565,7 +565,7 @@ static void _call_f_setSpacing_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setSpacing (arg1); } @@ -585,7 +585,7 @@ static void _call_f_setUniformItemSizes_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setUniformItemSizes (arg1); } @@ -605,7 +605,7 @@ static void _call_f_setViewMode_2256 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setViewMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -625,7 +625,7 @@ static void _call_f_setWordWrap_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setWordWrap (arg1); } @@ -645,7 +645,7 @@ static void _call_f_setWrapping_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setWrapping (arg1); } @@ -710,7 +710,7 @@ static void _call_f_visualRect_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QListView *)cls)->visualRect (arg1)); } @@ -746,8 +746,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QListView::tr (arg1, arg2)); } @@ -770,9 +770,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QListView::tr (arg1, arg2, arg3)); } @@ -793,8 +793,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QListView::trUtf8 (arg1, arg2)); } @@ -817,9 +817,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QListView::trUtf8 (arg1, arg2, arg3)); } @@ -2522,7 +2522,7 @@ static void _call_ctor_QListView_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QListView_Adaptor (arg1)); } @@ -2564,7 +2564,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_activated_2395 (arg1); } @@ -2630,7 +2630,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_clicked_2395 (arg1); } @@ -2765,9 +2765,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_create_2208 (arg1, arg2, arg3); } @@ -2813,7 +2813,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_customContextMenuRequested_1916 (arg1); } @@ -2884,8 +2884,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_destroy_1620 (arg1, arg2); } @@ -2904,7 +2904,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QListView_Adaptor *)cls)->emitter_QListView_destroyed_1302 (arg1); } @@ -2995,7 +2995,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_doubleClicked_2395 (arg1); } @@ -3085,7 +3085,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_drawFrame_1426 (arg1); } @@ -3243,7 +3243,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_entered_2395 (arg1); } @@ -3599,7 +3599,7 @@ static void _call_emitter_indexesMoved_3010 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_indexesMoved_3010 (arg1); } @@ -3664,7 +3664,7 @@ static void _call_fp_internalDrag_2456 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_internalDrag_2456 (arg1); } @@ -3683,7 +3683,7 @@ static void _call_fp_internalDrop_1622 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_internalDrop_1622 (arg1); } @@ -4096,7 +4096,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_pressed_2395 (arg1); } @@ -4114,7 +4114,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListView_Adaptor *)cls)->fp_QListView_receivers_c1731 (arg1)); } @@ -4132,7 +4132,7 @@ static void _call_fp_rectForIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QListView_Adaptor *)cls)->fp_QListView_rectForIndex_c2395 (arg1)); } @@ -4187,8 +4187,8 @@ static void _call_fp_resizeContents_1426 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_resizeContents_1426 (arg1, arg2); } @@ -4335,8 +4335,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_scrollDirtyRegion_1426 (arg1, arg2); } @@ -4488,7 +4488,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_setDirtyRegion_2006 (arg1); } @@ -4507,7 +4507,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_setHorizontalStepsPerItem_767 (arg1); } @@ -4552,8 +4552,8 @@ static void _call_fp_setPositionForIndex_4203 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_setPositionForIndex_4203 (arg1, arg2); } @@ -4647,7 +4647,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_setState_2776 (arg1); } @@ -4666,7 +4666,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_setVerticalStepsPerItem_767 (arg1); } @@ -4691,10 +4691,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -4713,7 +4713,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_setViewportMargins_2115 (arg1); } @@ -4756,7 +4756,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_setupViewport_1315 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQListWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQListWidget.cc index 3b2f26a29..49e9a9a50 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQListWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQListWidget.cc @@ -120,7 +120,7 @@ static void _call_f_addItem_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->addItem (arg1); } @@ -140,7 +140,7 @@ static void _call_f_addItem_2126 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->addItem (arg1); @@ -161,7 +161,7 @@ static void _call_f_addItems_2437 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->addItems (arg1); } @@ -197,7 +197,7 @@ static void _call_f_closePersistentEditor_2126 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->closePersistentEditor (arg1); } @@ -262,7 +262,7 @@ static void _call_f_dropEvent_1622 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->dropEvent (arg1); } @@ -282,7 +282,7 @@ static void _call_f_editItem_2126 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->editItem (arg1); } @@ -304,8 +304,8 @@ static void _call_f_findItems_c4233 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write > ((QList)((QListWidget *)cls)->findItems (arg1, arg2)); } @@ -326,8 +326,8 @@ static void _call_f_insertItem_2785 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QListWidgetItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QListWidgetItem *arg2 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->insertItem (arg1, arg2); @@ -350,8 +350,8 @@ static void _call_f_insertItem_2684 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->insertItem (arg1, arg2); } @@ -373,8 +373,8 @@ static void _call_f_insertItems_3096 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->insertItems (arg1, arg2); } @@ -394,7 +394,7 @@ static void _call_f_isItemHidden_c2821 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem *arg1 = args.read (heap); + const QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget *)cls)->isItemHidden (arg1)); } @@ -413,7 +413,7 @@ static void _call_f_isItemSelected_c2821 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem *arg1 = args.read (heap); + const QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget *)cls)->isItemSelected (arg1)); } @@ -447,7 +447,7 @@ static void _call_f_item_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QListWidgetItem *)((QListWidget *)cls)->item (arg1)); } @@ -466,7 +466,7 @@ static void _call_f_itemAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QListWidgetItem *)((QListWidget *)cls)->itemAt (arg1)); } @@ -487,8 +487,8 @@ static void _call_f_itemAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QListWidgetItem *)((QListWidget *)cls)->itemAt (arg1, arg2)); } @@ -507,7 +507,7 @@ static void _call_f_itemWidget_c2126 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QListWidget *)cls)->itemWidget (arg1)); } @@ -526,7 +526,7 @@ static void _call_f_openPersistentEditor_2126 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->openPersistentEditor (arg1); } @@ -546,7 +546,7 @@ static void _call_f_removeItemWidget_2126 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->removeItemWidget (arg1); } @@ -566,7 +566,7 @@ static void _call_f_row_c2821 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem *arg1 = args.read (heap); + const QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListWidget *)cls)->row (arg1)); } @@ -587,8 +587,8 @@ static void _call_f_scrollToItem_6002 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->scrollToItem (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -623,7 +623,7 @@ static void _call_f_setCurrentItem_2126 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setCurrentItem (arg1); } @@ -645,8 +645,8 @@ static void _call_f_setCurrentItem_6489 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setCurrentItem (arg1, arg2); } @@ -666,7 +666,7 @@ static void _call_f_setCurrentRow_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setCurrentRow (arg1); } @@ -688,8 +688,8 @@ static void _call_f_setCurrentRow_5130 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setCurrentRow (arg1, arg2); } @@ -711,8 +711,8 @@ static void _call_f_setItemHidden_3577 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setItemHidden (arg1, arg2); } @@ -734,8 +734,8 @@ static void _call_f_setItemSelected_3577 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setItemSelected (arg1, arg2); } @@ -757,8 +757,8 @@ static void _call_f_setItemWidget_3333 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setItemWidget (arg1, arg2); } @@ -778,7 +778,7 @@ static void _call_f_setSortingEnabled_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setSortingEnabled (arg1); } @@ -798,7 +798,7 @@ static void _call_f_sortItems_1681 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->sortItems (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -818,7 +818,7 @@ static void _call_f_takeItem_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QListWidgetItem *)((QListWidget *)cls)->takeItem (arg1)); } @@ -837,7 +837,7 @@ static void _call_f_visualItemRect_c2821 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem *arg1 = args.read (heap); + const QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QListWidget *)cls)->visualItemRect (arg1)); } @@ -858,8 +858,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QListWidget::tr (arg1, arg2)); } @@ -882,9 +882,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QListWidget::tr (arg1, arg2, arg3)); } @@ -905,8 +905,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QListWidget::trUtf8 (arg1, arg2)); } @@ -929,9 +929,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QListWidget::trUtf8 (arg1, arg2, arg3)); } @@ -2769,7 +2769,7 @@ static void _call_ctor_QListWidget_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QListWidget_Adaptor (arg1)); } @@ -2811,7 +2811,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_activated_2395 (arg1); } @@ -2877,7 +2877,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_clicked_2395 (arg1); } @@ -3012,9 +3012,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_create_2208 (arg1, arg2, arg3); } @@ -3062,8 +3062,8 @@ static void _call_emitter_currentItemChanged_4144 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); - QListWidgetItem *arg2 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QListWidgetItem *arg2 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_currentItemChanged_4144 (arg1, arg2); } @@ -3081,7 +3081,7 @@ static void _call_emitter_currentRowChanged_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_currentRowChanged_767 (arg1); } @@ -3099,7 +3099,7 @@ static void _call_emitter_currentTextChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_currentTextChanged_2025 (arg1); } @@ -3117,7 +3117,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_customContextMenuRequested_1916 (arg1); } @@ -3188,8 +3188,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_destroy_1620 (arg1, arg2); } @@ -3208,7 +3208,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_destroyed_1302 (arg1); } @@ -3299,7 +3299,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_doubleClicked_2395 (arg1); } @@ -3389,7 +3389,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_drawFrame_1426 (arg1); } @@ -3576,7 +3576,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_entered_2395 (arg1); } @@ -3932,7 +3932,7 @@ static void _call_fp_indexFromItem_c2126 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QListWidget_Adaptor *)cls)->fp_QListWidget_indexFromItem_c2126 (arg1)); } @@ -3950,7 +3950,7 @@ static void _call_emitter_indexesMoved_3010 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_indexesMoved_3010 (arg1); } @@ -4015,7 +4015,7 @@ static void _call_fp_internalDrag_2456 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_internalDrag_2456 (arg1); } @@ -4034,7 +4034,7 @@ static void _call_fp_internalDrop_1622 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_internalDrop_1622 (arg1); } @@ -4076,7 +4076,7 @@ static void _call_emitter_itemActivated_2126 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_itemActivated_2126 (arg1); } @@ -4094,7 +4094,7 @@ static void _call_emitter_itemChanged_2126 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_itemChanged_2126 (arg1); } @@ -4112,7 +4112,7 @@ static void _call_emitter_itemClicked_2126 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_itemClicked_2126 (arg1); } @@ -4130,7 +4130,7 @@ static void _call_emitter_itemDoubleClicked_2126 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_itemDoubleClicked_2126 (arg1); } @@ -4148,7 +4148,7 @@ static void _call_emitter_itemEntered_2126 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_itemEntered_2126 (arg1); } @@ -4166,7 +4166,7 @@ static void _call_fp_itemFromIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QListWidgetItem *)((QListWidget_Adaptor *)cls)->fp_QListWidget_itemFromIndex_c2395 (arg1)); } @@ -4184,7 +4184,7 @@ static void _call_emitter_itemPressed_2126 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_itemPressed_2126 (arg1); } @@ -4216,7 +4216,7 @@ static void _call_fp_items_c2168 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QListWidget_Adaptor *)cls)->fp_QListWidget_items_c2168 (arg1)); } @@ -4647,7 +4647,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_pressed_2395 (arg1); } @@ -4665,7 +4665,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListWidget_Adaptor *)cls)->fp_QListWidget_receivers_c1731 (arg1)); } @@ -4683,7 +4683,7 @@ static void _call_fp_rectForIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QListWidget_Adaptor *)cls)->fp_QListWidget_rectForIndex_c2395 (arg1)); } @@ -4738,8 +4738,8 @@ static void _call_fp_resizeContents_1426 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_resizeContents_1426 (arg1, arg2); } @@ -4886,8 +4886,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_scrollDirtyRegion_1426 (arg1, arg2); } @@ -5039,7 +5039,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_setDirtyRegion_2006 (arg1); } @@ -5058,7 +5058,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_setHorizontalStepsPerItem_767 (arg1); } @@ -5079,8 +5079,8 @@ static void _call_fp_setPositionForIndex_4203 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_setPositionForIndex_4203 (arg1, arg2); } @@ -5174,7 +5174,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_setState_2776 (arg1); } @@ -5193,7 +5193,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_setVerticalStepsPerItem_767 (arg1); } @@ -5218,10 +5218,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -5240,7 +5240,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_setViewportMargins_2115 (arg1); } @@ -5283,7 +5283,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_setupViewport_1315 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQListWidgetItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQListWidgetItem.cc index e0aa5ba28..1ed6d5909 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQListWidgetItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQListWidgetItem.cc @@ -117,7 +117,7 @@ static void _call_f_data_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QListWidgetItem *)cls)->data (arg1)); } @@ -241,7 +241,7 @@ static void _call_f_operator_lt__c2817 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem &arg1 = args.read (heap); + const QListWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidgetItem *)cls)->operator< (arg1)); } @@ -260,7 +260,7 @@ static void _call_f_operator_eq__2817 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem &arg1 = args.read (heap); + const QListWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((QListWidgetItem &)((QListWidgetItem *)cls)->operator= (arg1)); } @@ -279,7 +279,7 @@ static void _call_f_read_1697 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->read (arg1); } @@ -299,7 +299,7 @@ static void _call_f_setBackground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setBackground (arg1); } @@ -319,7 +319,7 @@ static void _call_f_setBackgroundColor_1905 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setBackgroundColor (arg1); } @@ -339,7 +339,7 @@ static void _call_f_setCheckState_1740 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setCheckState (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -361,8 +361,8 @@ static void _call_f_setData_2778 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setData (arg1, arg2); } @@ -382,7 +382,7 @@ static void _call_f_setFlags_2222 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setFlags (arg1); } @@ -402,7 +402,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setFont (arg1); } @@ -422,7 +422,7 @@ static void _call_f_setForeground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setForeground (arg1); } @@ -442,7 +442,7 @@ static void _call_f_setHidden_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setHidden (arg1); } @@ -462,7 +462,7 @@ static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setIcon (arg1); } @@ -482,7 +482,7 @@ static void _call_f_setSelected_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setSelected (arg1); } @@ -502,7 +502,7 @@ static void _call_f_setSizeHint_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setSizeHint (arg1); } @@ -522,7 +522,7 @@ static void _call_f_setStatusTip_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setStatusTip (arg1); } @@ -542,7 +542,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setText (arg1); } @@ -562,7 +562,7 @@ static void _call_f_setTextAlignment_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setTextAlignment (arg1); } @@ -582,7 +582,7 @@ static void _call_f_setTextColor_1905 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setTextColor (arg1); } @@ -602,7 +602,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setToolTip (arg1); } @@ -622,7 +622,7 @@ static void _call_f_setWhatsThis_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setWhatsThis (arg1); } @@ -762,7 +762,7 @@ static void _call_f_write_c1697 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->write (arg1); } @@ -1023,8 +1023,8 @@ static void _call_ctor_QListWidgetItem_Adaptor_2386 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidget *arg1 = args ? args.read (heap) : (QListWidget *)(0); - int arg2 = args ? args.read (heap) : (int)(QListWidgetItem::Type); + QListWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QListWidgetItem::Type, heap); QListWidgetItem_Adaptor *obj = new QListWidgetItem_Adaptor (arg1, arg2); if (arg1) { qt_gsi::qt_keep (obj); @@ -1050,9 +1050,9 @@ static void _call_ctor_QListWidgetItem_Adaptor_4303 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QListWidget *arg2 = args ? args.read (heap) : (QListWidget *)(0); - int arg3 = args ? args.read (heap) : (int)(QListWidgetItem::Type); + const QString &arg1 = gsi::arg_reader() (args, heap); + QListWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QListWidgetItem::Type, heap); ret.write (new QListWidgetItem_Adaptor (arg1, arg2, arg3)); } @@ -1076,10 +1076,10 @@ static void _call_ctor_QListWidgetItem_Adaptor_5982 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QListWidget *arg3 = args ? args.read (heap) : (QListWidget *)(0); - int arg4 = args ? args.read (heap) : (int)(QListWidgetItem::Type); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QListWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QListWidgetItem::Type, heap); ret.write (new QListWidgetItem_Adaptor (arg1, arg2, arg3, arg4)); } @@ -1097,7 +1097,7 @@ static void _call_ctor_QListWidgetItem_Adaptor_2817 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem &arg1 = args.read (heap); + const QListWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write (new QListWidgetItem_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMainWindow.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMainWindow.cc index 9e6cd6706..b6c4cbde3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMainWindow.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMainWindow.cc @@ -118,8 +118,8 @@ static void _call_f_addDockWidget_3715 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QDockWidget *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QDockWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->addDockWidget (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -143,9 +143,9 @@ static void _call_f_addDockWidget_5520 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QDockWidget *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QDockWidget *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->addDockWidget (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -167,8 +167,8 @@ static void _call_f_addToolBar_3103 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QToolBar *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QToolBar *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->addToolBar (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -188,7 +188,7 @@ static void _call_f_addToolBar_1394 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QToolBar *arg1 = args.read (heap); + QToolBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->addToolBar (arg1); } @@ -208,7 +208,7 @@ static void _call_f_addToolBar_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QToolBar *)((QMainWindow *)cls)->addToolBar (arg1)); } @@ -227,7 +227,7 @@ static void _call_f_addToolBarBreak_1817 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TopToolBarArea)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TopToolBarArea), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->addToolBarBreak (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -262,7 +262,7 @@ static void _call_f_corner_c1366 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QMainWindow *)cls)->corner (qt_gsi::QtToCppAdaptor(arg1).cref()))); } @@ -311,7 +311,7 @@ static void _call_f_dockWidgetArea_c1700 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDockWidget *arg1 = args.read (heap); + QDockWidget *arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QMainWindow *)cls)->dockWidgetArea (arg1))); } @@ -362,8 +362,8 @@ static void _call_f_insertToolBar_2680 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QToolBar *arg1 = args.read (heap); - QToolBar *arg2 = args.read (heap); + QToolBar *arg1 = gsi::arg_reader() (args, heap); + QToolBar *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->insertToolBar (arg1, arg2); } @@ -383,7 +383,7 @@ static void _call_f_insertToolBarBreak_1394 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QToolBar *arg1 = args.read (heap); + QToolBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->insertToolBarBreak (arg1); } @@ -433,7 +433,7 @@ static void _call_f_isSeparator_c1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow *)cls)->isSeparator (arg1)); } @@ -482,7 +482,7 @@ static void _call_f_removeDockWidget_1700 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDockWidget *arg1 = args.read (heap); + QDockWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->removeDockWidget (arg1); } @@ -502,7 +502,7 @@ static void _call_f_removeToolBar_1394 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QToolBar *arg1 = args.read (heap); + QToolBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->removeToolBar (arg1); } @@ -522,7 +522,7 @@ static void _call_f_removeToolBarBreak_1394 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QToolBar *arg1 = args.read (heap); + QToolBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->removeToolBarBreak (arg1); } @@ -542,7 +542,7 @@ static void _call_f_restoreDockWidget_1700 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDockWidget *arg1 = args.read (heap); + QDockWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow *)cls)->restoreDockWidget (arg1)); } @@ -563,8 +563,8 @@ static void _call_f_restoreState_2968 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QMainWindow *)cls)->restoreState (arg1, arg2)); } @@ -583,7 +583,7 @@ static void _call_f_saveState_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QByteArray)((QMainWindow *)cls)->saveState (arg1)); } @@ -602,7 +602,7 @@ static void _call_f_setAnimated_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setAnimated (arg1); } @@ -622,7 +622,7 @@ static void _call_f_setCentralWidget_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setCentralWidget (arg1); } @@ -644,8 +644,8 @@ static void _call_f_setCorner_3381 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setCorner (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -665,7 +665,7 @@ static void _call_f_setDockNestingEnabled_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setDockNestingEnabled (arg1); } @@ -685,7 +685,7 @@ static void _call_f_setDockOptions_3368 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setDockOptions (arg1); } @@ -705,7 +705,7 @@ static void _call_f_setDocumentMode_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setDocumentMode (arg1); } @@ -725,7 +725,7 @@ static void _call_f_setIconSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setIconSize (arg1); } @@ -745,7 +745,7 @@ static void _call_f_setMenuBar_1385 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenuBar *arg1 = args.read (heap); + QMenuBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setMenuBar (arg1); } @@ -765,7 +765,7 @@ static void _call_f_setMenuWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setMenuWidget (arg1); } @@ -785,7 +785,7 @@ static void _call_f_setStatusBar_1624 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStatusBar *arg1 = args.read (heap); + QStatusBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setStatusBar (arg1); } @@ -807,8 +807,8 @@ static void _call_f_setTabPosition_5367 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setTabPosition (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -828,7 +828,7 @@ static void _call_f_setTabShape_2300 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setTabShape (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -848,7 +848,7 @@ static void _call_f_setToolButtonStyle_2328 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setToolButtonStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -868,7 +868,7 @@ static void _call_f_setUnifiedTitleAndToolBarOnMac_864 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setUnifiedTitleAndToolBarOnMac (arg1); } @@ -892,9 +892,9 @@ static void _call_f_splitDockWidget_5097 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDockWidget *arg1 = args.read (heap); - QDockWidget *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + QDockWidget *arg1 = gsi::arg_reader() (args, heap); + QDockWidget *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->splitDockWidget (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -929,7 +929,7 @@ static void _call_f_tabPosition_c2123 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QMainWindow *)cls)->tabPosition (qt_gsi::QtToCppAdaptor(arg1).cref()))); } @@ -963,7 +963,7 @@ static void _call_f_tabifiedDockWidgets_c1700 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDockWidget *arg1 = args.read (heap); + QDockWidget *arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QMainWindow *)cls)->tabifiedDockWidgets (arg1)); } @@ -984,8 +984,8 @@ static void _call_f_tabifyDockWidget_3292 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDockWidget *arg1 = args.read (heap); - QDockWidget *arg2 = args.read (heap); + QDockWidget *arg1 = gsi::arg_reader() (args, heap); + QDockWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->tabifyDockWidget (arg1, arg2); } @@ -1005,7 +1005,7 @@ static void _call_f_toolBarArea_c1394 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QToolBar *arg1 = args.read (heap); + QToolBar *arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QMainWindow *)cls)->toolBarArea (arg1))); } @@ -1024,7 +1024,7 @@ static void _call_f_toolBarBreak_c1394 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QToolBar *arg1 = args.read (heap); + QToolBar *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow *)cls)->toolBarBreak (arg1)); } @@ -1075,8 +1075,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMainWindow::tr (arg1, arg2)); } @@ -1099,9 +1099,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMainWindow::tr (arg1, arg2, arg3)); } @@ -1122,8 +1122,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMainWindow::trUtf8 (arg1, arg2)); } @@ -1146,9 +1146,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMainWindow::trUtf8 (arg1, arg2, arg3)); } @@ -2090,8 +2090,8 @@ static void _call_ctor_QMainWindow_Adaptor_3702 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QMainWindow_Adaptor (arg1, arg2)); } @@ -2233,9 +2233,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->fp_QMainWindow_create_2208 (arg1, arg2, arg3); } @@ -2273,7 +2273,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QMainWindow_Adaptor *)cls)->emitter_QMainWindow_customContextMenuRequested_1916 (arg1); } @@ -2317,8 +2317,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->fp_QMainWindow_destroy_1620 (arg1, arg2); } @@ -2337,7 +2337,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMainWindow_Adaptor *)cls)->emitter_QMainWindow_destroyed_1302 (arg1); } @@ -2742,7 +2742,7 @@ static void _call_emitter_iconSizeChanged_1805 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QMainWindow_Adaptor *)cls)->emitter_QMainWindow_iconSizeChanged_1805 (arg1); } @@ -3128,7 +3128,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMainWindow_Adaptor *)cls)->fp_QMainWindow_receivers_c1731 (arg1)); } @@ -3338,7 +3338,7 @@ static void _call_emitter_toolButtonStyleChanged_2328 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMainWindow_Adaptor *)cls)->emitter_QMainWindow_toolButtonStyleChanged_2328 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMatrix.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMatrix.cc index 6c14a83c9..2a55fc050 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMatrix.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMatrix.cc @@ -60,7 +60,7 @@ static void _call_ctor_QMatrix_2229 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QMatrix (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -104,12 +104,12 @@ static void _call_ctor_QMatrix_5886 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); ret.write (new QMatrix (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -128,7 +128,7 @@ static void _call_ctor_QMatrix_2023 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMatrix (arg1)); } @@ -207,7 +207,7 @@ static void _call_f_inverted_c1050 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args ? args.read (heap) : (bool *)(0); + bool *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QMatrix)((QMatrix *)cls)->inverted (arg1)); } @@ -322,10 +322,10 @@ static void _call_f_map_c3116 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix *)cls)->map (arg1, arg2, arg3, arg4); } @@ -351,10 +351,10 @@ static void _call_f_map_c4332 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix *)cls)->map (arg1, arg2, arg3, arg4); } @@ -374,7 +374,7 @@ static void _call_f_map_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QMatrix *)cls)->map (arg1)); } @@ -393,7 +393,7 @@ static void _call_f_map_c1986 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QMatrix *)cls)->map (arg1)); } @@ -412,7 +412,7 @@ static void _call_f_map_c1786 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLine &arg1 = args.read (heap); + const QLine &arg1 = gsi::arg_reader() (args, heap); ret.write ((QLine)((QMatrix *)cls)->map (arg1)); } @@ -431,7 +431,7 @@ static void _call_f_map_c1856 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QLineF)((QMatrix *)cls)->map (arg1)); } @@ -450,7 +450,7 @@ static void _call_f_map_c2208 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QMatrix *)cls)->map (arg1)); } @@ -469,7 +469,7 @@ static void _call_f_map_c2138 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QMatrix *)cls)->map (arg1)); } @@ -488,7 +488,7 @@ static void _call_f_map_c2006 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QMatrix *)cls)->map (arg1)); } @@ -507,7 +507,7 @@ static void _call_f_map_c2514 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QMatrix *)cls)->map (arg1)); } @@ -526,7 +526,7 @@ static void _call_f_mapRect_c1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QMatrix *)cls)->mapRect (arg1)); } @@ -545,7 +545,7 @@ static void _call_f_mapRect_c1862 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QMatrix *)cls)->mapRect (arg1)); } @@ -564,7 +564,7 @@ static void _call_f_mapToPolygon_c1792 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QMatrix *)cls)->mapToPolygon (arg1)); } @@ -583,7 +583,7 @@ static void _call_f_operator_excl__eq__c2023 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMatrix *)cls)->operator!= (arg1)); } @@ -602,7 +602,7 @@ static void _call_f_operator_star__c2023 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix)((QMatrix *)cls)->operator* (arg1)); } @@ -621,7 +621,7 @@ static void _call_f_operator_star__eq__2023 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix &)((QMatrix *)cls)->operator*= (arg1)); } @@ -640,7 +640,7 @@ static void _call_f_operator_eq__2023 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix &)((QMatrix *)cls)->operator= (arg1)); } @@ -659,7 +659,7 @@ static void _call_f_operator_eq__eq__c2023 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMatrix *)cls)->operator== (arg1)); } @@ -694,7 +694,7 @@ static void _call_f_rotate_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix &)((QMatrix *)cls)->rotate (arg1)); } @@ -715,8 +715,8 @@ static void _call_f_scale_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QMatrix &)((QMatrix *)cls)->scale (arg1, arg2)); } @@ -745,12 +745,12 @@ static void _call_f_setMatrix_5886 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix *)cls)->setMatrix (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -772,8 +772,8 @@ static void _call_f_shear_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QMatrix &)((QMatrix *)cls)->shear (arg1, arg2)); } @@ -794,8 +794,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QMatrix &)((QMatrix *)cls)->translate (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMatrix4x4.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMatrix4x4.cc index 2a4d05ef1..e8472d836 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMatrix4x4.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMatrix4x4.cc @@ -74,7 +74,7 @@ static void _call_ctor_QMatrix4x4_1952 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const double *arg1 = args.read (heap); + const double *arg1 = gsi::arg_reader() (args, heap); ret.write (new QMatrix4x4 (arg1)); } @@ -123,22 +123,22 @@ static void _call_ctor_QMatrix4x4_15516 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); - double arg7 = args.read (heap); - double arg8 = args.read (heap); - double arg9 = args.read (heap); - double arg10 = args.read (heap); - double arg11 = args.read (heap); - double arg12 = args.read (heap); - double arg13 = args.read (heap); - double arg14 = args.read (heap); - double arg15 = args.read (heap); - double arg16 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); + double arg7 = gsi::arg_reader() (args, heap); + double arg8 = gsi::arg_reader() (args, heap); + double arg9 = gsi::arg_reader() (args, heap); + double arg10 = gsi::arg_reader() (args, heap); + double arg11 = gsi::arg_reader() (args, heap); + double arg12 = gsi::arg_reader() (args, heap); + double arg13 = gsi::arg_reader() (args, heap); + double arg14 = gsi::arg_reader() (args, heap); + double arg15 = gsi::arg_reader() (args, heap); + double arg16 = gsi::arg_reader() (args, heap); ret.write (new QMatrix4x4 (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16)); } @@ -161,9 +161,9 @@ static void _call_ctor_QMatrix4x4_3270 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const double *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const double *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write (new QMatrix4x4 (arg1, arg2, arg3)); } @@ -182,7 +182,7 @@ static void _call_ctor_QMatrix4x4_2350 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMatrix4x4 (arg1)); } @@ -201,7 +201,7 @@ static void _call_ctor_QMatrix4x4_2023 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMatrix4x4 (arg1)); } @@ -220,7 +220,7 @@ static void _call_f_column_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D)((QMatrix4x4 *)cls)->column (arg1)); } @@ -254,7 +254,7 @@ static void _call_f_copyDataTo_c1257 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->copyDataTo (arg1); } @@ -319,7 +319,7 @@ static void _call_f_fill_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->fill (arg1); } @@ -365,12 +365,12 @@ static void _call_f_frustum_5886 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->frustum (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -390,7 +390,7 @@ static void _call_f_inverted_c1050 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args ? args.read (heap) : (bool *)(0); + bool *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QMatrix4x4)((QMatrix4x4 *)cls)->inverted (arg1)); } @@ -428,9 +428,9 @@ static void _call_f_lookAt_6204 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); - const QVector3D &arg3 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); + const QVector3D &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->lookAt (arg1, arg2, arg3); } @@ -450,7 +450,7 @@ static void _call_f_map_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QMatrix4x4 *)cls)->map (arg1)); } @@ -469,7 +469,7 @@ static void _call_f_map_c1986 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QMatrix4x4 *)cls)->map (arg1)); } @@ -488,7 +488,7 @@ static void _call_f_map_c2140 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D)((QMatrix4x4 *)cls)->map (arg1)); } @@ -507,7 +507,7 @@ static void _call_f_map_c2141 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D)((QMatrix4x4 *)cls)->map (arg1)); } @@ -526,7 +526,7 @@ static void _call_f_mapRect_c1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QMatrix4x4 *)cls)->mapRect (arg1)); } @@ -545,7 +545,7 @@ static void _call_f_mapRect_c1862 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QMatrix4x4 *)cls)->mapRect (arg1)); } @@ -564,7 +564,7 @@ static void _call_f_mapVector_c2140 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D)((QMatrix4x4 *)cls)->mapVector (arg1)); } @@ -583,7 +583,7 @@ static void _call_f_operator_excl__eq__c2247 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix4x4 &arg1 = args.read (heap); + const QMatrix4x4 &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMatrix4x4 *)cls)->operator!= (arg1)); } @@ -604,8 +604,8 @@ static void _call_f_operator_func__c1426 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((const double &)((QMatrix4x4 *)cls)->operator() (arg1, arg2)); } @@ -626,8 +626,8 @@ static void _call_f_operator_func__1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((double &)((QMatrix4x4 *)cls)->operator() (arg1, arg2)); } @@ -646,7 +646,7 @@ static void _call_f_operator_star__eq__2247 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix4x4 &arg1 = args.read (heap); + const QMatrix4x4 &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix4x4 &)((QMatrix4x4 *)cls)->operator*= (arg1)); } @@ -665,7 +665,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix4x4 &)((QMatrix4x4 *)cls)->operator*= (arg1)); } @@ -684,7 +684,7 @@ static void _call_f_operator_plus__eq__2247 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix4x4 &arg1 = args.read (heap); + const QMatrix4x4 &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix4x4 &)((QMatrix4x4 *)cls)->operator+= (arg1)); } @@ -703,7 +703,7 @@ static void _call_f_operator_minus__eq__2247 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix4x4 &arg1 = args.read (heap); + const QMatrix4x4 &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix4x4 &)((QMatrix4x4 *)cls)->operator-= (arg1)); } @@ -722,7 +722,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix4x4 &)((QMatrix4x4 *)cls)->operator/= (arg1)); } @@ -741,7 +741,7 @@ static void _call_f_operator_eq__eq__c2247 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix4x4 &arg1 = args.read (heap); + const QMatrix4x4 &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMatrix4x4 *)cls)->operator== (arg1)); } @@ -776,7 +776,7 @@ static void _call_f_ortho_1792 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->ortho (arg1); } @@ -796,7 +796,7 @@ static void _call_f_ortho_1862 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->ortho (arg1); } @@ -826,12 +826,12 @@ static void _call_f_ortho_5886 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->ortho (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -857,10 +857,10 @@ static void _call_f_perspective_3960 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->perspective (arg1, arg2, arg3, arg4); } @@ -882,8 +882,8 @@ static void _call_f_rotate_3103 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->rotate (arg1, arg2); } @@ -909,10 +909,10 @@ static void _call_f_rotate_3960 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args ? args.read (heap) : (double)(0.0f); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0.0f, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->rotate (arg1, arg2, arg3, arg4); } @@ -932,7 +932,7 @@ static void _call_f_rotate_2456 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QQuaternion &arg1 = args.read (heap); + const QQuaternion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->rotate (arg1); } @@ -952,7 +952,7 @@ static void _call_f_row_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D)((QMatrix4x4 *)cls)->row (arg1)); } @@ -971,7 +971,7 @@ static void _call_f_scale_2140 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->scale (arg1); } @@ -993,8 +993,8 @@ static void _call_f_scale_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->scale (arg1, arg2); } @@ -1018,9 +1018,9 @@ static void _call_f_scale_2997 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->scale (arg1, arg2, arg3); } @@ -1040,7 +1040,7 @@ static void _call_f_scale_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->scale (arg1); } @@ -1062,8 +1062,8 @@ static void _call_f_setColumn_2800 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVector4D &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVector4D &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->setColumn (arg1, arg2); } @@ -1085,8 +1085,8 @@ static void _call_f_setRow_2800 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVector4D &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVector4D &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->setRow (arg1, arg2); } @@ -1152,7 +1152,7 @@ static void _call_f_toTransform_c1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform)((QMatrix4x4 *)cls)->toTransform (arg1)); } @@ -1171,7 +1171,7 @@ static void _call_f_translate_2140 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->translate (arg1); } @@ -1193,8 +1193,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->translate (arg1, arg2); } @@ -1218,9 +1218,9 @@ static void _call_f_translate_2997 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->translate (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMdiArea.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMdiArea.cc index e2a3d7bc3..dec3abd3d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMdiArea.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMdiArea.cc @@ -178,8 +178,8 @@ static void _call_f_addSubWindow_3702 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QMdiSubWindow *)((QMdiArea *)cls)->addSubWindow (arg1, arg2)); } @@ -306,7 +306,7 @@ static void _call_f_removeSubWindow_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->removeSubWindow (arg1); } @@ -326,7 +326,7 @@ static void _call_f_setActivationOrder_2432 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setActivationOrder (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -346,7 +346,7 @@ static void _call_f_setActiveSubWindow_1915 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMdiSubWindow *arg1 = args.read (heap); + QMdiSubWindow *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setActiveSubWindow (arg1); } @@ -366,7 +366,7 @@ static void _call_f_setBackground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setBackground (arg1); } @@ -386,7 +386,7 @@ static void _call_f_setDocumentMode_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setDocumentMode (arg1); } @@ -408,8 +408,8 @@ static void _call_f_setOption_3058 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -429,7 +429,7 @@ static void _call_f_setTabPosition_2656 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setTabPosition (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -449,7 +449,7 @@ static void _call_f_setTabShape_2300 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setTabShape (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -469,7 +469,7 @@ static void _call_f_setViewMode_2092 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setViewMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -504,7 +504,7 @@ static void _call_f_subWindowList_c2432 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QMdiArea::CreationOrder)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QMdiArea::CreationOrder), heap); ret.write > ((QList)((QMdiArea *)cls)->subWindowList (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -553,7 +553,7 @@ static void _call_f_testOption_c2302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QMdiArea *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -605,8 +605,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMdiArea::tr (arg1, arg2)); } @@ -629,9 +629,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMdiArea::tr (arg1, arg2, arg3)); } @@ -652,8 +652,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMdiArea::trUtf8 (arg1, arg2)); } @@ -676,9 +676,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMdiArea::trUtf8 (arg1, arg2, arg3)); } @@ -1619,7 +1619,7 @@ static void _call_ctor_QMdiArea_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMdiArea_Adaptor (arg1)); } @@ -1761,9 +1761,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->fp_QMdiArea_create_2208 (arg1, arg2, arg3); } @@ -1782,7 +1782,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QMdiArea_Adaptor *)cls)->emitter_QMdiArea_customContextMenuRequested_1916 (arg1); } @@ -1826,8 +1826,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->fp_QMdiArea_destroy_1620 (arg1, arg2); } @@ -1846,7 +1846,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMdiArea_Adaptor *)cls)->emitter_QMdiArea_destroyed_1302 (arg1); } @@ -1960,7 +1960,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->fp_QMdiArea_drawFrame_1426 (arg1); } @@ -2638,7 +2638,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMdiArea_Adaptor *)cls)->fp_QMdiArea_receivers_c1731 (arg1)); } @@ -2742,10 +2742,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->fp_QMdiArea_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -2764,7 +2764,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->fp_QMdiArea_setViewportMargins_2115 (arg1); } @@ -2807,7 +2807,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->fp_QMdiArea_setupViewport_1315 (arg1); } @@ -2893,7 +2893,7 @@ static void _call_emitter_subWindowActivated_1915 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMdiSubWindow *arg1 = args.read (heap); + QMdiSubWindow *arg1 = gsi::arg_reader() (args, heap); ((QMdiArea_Adaptor *)cls)->emitter_QMdiArea_subWindowActivated_1915 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMdiSubWindow.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMdiSubWindow.cc index d8e077c42..4cd128d19 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMdiSubWindow.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMdiSubWindow.cc @@ -218,7 +218,7 @@ static void _call_f_setKeyboardPageStep_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow *)cls)->setKeyboardPageStep (arg1); } @@ -238,7 +238,7 @@ static void _call_f_setKeyboardSingleStep_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow *)cls)->setKeyboardSingleStep (arg1); } @@ -260,8 +260,8 @@ static void _call_f_setOption_4164 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -281,7 +281,7 @@ static void _call_f_setSystemMenu_1108 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenu *arg1 = args.read (heap); + QMenu *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow *)cls)->setSystemMenu (arg1); } @@ -301,7 +301,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow *)cls)->setWidget (arg1); } @@ -383,7 +383,7 @@ static void _call_f_testOption_c3408 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QMdiSubWindow *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -419,8 +419,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMdiSubWindow::tr (arg1, arg2)); } @@ -443,9 +443,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMdiSubWindow::tr (arg1, arg2, arg3)); } @@ -466,8 +466,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMdiSubWindow::trUtf8 (arg1, arg2)); } @@ -490,9 +490,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMdiSubWindow::trUtf8 (arg1, arg2, arg3)); } @@ -1386,8 +1386,8 @@ static void _call_ctor_QMdiSubWindow_Adaptor_3702 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QMdiSubWindow_Adaptor (arg1, arg2)); } @@ -1543,9 +1543,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->fp_QMdiSubWindow_create_2208 (arg1, arg2, arg3); } @@ -1564,7 +1564,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QMdiSubWindow_Adaptor *)cls)->emitter_QMdiSubWindow_customContextMenuRequested_1916 (arg1); } @@ -1608,8 +1608,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->fp_QMdiSubWindow_destroy_1620 (arg1, arg2); } @@ -1628,7 +1628,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMdiSubWindow_Adaptor *)cls)->emitter_QMdiSubWindow_destroyed_1302 (arg1); } @@ -2401,7 +2401,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMdiSubWindow_Adaptor *)cls)->fp_QMdiSubWindow_receivers_c1731 (arg1)); } @@ -2676,8 +2676,8 @@ static void _call_emitter_windowStateChanged_5072 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - QFlags arg2 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ((QMdiSubWindow_Adaptor *)cls)->emitter_QMdiSubWindow_windowStateChanged_5072 (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMenu.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMenu.cc index aa19eaf7c..997e2055e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMenu.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMenu.cc @@ -112,7 +112,7 @@ static void _call_f_actionAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->actionAt (arg1)); } @@ -131,7 +131,7 @@ static void _call_f_actionGeometry_c1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QMenu *)cls)->actionGeometry (arg1)); } @@ -165,7 +165,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->addAction (arg1); } @@ -185,7 +185,7 @@ static void _call_f_addAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->addAction (arg1)); } @@ -206,8 +206,8 @@ static void _call_f_addAction_3704 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->addAction (arg1, arg2)); } @@ -232,10 +232,10 @@ static void _call_f_addAction_7945 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QObject *arg2 = args.read (heap); - const char *arg3 = args.read (heap); - const QKeySequence &arg4 = args ? args.read (heap) : (const QKeySequence &)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QObject *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); + const QKeySequence &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QAction *)((QMenu *)cls)->addAction (arg1, arg2, arg3, arg4)); } @@ -262,11 +262,11 @@ static void _call_f_addAction_9624 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - const char *arg4 = args.read (heap); - const QKeySequence &arg5 = args ? args.read (heap) : (const QKeySequence &)(0); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + const char *arg4 = gsi::arg_reader() (args, heap); + const QKeySequence &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QAction *)((QMenu *)cls)->addAction (arg1, arg2, arg3, arg4, arg5)); } @@ -285,7 +285,7 @@ static void _call_f_addMenu_1108 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenu *arg1 = args.read (heap); + QMenu *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->addMenu (arg1)); } @@ -304,7 +304,7 @@ static void _call_f_addMenu_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMenu *)((QMenu *)cls)->addMenu (arg1)); } @@ -325,8 +325,8 @@ static void _call_f_addMenu_3704 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QMenu *)((QMenu *)cls)->addMenu (arg1, arg2)); } @@ -408,8 +408,8 @@ static void _call_f_exec_3117 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - QAction *arg2 = args ? args.read (heap) : (QAction *)(0); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + QAction *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QAction *)((QMenu *)cls)->exec (arg1, arg2)); } @@ -461,8 +461,8 @@ static void _call_f_insertMenu_2309 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - QMenu *arg2 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + QMenu *arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->insertMenu (arg1, arg2)); } @@ -481,7 +481,7 @@ static void _call_f_insertSeparator_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->insertSeparator (arg1)); } @@ -562,8 +562,8 @@ static void _call_f_popup_3117 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - QAction *arg2 = args ? args.read (heap) : (QAction *)(0); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + QAction *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->popup (arg1, arg2); } @@ -598,7 +598,7 @@ static void _call_f_setActiveAction_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->setActiveAction (arg1); } @@ -618,7 +618,7 @@ static void _call_f_setDefaultAction_1309 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->setDefaultAction (arg1); } @@ -638,7 +638,7 @@ static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->setIcon (arg1); } @@ -658,7 +658,7 @@ static void _call_f_setNoReplayFor_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->setNoReplayFor (arg1); } @@ -678,7 +678,7 @@ static void _call_f_setSeparatorsCollapsible_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->setSeparatorsCollapsible (arg1); } @@ -698,7 +698,7 @@ static void _call_f_setTearOffEnabled_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->setTearOffEnabled (arg1); } @@ -718,7 +718,7 @@ static void _call_f_setTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->setTitle (arg1); } @@ -772,9 +772,9 @@ static void _call_f_exec_4789 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QList arg1 = args.read > (heap); - const QPoint &arg2 = args.read (heap); - QAction *arg3 = args ? args.read (heap) : (QAction *)(0); + QList arg1 = gsi::arg_reader >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); + QAction *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QAction *)QMenu::exec (arg1, arg2, arg3)); } @@ -799,10 +799,10 @@ static void _call_f_exec_5996 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QList arg1 = args.read > (heap); - const QPoint &arg2 = args.read (heap); - QAction *arg3 = args.read (heap); - QWidget *arg4 = args.read (heap); + QList arg1 = gsi::arg_reader >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); + QAction *arg3 = gsi::arg_reader() (args, heap); + QWidget *arg4 = gsi::arg_reader() (args, heap); ret.write ((QAction *)QMenu::exec (arg1, arg2, arg3, arg4)); } @@ -823,8 +823,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMenu::tr (arg1, arg2)); } @@ -847,9 +847,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMenu::tr (arg1, arg2, arg3)); } @@ -870,8 +870,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMenu::trUtf8 (arg1, arg2)); } @@ -894,9 +894,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMenu::trUtf8 (arg1, arg2, arg3)); } @@ -1837,7 +1837,7 @@ static void _call_ctor_QMenu_Adaptor_1315 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMenu_Adaptor (arg1)); } @@ -1857,8 +1857,8 @@ static void _call_ctor_QMenu_Adaptor_3232 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMenu_Adaptor (arg1, arg2)); } @@ -2042,9 +2042,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->fp_QMenu_create_2208 (arg1, arg2, arg3); } @@ -2063,7 +2063,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QMenu_Adaptor *)cls)->emitter_QMenu_customContextMenuRequested_1916 (arg1); } @@ -2107,8 +2107,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->fp_QMenu_destroy_1620 (arg1, arg2); } @@ -2127,7 +2127,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMenu_Adaptor *)cls)->emitter_QMenu_destroyed_1302 (arg1); } @@ -2532,7 +2532,7 @@ static void _call_emitter_hovered_1309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QMenu_Adaptor *)cls)->emitter_QMenu_hovered_1309 (arg1); } @@ -2552,8 +2552,8 @@ static void _call_fp_initStyleOption_c4565 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionMenuItem *arg1 = args.read (heap); - const QAction *arg2 = args.read (heap); + QStyleOptionMenuItem *arg1 = gsi::arg_reader() (args, heap); + const QAction *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->fp_QMenu_initStyleOption_c4565 (arg1, arg2); } @@ -2940,7 +2940,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMenu_Adaptor *)cls)->fp_QMenu_receivers_c1731 (arg1)); } @@ -3150,7 +3150,7 @@ static void _call_emitter_triggered_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QMenu_Adaptor *)cls)->emitter_QMenu_triggered_1309 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMenuBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMenuBar.cc index 6a7093afe..59243227e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMenuBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMenuBar.cc @@ -113,7 +113,7 @@ static void _call_f_actionAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenuBar *)cls)->actionAt (arg1)); } @@ -132,7 +132,7 @@ static void _call_f_actionGeometry_c1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QMenuBar *)cls)->actionGeometry (arg1)); } @@ -166,7 +166,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar *)cls)->addAction (arg1); } @@ -186,7 +186,7 @@ static void _call_f_addAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenuBar *)cls)->addAction (arg1)); } @@ -209,9 +209,9 @@ static void _call_f_addAction_5537 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QObject *arg2 = args.read (heap); - const char *arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QObject *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenuBar *)cls)->addAction (arg1, arg2, arg3)); } @@ -230,7 +230,7 @@ static void _call_f_addMenu_1108 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenu *arg1 = args.read (heap); + QMenu *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenuBar *)cls)->addMenu (arg1)); } @@ -249,7 +249,7 @@ static void _call_f_addMenu_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMenu *)((QMenuBar *)cls)->addMenu (arg1)); } @@ -270,8 +270,8 @@ static void _call_f_addMenu_3704 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QMenu *)((QMenuBar *)cls)->addMenu (arg1, arg2)); } @@ -321,7 +321,7 @@ static void _call_f_cornerWidget_c1366 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner), heap); ret.write ((QWidget *)((QMenuBar *)cls)->cornerWidget (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -340,7 +340,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMenuBar *)cls)->heightForWidth (arg1)); } @@ -361,8 +361,8 @@ static void _call_f_insertMenu_2309 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - QMenu *arg2 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + QMenu *arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenuBar *)cls)->insertMenu (arg1, arg2)); } @@ -381,7 +381,7 @@ static void _call_f_insertSeparator_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenuBar *)cls)->insertSeparator (arg1)); } @@ -445,7 +445,7 @@ static void _call_f_setActiveAction_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar *)cls)->setActiveAction (arg1); } @@ -467,8 +467,8 @@ static void _call_f_setCornerWidget_2573 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar *)cls)->setCornerWidget (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -488,7 +488,7 @@ static void _call_f_setDefaultUp_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar *)cls)->setDefaultUp (arg1); } @@ -508,7 +508,7 @@ static void _call_f_setNativeMenuBar_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar *)cls)->setNativeMenuBar (arg1); } @@ -528,7 +528,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar *)cls)->setVisible (arg1); } @@ -565,8 +565,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMenuBar::tr (arg1, arg2)); } @@ -589,9 +589,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMenuBar::tr (arg1, arg2, arg3)); } @@ -612,8 +612,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMenuBar::trUtf8 (arg1, arg2)); } @@ -636,9 +636,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMenuBar::trUtf8 (arg1, arg2, arg3)); } @@ -1535,7 +1535,7 @@ static void _call_ctor_QMenuBar_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMenuBar_Adaptor (arg1)); } @@ -1677,9 +1677,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->fp_QMenuBar_create_2208 (arg1, arg2, arg3); } @@ -1698,7 +1698,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QMenuBar_Adaptor *)cls)->emitter_QMenuBar_customContextMenuRequested_1916 (arg1); } @@ -1742,8 +1742,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->fp_QMenuBar_destroy_1620 (arg1, arg2); } @@ -1762,7 +1762,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMenuBar_Adaptor *)cls)->emitter_QMenuBar_destroyed_1302 (arg1); } @@ -2167,7 +2167,7 @@ static void _call_emitter_hovered_1309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QMenuBar_Adaptor *)cls)->emitter_QMenuBar_hovered_1309 (arg1); } @@ -2187,8 +2187,8 @@ static void _call_fp_initStyleOption_c4565 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionMenuItem *arg1 = args.read (heap); - const QAction *arg2 = args.read (heap); + QStyleOptionMenuItem *arg1 = gsi::arg_reader() (args, heap); + const QAction *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->fp_QMenuBar_initStyleOption_c4565 (arg1, arg2); } @@ -2575,7 +2575,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMenuBar_Adaptor *)cls)->fp_QMenuBar_receivers_c1731 (arg1)); } @@ -2785,7 +2785,7 @@ static void _call_emitter_triggered_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QMenuBar_Adaptor *)cls)->emitter_QMenuBar_triggered_1309 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMessageBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMessageBox.cc index 99c8b47fa..a46f555fe 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMessageBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMessageBox.cc @@ -116,8 +116,8 @@ static void _call_f_addButton_4728 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->addButton (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -139,8 +139,8 @@ static void _call_f_addButton_4594 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPushButton *)((QMessageBox *)cls)->addButton (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -159,7 +159,7 @@ static void _call_f_addButton_3092 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPushButton *)((QMessageBox *)cls)->addButton (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -178,7 +178,7 @@ static void _call_f_button_c3092 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QAbstractButton *)((QMessageBox *)cls)->button (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -197,7 +197,7 @@ static void _call_f_buttonRole_c2159 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QMessageBox *)cls)->buttonRole (arg1))); } @@ -216,7 +216,7 @@ static void _call_f_buttonText_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QMessageBox *)cls)->buttonText (arg1)); } @@ -373,8 +373,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->open (arg1, arg2); } @@ -394,7 +394,7 @@ static void _call_f_removeButton_2159 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->removeButton (arg1); } @@ -416,8 +416,8 @@ static void _call_f_setButtonText_2684 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setButtonText (arg1, arg2); } @@ -437,7 +437,7 @@ static void _call_f_setDefaultButton_1755 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPushButton *arg1 = args.read (heap); + QPushButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setDefaultButton (arg1); } @@ -457,7 +457,7 @@ static void _call_f_setDefaultButton_3092 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setDefaultButton (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -477,7 +477,7 @@ static void _call_f_setDetailedText_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setDetailedText (arg1); } @@ -497,7 +497,7 @@ static void _call_f_setEscapeButton_2159 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setEscapeButton (arg1); } @@ -517,7 +517,7 @@ static void _call_f_setEscapeButton_3092 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setEscapeButton (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -537,7 +537,7 @@ static void _call_f_setIcon_2032 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setIcon (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -557,7 +557,7 @@ static void _call_f_setIconPixmap_2017 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setIconPixmap (arg1); } @@ -577,7 +577,7 @@ static void _call_f_setInformativeText_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setInformativeText (arg1); } @@ -597,7 +597,7 @@ static void _call_f_setStandardButtons_3788 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setStandardButtons (arg1); } @@ -617,7 +617,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setText (arg1); } @@ -637,7 +637,7 @@ static void _call_f_setTextFormat_1787 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setTextFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -657,7 +657,7 @@ static void _call_f_setWindowModality_2216 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setWindowModality (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -677,7 +677,7 @@ static void _call_f_setWindowTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setWindowTitle (arg1); } @@ -712,7 +712,7 @@ static void _call_f_standardButton_c2159 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QMessageBox *)cls)->standardButton (arg1))); } @@ -780,9 +780,9 @@ static void _call_f_about_5149 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QMessageBox::about (arg1, arg2, arg3); } @@ -804,8 +804,8 @@ static void _call_f_aboutQt_3232 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); __SUPPRESS_UNUSED_WARNING(ret); QMessageBox::aboutQt (arg1, arg2); } @@ -833,11 +833,11 @@ static void _call_f_critical_11813 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QMessageBox::Ok); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QMessageBox::Ok, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton), heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QMessageBox::critical (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()))); } @@ -864,11 +864,11 @@ static void _call_f_information_11813 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QMessageBox::Ok); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QMessageBox::Ok, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton), heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QMessageBox::information (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()))); } @@ -895,11 +895,11 @@ static void _call_f_question_11813 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QMessageBox::Ok); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QMessageBox::Ok, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton), heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QMessageBox::question (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()))); } @@ -920,8 +920,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMessageBox::tr (arg1, arg2)); } @@ -944,9 +944,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMessageBox::tr (arg1, arg2, arg3)); } @@ -967,8 +967,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMessageBox::trUtf8 (arg1, arg2)); } @@ -991,9 +991,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMessageBox::trUtf8 (arg1, arg2, arg3)); } @@ -1020,11 +1020,11 @@ static void _call_f_warning_11813 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QMessageBox::Ok); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QMessageBox::Ok, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton), heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QMessageBox::warning (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()))); } @@ -2043,7 +2043,7 @@ static void _call_ctor_QMessageBox_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMessageBox_Adaptor (arg1)); } @@ -2071,12 +2071,12 @@ static void _call_ctor_QMessageBox_Adaptor_13140 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QMessageBox::NoButton); - QWidget *arg5 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QMessageBox::NoButton, heap); + QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint, heap); ret.write (new QMessageBox_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5, arg6)); } @@ -2108,14 +2108,14 @@ static void _call_ctor_QMessageBox_Adaptor_11437 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - int arg6 = args.read (heap); - QWidget *arg7 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg8 = args ? args.read > (heap) : (QFlags)(Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); + QWidget *arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg8 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint, heap); ret.write (new QMessageBox_Adaptor (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4, arg5, arg6, arg7, arg8)); } @@ -2191,7 +2191,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->fp_QMessageBox_adjustPosition_1315 (arg1); } @@ -2210,7 +2210,7 @@ static void _call_emitter_buttonClicked_2159 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ((QMessageBox_Adaptor *)cls)->emitter_QMessageBox_buttonClicked_2159 (arg1); } @@ -2328,9 +2328,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->fp_QMessageBox_create_2208 (arg1, arg2, arg3); } @@ -2349,7 +2349,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QMessageBox_Adaptor *)cls)->emitter_QMessageBox_customContextMenuRequested_1916 (arg1); } @@ -2393,8 +2393,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->fp_QMessageBox_destroy_1620 (arg1, arg2); } @@ -2413,7 +2413,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMessageBox_Adaptor *)cls)->emitter_QMessageBox_destroyed_1302 (arg1); } @@ -2672,7 +2672,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QMessageBox_Adaptor *)cls)->emitter_QMessageBox_finished_767 (arg1); } @@ -3228,7 +3228,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMessageBox_Adaptor *)cls)->fp_QMessageBox_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMimeSource.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMimeSource.cc index a2a20d01e..2234adede 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMimeSource.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMimeSource.cc @@ -50,7 +50,7 @@ static void _call_f_encodedData_c1731 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QMimeSource *)cls)->encodedData (arg1)); } @@ -69,7 +69,7 @@ static void _call_f_format_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((const char *)((QMimeSource *)cls)->format (arg1)); } @@ -88,7 +88,7 @@ static void _call_f_provides_c1731 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeSource *)cls)->provides (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMotifStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMotifStyle.cc index 4ca163c5f..7b5ffdcad 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMotifStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMotifStyle.cc @@ -88,10 +88,10 @@ static void _call_f_drawComplexControl_c9027 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle *)cls)->drawComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -117,10 +117,10 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle *)cls)->drawControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -146,10 +146,10 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle *)cls)->drawPrimitive (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -169,7 +169,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMotifStyle *)cls)->event (arg1)); } @@ -192,9 +192,9 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QMotifStyle *)cls)->pixelMetric (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -213,7 +213,7 @@ static void _call_f_polish_1418 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle *)cls)->polish (arg1); } @@ -233,7 +233,7 @@ static void _call_f_polish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle *)cls)->polish (arg1); } @@ -253,7 +253,7 @@ static void _call_f_polish_1843 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle *)cls)->polish (arg1); } @@ -273,7 +273,7 @@ static void _call_f_setUseHighlightColors_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle *)cls)->setUseHighlightColors (arg1); } @@ -299,10 +299,10 @@ static void _call_f_sizeFromContents_c8477 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QSize)((QMotifStyle *)cls)->sizeFromContents (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -340,9 +340,9 @@ static void _call_f_standardPixmap_c6956 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPixmap)((QMotifStyle *)cls)->standardPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -367,10 +367,10 @@ static void _call_f_styleHint_c8615 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); - QStyleHintReturn *arg4 = args ? args.read (heap) : (QStyleHintReturn *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QMotifStyle *)cls)->styleHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -395,10 +395,10 @@ static void _call_f_subControlRect_c9798 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QMotifStyle *)cls)->subControlRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -421,9 +421,9 @@ static void _call_f_subElementRect_c6528 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QMotifStyle *)cls)->subElementRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -442,7 +442,7 @@ static void _call_f_unpolish_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle *)cls)->unpolish (arg1); } @@ -462,7 +462,7 @@ static void _call_f_unpolish_1843 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMotifStyle *)cls)->unpolish (arg1); } @@ -499,8 +499,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMotifStyle::tr (arg1, arg2)); } @@ -523,9 +523,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMotifStyle::tr (arg1, arg2, arg3)); } @@ -546,8 +546,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMotifStyle::trUtf8 (arg1, arg2)); } @@ -570,9 +570,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMotifStyle::trUtf8 (arg1, arg2, arg3)); } @@ -1113,7 +1113,7 @@ static void _call_ctor_QMotifStyle_Adaptor_864 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write (new QMotifStyle_Adaptor (arg1)); } @@ -1179,7 +1179,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMotifStyle_Adaptor *)cls)->emitter_QMotifStyle_destroyed_1302 (arg1); } @@ -1577,11 +1577,11 @@ static void _call_fp_layoutSpacingImplementation_c11697 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QStyleOption *arg4 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg5 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QMotifStyle_Adaptor *)cls)->fp_QMotifStyle_layoutSpacingImplementation_c11697 (arg1, arg2, arg3, arg4, arg5)); } @@ -1700,7 +1700,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMotifStyle_Adaptor *)cls)->fp_QMotifStyle_receivers_c1731 (arg1)); } @@ -1768,9 +1768,9 @@ static void _call_fp_standardIconImplementation_c6956 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QIcon)((QMotifStyle_Adaptor *)cls)->fp_QMotifStyle_standardIconImplementation_c6956 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMouseEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMouseEvent.cc index 681a08b27..f68cbda86 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMouseEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMouseEvent.cc @@ -212,12 +212,12 @@ static void _call_f_createExtendedMouseEvent_12512 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPointF &arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); - QFlags arg5 = args.read > (heap); - QFlags arg6 = args.read > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg5 = gsi::arg_reader >() (args, heap); + QFlags arg6 = gsi::arg_reader >() (args, heap); ret.write ((QMouseEvent *)QMouseEvent::createExtendedMouseEvent (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref(), arg5, arg6)); } @@ -296,11 +296,11 @@ static void _call_ctor_QMouseEvent_Adaptor_10634 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPoint &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - QFlags arg4 = args.read > (heap); - QFlags arg5 = args.read > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg4 = gsi::arg_reader >() (args, heap); + QFlags arg5 = gsi::arg_reader >() (args, heap); ret.write (new QMouseEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4, arg5)); } @@ -328,12 +328,12 @@ static void _call_ctor_QMouseEvent_Adaptor_12442 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPoint &arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); - QFlags arg5 = args.read > (heap); - QFlags arg6 = args.read > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg5 = gsi::arg_reader >() (args, heap); + QFlags arg6 = gsi::arg_reader >() (args, heap); ret.write (new QMouseEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref(), arg5, arg6)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMoveEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMoveEvent.cc index a366660c8..7b7eaceb4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMoveEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMoveEvent.cc @@ -120,8 +120,8 @@ static void _call_ctor_QMoveEvent_Adaptor_3724 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); ret.write (new QMoveEvent_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQMovie.cc b/src/gsiqt/qt4/QtGui/gsiDeclQMovie.cc index 7441d4514..9e74c0ce1 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQMovie.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQMovie.cc @@ -254,7 +254,7 @@ static void _call_f_jumpToFrame_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMovie *)cls)->jumpToFrame (arg1)); } @@ -333,7 +333,7 @@ static void _call_f_setBackgroundColor_1905 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setBackgroundColor (arg1); } @@ -353,7 +353,7 @@ static void _call_f_setCacheMode_2002 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setCacheMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -373,7 +373,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setDevice (arg1); } @@ -393,7 +393,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setFileName (arg1); } @@ -413,7 +413,7 @@ static void _call_f_setFormat_2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setFormat (arg1); } @@ -433,7 +433,7 @@ static void _call_f_setPaused_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setPaused (arg1); } @@ -453,7 +453,7 @@ static void _call_f_setScaledSize_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setScaledSize (arg1); } @@ -473,7 +473,7 @@ static void _call_f_setSpeed_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setSpeed (arg1); } @@ -572,8 +572,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMovie::tr (arg1, arg2)); } @@ -596,9 +596,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMovie::tr (arg1, arg2, arg3)); } @@ -619,8 +619,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QMovie::trUtf8 (arg1, arg2)); } @@ -643,9 +643,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QMovie::trUtf8 (arg1, arg2, arg3)); } @@ -937,7 +937,7 @@ static void _call_ctor_QMovie_Adaptor_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMovie_Adaptor (arg1)); } @@ -959,9 +959,9 @@ static void _call_ctor_QMovie_Adaptor_4842 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMovie_Adaptor (arg1, arg2, arg3)); } @@ -983,9 +983,9 @@ static void _call_ctor_QMovie_Adaptor_5420 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMovie_Adaptor (arg1, arg2, arg3)); } @@ -1051,7 +1051,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMovie_Adaptor *)cls)->emitter_QMovie_destroyed_1302 (arg1); } @@ -1093,7 +1093,7 @@ static void _call_emitter_error_3311 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMovie_Adaptor *)cls)->emitter_QMovie_error_3311 (arg1); } @@ -1174,7 +1174,7 @@ static void _call_emitter_frameChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QMovie_Adaptor *)cls)->emitter_QMovie_frameChanged_767 (arg1); } @@ -1192,7 +1192,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMovie_Adaptor *)cls)->fp_QMovie_receivers_c1731 (arg1)); } @@ -1210,7 +1210,7 @@ static void _call_emitter_resized_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QMovie_Adaptor *)cls)->emitter_QMovie_resized_1805 (arg1); } @@ -1256,7 +1256,7 @@ static void _call_emitter_stateChanged_2170 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMovie_Adaptor *)cls)->emitter_QMovie_stateChanged_2170 (arg1); } @@ -1298,7 +1298,7 @@ static void _call_emitter_updated_1792 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ((QMovie_Adaptor *)cls)->emitter_QMovie_updated_1792 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPageSetupDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPageSetupDialog.cc index 79f89bf39..9d85134b5 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPageSetupDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPageSetupDialog.cc @@ -66,7 +66,7 @@ static void _call_f_addEnabledOption_4270 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPageSetupDialog *)cls)->addEnabledOption (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -116,7 +116,7 @@ static void _call_f_isOptionEnabled_c4270 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPageSetupDialog *)cls)->isOptionEnabled (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -153,8 +153,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPageSetupDialog *)cls)->open (arg1, arg2); } @@ -189,7 +189,7 @@ static void _call_f_setEnabledOptions_4966 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPageSetupDialog *)cls)->setEnabledOptions (arg1); } @@ -211,8 +211,8 @@ static void _call_f_setOption_5026 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPageSetupDialog *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -232,7 +232,7 @@ static void _call_f_setOptions_4966 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPageSetupDialog *)cls)->setOptions (arg1); } @@ -252,7 +252,7 @@ static void _call_f_testOption_c4270 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPageSetupDialog *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -273,8 +273,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPageSetupDialog::tr (arg1, arg2)); } @@ -297,9 +297,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPageSetupDialog::tr (arg1, arg2, arg3)); } @@ -320,8 +320,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPageSetupDialog::trUtf8 (arg1, arg2)); } @@ -344,9 +344,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPageSetupDialog::trUtf8 (arg1, arg2, arg3)); } @@ -449,8 +449,8 @@ static void _call_ctor_QPageSetupDialog_Adaptor_2650 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QPrinter *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPageSetupDialog_Adaptor (arg1, arg2)); } @@ -468,7 +468,7 @@ static void _call_ctor_QPageSetupDialog_Adaptor_1315 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPageSetupDialog_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPaintEngine.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPaintEngine.cc index 8018fae4a..6e166b98d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPaintEngine.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPaintEngine.cc @@ -62,7 +62,7 @@ static void _call_f_begin_1803 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPaintEngine *)cls)->begin (arg1)); } @@ -81,7 +81,7 @@ static void _call_f_clearDirty_3337 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->clearDirty (arg1); } @@ -116,7 +116,7 @@ static void _call_f_drawEllipse_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->drawEllipse (arg1); } @@ -136,7 +136,7 @@ static void _call_f_drawEllipse_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->drawEllipse (arg1); } @@ -162,10 +162,10 @@ static void _call_f_drawImage_8645 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->drawImage (arg1, arg2, arg3, arg4); } @@ -185,7 +185,7 @@ static void _call_f_drawPath_2514 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->drawPath (arg1); } @@ -209,9 +209,9 @@ static void _call_f_drawPixmap_5525 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->drawPixmap (arg1, arg2, arg3); } @@ -233,8 +233,8 @@ static void _call_f_drawTextItem_4092 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QTextItem &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QTextItem &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->drawTextItem (arg1, arg2); } @@ -258,9 +258,9 @@ static void _call_f_drawTiledPixmap_5649 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->drawTiledPixmap (arg1, arg2, arg3); } @@ -295,7 +295,7 @@ static void _call_f_hasFeature_c4257 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QPaintEngine *)cls)->hasFeature (arg1)); } @@ -374,7 +374,7 @@ static void _call_f_setActive_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->setActive (arg1); } @@ -394,7 +394,7 @@ static void _call_f_setDirty_3337 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->setDirty (arg1); } @@ -414,7 +414,7 @@ static void _call_f_setPaintDevice_1803 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->setPaintDevice (arg1); } @@ -434,7 +434,7 @@ static void _call_f_setSystemClip_2006 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->setSystemClip (arg1); } @@ -454,7 +454,7 @@ static void _call_f_setSystemRect_1792 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->setSystemRect (arg1); } @@ -520,7 +520,7 @@ static void _call_f_testDirty_3337 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QPaintEngine *)cls)->testDirty (arg1)); } @@ -554,7 +554,7 @@ static void _call_f_updateState_3013 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPaintEngineState &arg1 = args.read (heap); + const QPaintEngineState &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->updateState (arg1); } @@ -836,7 +836,7 @@ static void _call_ctor_QPaintEngine_Adaptor_4257 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(0); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QPaintEngine_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPaintEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPaintEvent.cc index 6239b1d0d..43fd60ef3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPaintEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPaintEvent.cc @@ -125,7 +125,7 @@ static void _call_ctor_QPaintEvent_Adaptor_2006 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPaintEvent_Adaptor (arg1)); } @@ -143,7 +143,7 @@ static void _call_ctor_QPaintEvent_Adaptor_1792 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPaintEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPainter.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPainter.cc index 068277e6a..f88c39ecf 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPainter.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPainter.cc @@ -91,7 +91,7 @@ static void _call_ctor_QPainter_1803 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); ret.write (new QPainter (arg1)); } @@ -140,7 +140,7 @@ static void _call_f_begin_1803 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainter *)cls)->begin (arg1)); } @@ -179,9 +179,9 @@ static void _call_f_boundingRect_4438 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPainter *)cls)->boundingRect (arg1, arg2, arg3)); } @@ -204,9 +204,9 @@ static void _call_f_boundingRect_4368 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QPainter *)cls)->boundingRect (arg1, arg2, arg3)); } @@ -235,12 +235,12 @@ static void _call_f_boundingRect_5320 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - const QString &arg6 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QPainter *)cls)->boundingRect (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -263,9 +263,9 @@ static void _call_f_boundingRect_6119 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QTextOption &arg3 = args ? args.read (heap) : (const QTextOption &)(QTextOption()); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QTextOption &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTextOption(), heap); ret.write ((QRectF)((QPainter *)cls)->boundingRect (arg1, arg2, arg3)); } @@ -438,9 +438,9 @@ static void _call_f_drawArc_3180 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawArc (arg1, arg2, arg3); } @@ -464,9 +464,9 @@ static void _call_f_drawArc_3110 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawArc (arg1, arg2, arg3); } @@ -496,12 +496,12 @@ static void _call_f_drawArc_4062 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - int arg6 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawArc (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -525,9 +525,9 @@ static void _call_f_drawChord_3180 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawChord (arg1, arg2, arg3); } @@ -557,12 +557,12 @@ static void _call_f_drawChord_4062 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - int arg6 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawChord (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -586,9 +586,9 @@ static void _call_f_drawChord_3110 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawChord (arg1, arg2, arg3); } @@ -608,7 +608,7 @@ static void _call_f_drawConvexPolygon_2208 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawConvexPolygon (arg1); } @@ -628,7 +628,7 @@ static void _call_f_drawConvexPolygon_2138 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawConvexPolygon (arg1); } @@ -648,7 +648,7 @@ static void _call_f_drawEllipse_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawEllipse (arg1); } @@ -668,7 +668,7 @@ static void _call_f_drawEllipse_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawEllipse (arg1); } @@ -694,10 +694,10 @@ static void _call_f_drawEllipse_2744 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawEllipse (arg1, arg2, arg3, arg4); } @@ -721,9 +721,9 @@ static void _call_f_drawEllipse_3912 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawEllipse (arg1, arg2, arg3); } @@ -747,9 +747,9 @@ static void _call_f_drawEllipse_3234 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawEllipse (arg1, arg2, arg3); } @@ -775,10 +775,10 @@ static void _call_f_drawImage_8645 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2, arg3, arg4); } @@ -804,10 +804,10 @@ static void _call_f_drawImage_8505 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2, arg3, arg4); } @@ -833,10 +833,10 @@ static void _call_f_drawImage_8769 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2, arg3, arg4); } @@ -862,10 +862,10 @@ static void _call_f_drawImage_8629 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2, arg3, arg4); } @@ -887,8 +887,8 @@ static void _call_f_drawImage_3631 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2); } @@ -910,8 +910,8 @@ static void _call_f_drawImage_3561 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2); } @@ -933,8 +933,8 @@ static void _call_f_drawImage_3755 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2); } @@ -956,8 +956,8 @@ static void _call_f_drawImage_3685 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2); } @@ -991,14 +991,14 @@ static void _call_f_drawImage_9091 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QImage &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); - int arg5 = args ? args.read (heap) : (int)(0); - int arg6 = args ? args.read (heap) : (int)(-1); - int arg7 = args ? args.read (heap) : (int)(-1); - QFlags arg8 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QImage &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + QFlags arg8 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); } @@ -1018,7 +1018,7 @@ static void _call_f_drawLine_1856 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLine (arg1); } @@ -1038,7 +1038,7 @@ static void _call_f_drawLine_1786 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLine &arg1 = args.read (heap); + const QLine &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLine (arg1); } @@ -1064,10 +1064,10 @@ static void _call_f_drawLine_2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLine (arg1, arg2, arg3, arg4); } @@ -1089,8 +1089,8 @@ static void _call_f_drawLine_3724 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLine (arg1, arg2); } @@ -1112,8 +1112,8 @@ static void _call_f_drawLine_3864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLine (arg1, arg2); } @@ -1133,7 +1133,7 @@ static void _call_f_drawLines_2686 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLines (arg1); } @@ -1153,7 +1153,7 @@ static void _call_f_drawLines_2816 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLines (arg1); } @@ -1173,7 +1173,7 @@ static void _call_f_drawLines_2616 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLines (arg1); } @@ -1193,7 +1193,7 @@ static void _call_f_drawLines_2746 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLines (arg1); } @@ -1213,7 +1213,7 @@ static void _call_f_drawPath_2514 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPath (arg1); } @@ -1235,8 +1235,8 @@ static void _call_f_drawPicture_4004 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPicture &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPicture &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPicture (arg1, arg2); } @@ -1260,9 +1260,9 @@ static void _call_f_drawPicture_3444 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPicture &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPicture &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPicture (arg1, arg2, arg3); } @@ -1284,8 +1284,8 @@ static void _call_f_drawPicture_3934 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPicture &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPicture &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPicture (arg1, arg2); } @@ -1309,9 +1309,9 @@ static void _call_f_drawPie_3180 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPie (arg1, arg2, arg3); } @@ -1341,12 +1341,12 @@ static void _call_f_drawPie_4062 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - int arg6 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPie (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -1370,9 +1370,9 @@ static void _call_f_drawPie_3110 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPie (arg1, arg2, arg3); } @@ -1396,9 +1396,9 @@ static void _call_f_drawPixmap_5525 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3); } @@ -1422,9 +1422,9 @@ static void _call_f_drawPixmap_5385 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3); } @@ -1460,15 +1460,15 @@ static void _call_f_drawPixmap_7289 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QPixmap &arg5 = args.read (heap); - int arg6 = args.read (heap); - int arg7 = args.read (heap); - int arg8 = args.read (heap); - int arg9 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QPixmap &arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); + int arg7 = gsi::arg_reader() (args, heap); + int arg8 = gsi::arg_reader() (args, heap); + int arg9 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); } @@ -1500,13 +1500,13 @@ static void _call_f_drawPixmap_5971 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - int arg6 = args.read (heap); - int arg7 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); + int arg7 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -1530,9 +1530,9 @@ static void _call_f_drawPixmap_5649 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3); } @@ -1556,9 +1556,9 @@ static void _call_f_drawPixmap_5509 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3); } @@ -1580,8 +1580,8 @@ static void _call_f_drawPixmap_3895 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2); } @@ -1603,8 +1603,8 @@ static void _call_f_drawPixmap_3825 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2); } @@ -1628,9 +1628,9 @@ static void _call_f_drawPixmap_3335 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3); } @@ -1652,8 +1652,8 @@ static void _call_f_drawPixmap_3701 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2); } @@ -1681,11 +1681,11 @@ static void _call_f_drawPixmap_4653 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QPixmap &arg5 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QPixmap &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3, arg4, arg5); } @@ -1705,7 +1705,7 @@ static void _call_f_drawPoint_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPoint (arg1); } @@ -1725,7 +1725,7 @@ static void _call_f_drawPoint_1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPoint (arg1); } @@ -1747,8 +1747,8 @@ static void _call_f_drawPoint_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPoint (arg1, arg2); } @@ -1768,7 +1768,7 @@ static void _call_f_drawPoints_2208 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPoints (arg1); } @@ -1788,7 +1788,7 @@ static void _call_f_drawPoints_2138 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPoints (arg1); } @@ -1810,8 +1810,8 @@ static void _call_f_drawPolygon_3648 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::OddEvenFill)); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::OddEvenFill), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPolygon (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1833,8 +1833,8 @@ static void _call_f_drawPolygon_3578 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::OddEvenFill)); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::OddEvenFill), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPolygon (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1854,7 +1854,7 @@ static void _call_f_drawPolyline_2208 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPolyline (arg1); } @@ -1874,7 +1874,7 @@ static void _call_f_drawPolyline_2138 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPolyline (arg1); } @@ -1894,7 +1894,7 @@ static void _call_f_drawRect_1862 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRect (arg1); } @@ -1920,10 +1920,10 @@ static void _call_f_drawRect_2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRect (arg1, arg2, arg3, arg4); } @@ -1943,7 +1943,7 @@ static void _call_f_drawRect_1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRect (arg1); } @@ -1963,7 +1963,7 @@ static void _call_f_drawRects_2692 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRects (arg1); } @@ -1983,7 +1983,7 @@ static void _call_f_drawRects_2622 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRects (arg1); } @@ -2007,9 +2007,9 @@ static void _call_f_drawRoundRect_3180 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(25); - int arg3 = args ? args.read (heap) : (int)(25); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (25, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (25, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRoundRect (arg1, arg2, arg3); } @@ -2039,12 +2039,12 @@ static void _call_f_drawRoundRect_4062 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args ? args.read (heap) : (int)(25); - int arg6 = args ? args.read (heap) : (int)(25); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (25, heap); + int arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (25, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRoundRect (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -2068,9 +2068,9 @@ static void _call_f_drawRoundRect_3110 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(25); - int arg3 = args ? args.read (heap) : (int)(25); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (25, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (25, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRoundRect (arg1, arg2, arg3); } @@ -2096,10 +2096,10 @@ static void _call_f_drawRoundedRect_5229 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize)); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRoundedRect (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -2131,13 +2131,13 @@ static void _call_f_drawRoundedRect_6111 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRoundedRect (arg1, arg2, arg3, arg4, arg5, arg6, qt_gsi::QtToCppAdaptor(arg7).cref()); } @@ -2163,10 +2163,10 @@ static void _call_f_drawRoundedRect_5159 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize)); + const QRect &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRoundedRect (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -2188,8 +2188,8 @@ static void _call_f_drawText_3903 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2); } @@ -2211,8 +2211,8 @@ static void _call_f_drawText_3833 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2); } @@ -2236,9 +2236,9 @@ static void _call_f_drawText_3343 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2, arg3); } @@ -2264,10 +2264,10 @@ static void _call_f_drawText_5221 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2, arg3, arg4); } @@ -2293,10 +2293,10 @@ static void _call_f_drawText_5501 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QRectF *arg4 = args ? args.read (heap) : (QRectF *)(0); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QRectF *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2, arg3, arg4); } @@ -2322,10 +2322,10 @@ static void _call_f_drawText_5361 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QRect *arg4 = args ? args.read (heap) : (QRect *)(0); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QRect *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2, arg3, arg4); } @@ -2357,13 +2357,13 @@ static void _call_f_drawText_6313 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - QRect *arg7 = args ? args.read (heap) : (QRect *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + QRect *arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -2387,9 +2387,9 @@ static void _call_f_drawText_6119 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QTextOption &arg3 = args ? args.read (heap) : (const QTextOption &)(QTextOption()); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QTextOption &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTextOption(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2, arg3); } @@ -2411,8 +2411,8 @@ static void _call_f_drawTextItem_4092 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QTextItem &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QTextItem &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawTextItem (arg1, arg2); } @@ -2436,9 +2436,9 @@ static void _call_f_drawTextItem_3532 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextItem &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextItem &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawTextItem (arg1, arg2, arg3); } @@ -2460,8 +2460,8 @@ static void _call_f_drawTextItem_4022 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QTextItem &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QTextItem &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawTextItem (arg1, arg2); } @@ -2485,9 +2485,9 @@ static void _call_f_drawTiledPixmap_5649 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QPointF &arg3 = args ? args.read (heap) : (const QPointF &)(QPointF()); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPointF(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawTiledPixmap (arg1, arg2, arg3); } @@ -2519,13 +2519,13 @@ static void _call_f_drawTiledPixmap_5971 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QPixmap &arg5 = args.read (heap); - int arg6 = args ? args.read (heap) : (int)(0); - int arg7 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QPixmap &arg5 = gsi::arg_reader() (args, heap); + int arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawTiledPixmap (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -2549,9 +2549,9 @@ static void _call_f_drawTiledPixmap_5509 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QPoint &arg3 = args ? args.read (heap) : (const QPoint &)(QPoint()); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPoint(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawTiledPixmap (arg1, arg2, arg3); } @@ -2602,7 +2602,7 @@ static void _call_f_eraseRect_1862 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->eraseRect (arg1); } @@ -2628,10 +2628,10 @@ static void _call_f_eraseRect_2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->eraseRect (arg1, arg2, arg3, arg4); } @@ -2651,7 +2651,7 @@ static void _call_f_eraseRect_1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->eraseRect (arg1); } @@ -2673,8 +2673,8 @@ static void _call_f_fillPath_4316 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const QBrush &arg2 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillPath (arg1, arg2); } @@ -2696,8 +2696,8 @@ static void _call_f_fillRect_3664 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QBrush &arg2 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2); } @@ -2725,11 +2725,11 @@ static void _call_f_fillRect_4546 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QBrush &arg5 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QBrush &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2, arg3, arg4, arg5); } @@ -2751,8 +2751,8 @@ static void _call_f_fillRect_3594 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const QBrush &arg2 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2); } @@ -2774,8 +2774,8 @@ static void _call_f_fillRect_3659 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2); } @@ -2803,11 +2803,11 @@ static void _call_f_fillRect_4541 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QColor &arg5 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QColor &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2, arg3, arg4, arg5); } @@ -2829,8 +2829,8 @@ static void _call_f_fillRect_3589 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2); } @@ -2858,11 +2858,11 @@ static void _call_f_fillRect_4489 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()); } @@ -2884,8 +2884,8 @@ static void _call_f_fillRect_3537 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -2907,8 +2907,8 @@ static void _call_f_fillRect_3607 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -2936,11 +2936,11 @@ static void _call_f_fillRect_4430 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()); } @@ -2962,8 +2962,8 @@ static void _call_f_fillRect_3478 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -2985,8 +2985,8 @@ static void _call_f_fillRect_3548 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -3066,7 +3066,7 @@ static void _call_f_initFrom_2010 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->initFrom (arg1); } @@ -3254,7 +3254,7 @@ static void _call_f_rotate_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->rotate (arg1); } @@ -3292,8 +3292,8 @@ static void _call_f_scale_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->scale (arg1, arg2); } @@ -3313,7 +3313,7 @@ static void _call_f_setBackground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setBackground (arg1); } @@ -3333,7 +3333,7 @@ static void _call_f_setBackgroundMode_1275 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setBackgroundMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -3353,7 +3353,7 @@ static void _call_f_setBrush_1910 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setBrush (arg1); } @@ -3373,7 +3373,7 @@ static void _call_f_setBrush_1794 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setBrush (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -3395,8 +3395,8 @@ static void _call_f_setBrushOrigin_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setBrushOrigin (arg1, arg2); } @@ -3416,7 +3416,7 @@ static void _call_f_setBrushOrigin_1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setBrushOrigin (arg1); } @@ -3436,7 +3436,7 @@ static void _call_f_setBrushOrigin_1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setBrushOrigin (arg1); } @@ -3458,8 +3458,8 @@ static void _call_f_setClipPath_4492 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip)); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setClipPath (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -3481,8 +3481,8 @@ static void _call_f_setClipRect_3840 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip)); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setClipRect (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -3504,8 +3504,8 @@ static void _call_f_setClipRect_3770 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip)); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setClipRect (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -3533,11 +3533,11 @@ static void _call_f_setClipRect_4722 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setClipRect (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()); } @@ -3559,8 +3559,8 @@ static void _call_f_setClipRegion_3984 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip)); + const QRegion &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setClipRegion (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -3580,7 +3580,7 @@ static void _call_f_setClipping_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setClipping (arg1); } @@ -3600,7 +3600,7 @@ static void _call_f_setCompositionMode_2917 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setCompositionMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -3620,7 +3620,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setFont (arg1); } @@ -3640,7 +3640,7 @@ static void _call_f_setLayoutDirection_2316 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setLayoutDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -3662,8 +3662,8 @@ static void _call_f_setMatrix_2779 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setMatrix (arg1, arg2); } @@ -3683,7 +3683,7 @@ static void _call_f_setMatrixEnabled_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setMatrixEnabled (arg1); } @@ -3703,7 +3703,7 @@ static void _call_f_setOpacity_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setOpacity (arg1); } @@ -3723,7 +3723,7 @@ static void _call_f_setPen_1905 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setPen (arg1); } @@ -3743,7 +3743,7 @@ static void _call_f_setPen_1685 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setPen (arg1); } @@ -3763,7 +3763,7 @@ static void _call_f_setPen_1569 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setPen (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -3785,8 +3785,8 @@ static void _call_f_setRenderHint_3123 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setRenderHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -3808,8 +3808,8 @@ static void _call_f_setRenderHints_3819 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + QFlags arg1 = gsi::arg_reader >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setRenderHints (arg1, arg2); } @@ -3831,8 +3831,8 @@ static void _call_f_setTransform_3106 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setTransform (arg1, arg2); } @@ -3852,7 +3852,7 @@ static void _call_f_setViewTransformEnabled_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setViewTransformEnabled (arg1); } @@ -3872,7 +3872,7 @@ static void _call_f_setViewport_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setViewport (arg1); } @@ -3898,10 +3898,10 @@ static void _call_f_setViewport_2744 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setViewport (arg1, arg2, arg3, arg4); } @@ -3921,7 +3921,7 @@ static void _call_f_setWindow_1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setWindow (arg1); } @@ -3947,10 +3947,10 @@ static void _call_f_setWindow_2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setWindow (arg1, arg2, arg3, arg4); } @@ -3972,8 +3972,8 @@ static void _call_f_setWorldMatrix_2779 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setWorldMatrix (arg1, arg2); } @@ -3993,7 +3993,7 @@ static void _call_f_setWorldMatrixEnabled_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setWorldMatrixEnabled (arg1); } @@ -4015,8 +4015,8 @@ static void _call_f_setWorldTransform_3106 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setWorldTransform (arg1, arg2); } @@ -4038,8 +4038,8 @@ static void _call_f_shear_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->shear (arg1, arg2); } @@ -4061,8 +4061,8 @@ static void _call_f_strokePath_4091 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const QPen &arg2 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const QPen &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->strokePath (arg1, arg2); } @@ -4082,7 +4082,7 @@ static void _call_f_testRenderHint_c2367 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPainter *)cls)->testRenderHint (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -4116,7 +4116,7 @@ static void _call_f_translate_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->translate (arg1); } @@ -4136,7 +4136,7 @@ static void _call_f_translate_1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->translate (arg1); } @@ -4158,8 +4158,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->translate (arg1, arg2); } @@ -4271,8 +4271,8 @@ static void _call_f_redirected_3615 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPaintDevice *arg1 = args.read (heap); - QPoint *arg2 = args ? args.read (heap) : (QPoint *)(0); + const QPaintDevice *arg1 = gsi::arg_reader() (args, heap); + QPoint *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPaintDevice *)QPainter::redirected (arg1, arg2)); } @@ -4291,7 +4291,7 @@ static void _call_f_restoreRedirected_2498 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPaintDevice *arg1 = args.read (heap); + const QPaintDevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QPainter::restoreRedirected (arg1); } @@ -4315,9 +4315,9 @@ static void _call_f_setRedirected_6001 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPaintDevice *arg1 = args.read (heap); - QPaintDevice *arg2 = args.read (heap); - const QPoint &arg3 = args ? args.read (heap) : (const QPoint &)(QPoint()); + const QPaintDevice *arg1 = gsi::arg_reader() (args, heap); + QPaintDevice *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPoint(), heap); __SUPPRESS_UNUSED_WARNING(ret); QPainter::setRedirected (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPainterPath.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPainterPath.cc index 0b062ffa3..8016730bb 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPainterPath.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPainterPath.cc @@ -72,7 +72,7 @@ static void _call_ctor_QPainterPath_1986 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPainterPath (arg1)); } @@ -91,7 +91,7 @@ static void _call_ctor_QPainterPath_2514 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPainterPath (arg1)); } @@ -110,7 +110,7 @@ static void _call_f_addEllipse_1862 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addEllipse (arg1); } @@ -136,10 +136,10 @@ static void _call_f_addEllipse_3960 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addEllipse (arg1, arg2, arg3, arg4); } @@ -163,9 +163,9 @@ static void _call_f_addEllipse_3912 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addEllipse (arg1, arg2, arg3); } @@ -185,7 +185,7 @@ static void _call_f_addPath_2514 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addPath (arg1); } @@ -205,7 +205,7 @@ static void _call_f_addPolygon_2208 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addPolygon (arg1); } @@ -225,7 +225,7 @@ static void _call_f_addRect_1862 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRect (arg1); } @@ -251,10 +251,10 @@ static void _call_f_addRect_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRect (arg1, arg2, arg3, arg4); } @@ -274,7 +274,7 @@ static void _call_f_addRegion_2006 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRegion (arg1); } @@ -298,9 +298,9 @@ static void _call_f_addRoundRect_3180 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRoundRect (arg1, arg2, arg3); } @@ -330,12 +330,12 @@ static void _call_f_addRoundRect_5278 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - int arg5 = args.read (heap); - int arg6 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRoundRect (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -357,8 +357,8 @@ static void _call_f_addRoundRect_2521 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRoundRect (arg1, arg2); } @@ -386,11 +386,11 @@ static void _call_f_addRoundRect_4619 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - int arg5 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRoundRect (arg1, arg2, arg3, arg4, arg5); } @@ -416,10 +416,10 @@ static void _call_f_addRoundedRect_5229 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize)); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRoundedRect (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -451,13 +451,13 @@ static void _call_f_addRoundedRect_7327 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize)); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRoundedRect (arg1, arg2, arg3, arg4, arg5, arg6, qt_gsi::QtToCppAdaptor(arg7).cref()); } @@ -481,9 +481,9 @@ static void _call_f_addText_5596 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QFont &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QFont &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addText (arg1, arg2, arg3); } @@ -509,10 +509,10 @@ static void _call_f_addText_5644 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - const QFont &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const QFont &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addText (arg1, arg2, arg3, arg4); } @@ -532,7 +532,7 @@ static void _call_f_angleAtPercent_c1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QPainterPath *)cls)->angleAtPercent (arg1)); } @@ -553,8 +553,8 @@ static void _call_f_arcMoveTo_2825 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - double arg2 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->arcMoveTo (arg1, arg2); } @@ -582,11 +582,11 @@ static void _call_f_arcMoveTo_4923 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->arcMoveTo (arg1, arg2, arg3, arg4, arg5); } @@ -610,9 +610,9 @@ static void _call_f_arcTo_3788 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->arcTo (arg1, arg2, arg3); } @@ -642,12 +642,12 @@ static void _call_f_arcTo_5886 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->arcTo (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -698,7 +698,7 @@ static void _call_f_connectPath_2514 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->connectPath (arg1); } @@ -718,7 +718,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath *)cls)->contains (arg1)); } @@ -737,7 +737,7 @@ static void _call_f_contains_c1862 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath *)cls)->contains (arg1)); } @@ -756,7 +756,7 @@ static void _call_f_contains_c2514 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath *)cls)->contains (arg1)); } @@ -794,9 +794,9 @@ static void _call_f_cubicTo_5742 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->cubicTo (arg1, arg2, arg3); } @@ -826,12 +826,12 @@ static void _call_f_cubicTo_5886 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->cubicTo (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -866,7 +866,7 @@ static void _call_f_elementAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const QPainterPath::Element &)((QPainterPath *)cls)->elementAt (arg1)); } @@ -915,7 +915,7 @@ static void _call_f_intersected_c2514 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->intersected (arg1)); } @@ -934,7 +934,7 @@ static void _call_f_intersects_c1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath *)cls)->intersects (arg1)); } @@ -953,7 +953,7 @@ static void _call_f_intersects_c2514 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath *)cls)->intersects (arg1)); } @@ -1002,7 +1002,7 @@ static void _call_f_lineTo_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->lineTo (arg1); } @@ -1024,8 +1024,8 @@ static void _call_f_lineTo_2034 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->lineTo (arg1, arg2); } @@ -1045,7 +1045,7 @@ static void _call_f_moveTo_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->moveTo (arg1); } @@ -1067,8 +1067,8 @@ static void _call_f_moveTo_2034 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->moveTo (arg1, arg2); } @@ -1088,7 +1088,7 @@ static void _call_f_operator_excl__eq__c2514 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath *)cls)->operator!= (arg1)); } @@ -1107,7 +1107,7 @@ static void _call_f_operator_amp__c2514 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->operator& (arg1)); } @@ -1126,7 +1126,7 @@ static void _call_f_operator_amp__eq__2514 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath &)((QPainterPath *)cls)->operator&= (arg1)); } @@ -1145,7 +1145,7 @@ static void _call_f_operator_plus__c2514 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->operator+ (arg1)); } @@ -1164,7 +1164,7 @@ static void _call_f_operator_plus__eq__2514 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath &)((QPainterPath *)cls)->operator+= (arg1)); } @@ -1183,7 +1183,7 @@ static void _call_f_operator_minus__c2514 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->operator- (arg1)); } @@ -1202,7 +1202,7 @@ static void _call_f_operator_minus__eq__2514 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath &)((QPainterPath *)cls)->operator-= (arg1)); } @@ -1221,7 +1221,7 @@ static void _call_f_operator_eq__2514 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath &)((QPainterPath *)cls)->operator= (arg1)); } @@ -1240,7 +1240,7 @@ static void _call_f_operator_eq__eq__c2514 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath *)cls)->operator== (arg1)); } @@ -1259,7 +1259,7 @@ static void _call_f_operator_pipe__c2514 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->operator| (arg1)); } @@ -1278,7 +1278,7 @@ static void _call_f_operator_pipe__eq__2514 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath &)((QPainterPath *)cls)->operator|= (arg1)); } @@ -1297,7 +1297,7 @@ static void _call_f_percentAtLength_c1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QPainterPath *)cls)->percentAtLength (arg1)); } @@ -1316,7 +1316,7 @@ static void _call_f_pointAtPercent_c1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QPainterPath *)cls)->pointAtPercent (arg1)); } @@ -1337,8 +1337,8 @@ static void _call_f_quadTo_3864 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->quadTo (arg1, arg2); } @@ -1364,10 +1364,10 @@ static void _call_f_quadTo_3960 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->quadTo (arg1, arg2, arg3, arg4); } @@ -1391,9 +1391,9 @@ static void _call_f_setElementPositionAt_2693 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->setElementPositionAt (arg1, arg2, arg3); } @@ -1413,7 +1413,7 @@ static void _call_f_setFillRule_1548 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->setFillRule (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1448,7 +1448,7 @@ static void _call_f_slopeAtPercent_c1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QPainterPath *)cls)->slopeAtPercent (arg1)); } @@ -1467,7 +1467,7 @@ static void _call_f_subtracted_c2514 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->subtracted (arg1)); } @@ -1486,7 +1486,7 @@ static void _call_f_subtractedInverted_c2514 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->subtractedInverted (arg1)); } @@ -1505,7 +1505,7 @@ static void _call_f_toFillPolygon_c2023 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args ? args.read (heap) : (const QMatrix &)(QMatrix()); + const QMatrix &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QMatrix(), heap); ret.write ((QPolygonF)((QPainterPath *)cls)->toFillPolygon (arg1)); } @@ -1524,7 +1524,7 @@ static void _call_f_toFillPolygon_c2350 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QPainterPath *)cls)->toFillPolygon (arg1)); } @@ -1543,7 +1543,7 @@ static void _call_f_toFillPolygons_c2023 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args ? args.read (heap) : (const QMatrix &)(QMatrix()); + const QMatrix &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QMatrix(), heap); ret.write > ((QList)((QPainterPath *)cls)->toFillPolygons (arg1)); } @@ -1562,7 +1562,7 @@ static void _call_f_toFillPolygons_c2350 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QPainterPath *)cls)->toFillPolygons (arg1)); } @@ -1596,7 +1596,7 @@ static void _call_f_toSubpathPolygons_c2023 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args ? args.read (heap) : (const QMatrix &)(QMatrix()); + const QMatrix &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QMatrix(), heap); ret.write > ((QList)((QPainterPath *)cls)->toSubpathPolygons (arg1)); } @@ -1615,7 +1615,7 @@ static void _call_f_toSubpathPolygons_c2350 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QPainterPath *)cls)->toSubpathPolygons (arg1)); } @@ -1636,8 +1636,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->translate (arg1, arg2); } @@ -1657,7 +1657,7 @@ static void _call_f_translate_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->translate (arg1); } @@ -1679,8 +1679,8 @@ static void _call_f_translated_c2034 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->translated (arg1, arg2)); } @@ -1699,7 +1699,7 @@ static void _call_f_translated_c1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->translated (arg1)); } @@ -1718,7 +1718,7 @@ static void _call_f_united_c2514 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->united (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPainterPathStroker.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPainterPathStroker.cc index 89c9c7405..8431e3d5f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPainterPathStroker.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPainterPathStroker.cc @@ -81,7 +81,7 @@ static void _call_f_createStroke_c2514 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPathStroker *)cls)->createStroke (arg1)); } @@ -175,7 +175,7 @@ static void _call_f_setCapStyle_1845 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setCapStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -195,7 +195,7 @@ static void _call_f_setCurveThreshold_1071 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setCurveThreshold (arg1); } @@ -215,7 +215,7 @@ static void _call_f_setDashOffset_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setDashOffset (arg1); } @@ -235,7 +235,7 @@ static void _call_f_setDashPattern_1569 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setDashPattern (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -255,7 +255,7 @@ static void _call_f_setDashPattern_2676 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setDashPattern (arg1); } @@ -275,7 +275,7 @@ static void _call_f_setJoinStyle_1969 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setJoinStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -295,7 +295,7 @@ static void _call_f_setMiterLimit_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setMiterLimit (arg1); } @@ -315,7 +315,7 @@ static void _call_f_setWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setWidth (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPainterPath_Element.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPainterPath_Element.cc index c5770b0ba..6fd238f67 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPainterPath_Element.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPainterPath_Element.cc @@ -110,7 +110,7 @@ static void _call_f_operator_excl__eq__c3344 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath::Element &arg1 = args.read (heap); + const QPainterPath::Element &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath::Element *)cls)->operator!= (arg1)); } @@ -129,7 +129,7 @@ static void _call_f_operator_eq__eq__c3344 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath::Element &arg1 = args.read (heap); + const QPainterPath::Element &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath::Element *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPalette.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPalette.cc index 74af8c519..aaeabfa52 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPalette.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPalette.cc @@ -67,7 +67,7 @@ static void _call_ctor_QPalette_1905 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPalette (arg1)); } @@ -86,7 +86,7 @@ static void _call_ctor_QPalette_1853 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QPalette (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -107,8 +107,8 @@ static void _call_ctor_QPalette_3702 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); ret.write (new QPalette (arg1, arg2)); } @@ -143,15 +143,15 @@ static void _call_ctor_QPalette_16326 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); - const QBrush &arg2 = args.read (heap); - const QBrush &arg3 = args.read (heap); - const QBrush &arg4 = args.read (heap); - const QBrush &arg5 = args.read (heap); - const QBrush &arg6 = args.read (heap); - const QBrush &arg7 = args.read (heap); - const QBrush &arg8 = args.read (heap); - const QBrush &arg9 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); + const QBrush &arg3 = gsi::arg_reader() (args, heap); + const QBrush &arg4 = gsi::arg_reader() (args, heap); + const QBrush &arg5 = gsi::arg_reader() (args, heap); + const QBrush &arg6 = gsi::arg_reader() (args, heap); + const QBrush &arg7 = gsi::arg_reader() (args, heap); + const QBrush &arg8 = gsi::arg_reader() (args, heap); + const QBrush &arg9 = gsi::arg_reader() (args, heap); ret.write (new QPalette (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)); } @@ -182,13 +182,13 @@ static void _call_ctor_QPalette_12687 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); - const QColor &arg3 = args.read (heap); - const QColor &arg4 = args.read (heap); - const QColor &arg5 = args.read (heap); - const QColor &arg6 = args.read (heap); - const QColor &arg7 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); + const QColor &arg3 = gsi::arg_reader() (args, heap); + const QColor &arg4 = gsi::arg_reader() (args, heap); + const QColor &arg5 = gsi::arg_reader() (args, heap); + const QColor &arg6 = gsi::arg_reader() (args, heap); + const QColor &arg7 = gsi::arg_reader() (args, heap); ret.write (new QPalette (arg1, arg2, arg3, arg4, arg5, arg6, arg7)); } @@ -207,7 +207,7 @@ static void _call_ctor_QPalette_2113 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPalette (arg1)); } @@ -288,8 +288,8 @@ static void _call_f_brush_c4545 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((const QBrush &)((QPalette *)cls)->brush (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -308,7 +308,7 @@ static void _call_f_brush_c2265 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((const QBrush &)((QPalette *)cls)->brush (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -374,8 +374,8 @@ static void _call_f_color_c4545 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((const QColor &)((QPalette *)cls)->color (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -394,7 +394,7 @@ static void _call_f_color_c2265 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((const QColor &)((QPalette *)cls)->color (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -490,8 +490,8 @@ static void _call_f_isBrushSet_c4545 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPalette *)cls)->isBrushSet (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -510,7 +510,7 @@ static void _call_f_isCopyOf_c2113 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPalette *)cls)->isCopyOf (arg1)); } @@ -531,8 +531,8 @@ static void _call_f_isEqual_c4668 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPalette *)cls)->isEqual (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -626,7 +626,7 @@ static void _call_f_operator_excl__eq__c2113 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPalette *)cls)->operator!= (arg1)); } @@ -645,7 +645,7 @@ static void _call_f_operator_eq__2113 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPalette &)((QPalette *)cls)->operator= (arg1)); } @@ -664,7 +664,7 @@ static void _call_f_operator_eq__eq__c2113 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPalette *)cls)->operator== (arg1)); } @@ -683,7 +683,7 @@ static void _call_f_resolve_c2113 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPalette)((QPalette *)cls)->resolve (arg1)); } @@ -719,8 +719,8 @@ static void _call_f_setBrush_4067 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QBrush &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPalette *)cls)->setBrush (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -744,9 +744,9 @@ static void _call_f_setBrush_6347 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QBrush &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QBrush &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPalette *)cls)->setBrush (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -770,9 +770,9 @@ static void _call_f_setColor_6342 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QColor &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QColor &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPalette *)cls)->setColor (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -794,8 +794,8 @@ static void _call_f_setColor_4062 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QColor &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPalette *)cls)->setColor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -833,16 +833,16 @@ static void _call_f_setColorGroup_18606 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QBrush &arg2 = args.read (heap); - const QBrush &arg3 = args.read (heap); - const QBrush &arg4 = args.read (heap); - const QBrush &arg5 = args.read (heap); - const QBrush &arg6 = args.read (heap); - const QBrush &arg7 = args.read (heap); - const QBrush &arg8 = args.read (heap); - const QBrush &arg9 = args.read (heap); - const QBrush &arg10 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); + const QBrush &arg3 = gsi::arg_reader() (args, heap); + const QBrush &arg4 = gsi::arg_reader() (args, heap); + const QBrush &arg5 = gsi::arg_reader() (args, heap); + const QBrush &arg6 = gsi::arg_reader() (args, heap); + const QBrush &arg7 = gsi::arg_reader() (args, heap); + const QBrush &arg8 = gsi::arg_reader() (args, heap); + const QBrush &arg9 = gsi::arg_reader() (args, heap); + const QBrush &arg10 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPalette *)cls)->setColorGroup (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); } @@ -862,7 +862,7 @@ static void _call_f_setCurrentColorGroup_2388 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPalette *)cls)->setCurrentColorGroup (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPanGesture.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPanGesture.cc index 2a6249ab2..2576626f0 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPanGesture.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPanGesture.cc @@ -129,7 +129,7 @@ static void _call_f_setAcceleration_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture *)cls)->setAcceleration (arg1); } @@ -149,7 +149,7 @@ static void _call_f_setLastOffset_1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture *)cls)->setLastOffset (arg1); } @@ -169,7 +169,7 @@ static void _call_f_setOffset_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture *)cls)->setOffset (arg1); } @@ -191,8 +191,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPanGesture::tr (arg1, arg2)); } @@ -215,9 +215,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPanGesture::tr (arg1, arg2, arg3)); } @@ -238,8 +238,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPanGesture::trUtf8 (arg1, arg2)); } @@ -262,9 +262,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPanGesture::trUtf8 (arg1, arg2, arg3)); } @@ -448,7 +448,7 @@ static void _call_ctor_QPanGesture_Adaptor_1302 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPanGesture_Adaptor (arg1)); } @@ -514,7 +514,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPanGesture_Adaptor *)cls)->emitter_QPanGesture_destroyed_1302 (arg1); } @@ -605,7 +605,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPanGesture_Adaptor *)cls)->fp_QPanGesture_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPen.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPen.cc index 7863641e1..1f054cd1a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPen.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPen.cc @@ -67,7 +67,7 @@ static void _call_ctor_QPen_1569 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QPen (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -86,7 +86,7 @@ static void _call_ctor_QPen_1905 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPen (arg1)); } @@ -113,11 +113,11 @@ static void _call_ctor_QPen_7932 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); - double arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::SolidLine)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::SquareCap)); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::BevelJoin)); + const QBrush &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::SolidLine), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::SquareCap), heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::BevelJoin), heap); ret.write (new QPen (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref(), qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -136,7 +136,7 @@ static void _call_ctor_QPen_1685 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPen (arg1)); } @@ -305,7 +305,7 @@ static void _call_f_operator_excl__eq__c1685 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPen *)cls)->operator!= (arg1)); } @@ -324,7 +324,7 @@ static void _call_f_operator_eq__1685 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPen &)((QPen *)cls)->operator= (arg1)); } @@ -343,7 +343,7 @@ static void _call_f_operator_eq__eq__c1685 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPen *)cls)->operator== (arg1)); } @@ -362,7 +362,7 @@ static void _call_f_setBrush_1910 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setBrush (arg1); } @@ -382,7 +382,7 @@ static void _call_f_setCapStyle_1845 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setCapStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -402,7 +402,7 @@ static void _call_f_setColor_1905 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setColor (arg1); } @@ -422,7 +422,7 @@ static void _call_f_setCosmetic_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setCosmetic (arg1); } @@ -442,7 +442,7 @@ static void _call_f_setDashOffset_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setDashOffset (arg1); } @@ -462,7 +462,7 @@ static void _call_f_setDashPattern_2676 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setDashPattern (arg1); } @@ -482,7 +482,7 @@ static void _call_f_setJoinStyle_1969 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setJoinStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -502,7 +502,7 @@ static void _call_f_setMiterLimit_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setMiterLimit (arg1); } @@ -522,7 +522,7 @@ static void _call_f_setStyle_1569u1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -542,7 +542,7 @@ static void _call_f_setWidth_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setWidth (arg1); } @@ -562,7 +562,7 @@ static void _call_f_setWidthF_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setWidthF (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPicture.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPicture.cc index 797373b23..1c5e9d337 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPicture.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPicture.cc @@ -132,8 +132,8 @@ static void _call_f_load_3070 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QPicture *)cls)->load (arg1, arg2)); } @@ -154,8 +154,8 @@ static void _call_f_load_3648 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QPicture *)cls)->load (arg1, arg2)); } @@ -174,7 +174,7 @@ static void _call_f_operator_eq__2126 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPicture &arg1 = args.read (heap); + const QPicture &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPicture &)((QPicture *)cls)->operator= (arg1)); } @@ -208,7 +208,7 @@ static void _call_f_play_1426 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPicture *)cls)->play (arg1)); } @@ -229,8 +229,8 @@ static void _call_f_save_3070 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QPicture *)cls)->save (arg1, arg2)); } @@ -251,8 +251,8 @@ static void _call_f_save_3648 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QPicture *)cls)->save (arg1, arg2)); } @@ -271,7 +271,7 @@ static void _call_f_setBoundingRect_1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPicture *)cls)->setBoundingRect (arg1); } @@ -293,8 +293,8 @@ static void _call_f_setData_3395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPicture *)cls)->setData (arg1, arg2); } @@ -389,7 +389,7 @@ static void _call_f_pictureFormat_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((const char *)QPicture::pictureFormat (arg1)); } @@ -522,7 +522,7 @@ static void _call_ctor_QPicture_Adaptor_767 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write (new QPicture_Adaptor (arg1)); } @@ -540,7 +540,7 @@ static void _call_ctor_QPicture_Adaptor_2126 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPicture &arg1 = args.read (heap); + const QPicture &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPicture_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPinchGesture.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPinchGesture.cc index 89c73ec20..923351e7b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPinchGesture.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPinchGesture.cc @@ -174,7 +174,7 @@ static void _call_f_setCenterPoint_1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setCenterPoint (arg1); } @@ -194,7 +194,7 @@ static void _call_f_setChangeFlags_3522 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setChangeFlags (arg1); } @@ -214,7 +214,7 @@ static void _call_f_setLastCenterPoint_1986 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setLastCenterPoint (arg1); } @@ -234,7 +234,7 @@ static void _call_f_setLastRotationAngle_1071 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setLastRotationAngle (arg1); } @@ -254,7 +254,7 @@ static void _call_f_setLastScaleFactor_1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setLastScaleFactor (arg1); } @@ -274,7 +274,7 @@ static void _call_f_setRotationAngle_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setRotationAngle (arg1); } @@ -294,7 +294,7 @@ static void _call_f_setScaleFactor_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setScaleFactor (arg1); } @@ -314,7 +314,7 @@ static void _call_f_setStartCenterPoint_1986 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setStartCenterPoint (arg1); } @@ -334,7 +334,7 @@ static void _call_f_setTotalChangeFlags_3522 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setTotalChangeFlags (arg1); } @@ -354,7 +354,7 @@ static void _call_f_setTotalRotationAngle_1071 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setTotalRotationAngle (arg1); } @@ -374,7 +374,7 @@ static void _call_f_setTotalScaleFactor_1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setTotalScaleFactor (arg1); } @@ -456,8 +456,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPinchGesture::tr (arg1, arg2)); } @@ -480,9 +480,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPinchGesture::tr (arg1, arg2, arg3)); } @@ -503,8 +503,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPinchGesture::trUtf8 (arg1, arg2)); } @@ -527,9 +527,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPinchGesture::trUtf8 (arg1, arg2, arg3)); } @@ -728,7 +728,7 @@ static void _call_ctor_QPinchGesture_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPinchGesture_Adaptor (arg1)); } @@ -794,7 +794,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPinchGesture_Adaptor *)cls)->emitter_QPinchGesture_destroyed_1302 (arg1); } @@ -885,7 +885,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPinchGesture_Adaptor *)cls)->fp_QPinchGesture_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPixmap.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPixmap.cc index ee3c078b7..e953e84f6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPixmap.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPixmap.cc @@ -98,10 +98,10 @@ static void _call_f_copy_c2744 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QPixmap *)cls)->copy (arg1, arg2, arg3, arg4)); } @@ -120,7 +120,7 @@ static void _call_f_copy_c1792 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args ? args.read (heap) : (const QRect &)(QRect()); + const QRect &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRect(), heap); ret.write ((QPixmap)((QPixmap *)cls)->copy (arg1)); } @@ -139,7 +139,7 @@ static void _call_f_createHeuristicMask_c864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); ret.write ((QBitmap)((QPixmap *)cls)->createHeuristicMask (arg1)); } @@ -158,7 +158,7 @@ static void _call_f_createMaskFromColor_c1905 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QBitmap)((QPixmap *)cls)->createMaskFromColor (arg1)); } @@ -179,8 +179,8 @@ static void _call_f_createMaskFromColor_c3331 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QBitmap)((QPixmap *)cls)->createMaskFromColor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -230,7 +230,7 @@ static void _call_f_fill_1905 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args ? args.read (heap) : (const QColor &)(Qt::white); + const QColor &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::white, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap *)cls)->fill (arg1); } @@ -252,8 +252,8 @@ static void _call_f_fill_3818 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap *)cls)->fill (arg1, arg2); } @@ -277,9 +277,9 @@ static void _call_f_fill_3328 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap *)cls)->fill (arg1, arg2, arg3); } @@ -393,9 +393,9 @@ static void _call_f_load_6908 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((bool)((QPixmap *)cls)->load (arg1, arg2, arg3)); } @@ -420,10 +420,10 @@ static void _call_f_loadFromData_9283 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const unsigned char *arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); - const char *arg3 = args ? args.read (heap) : (const char *)(0); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const unsigned char *arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((bool)((QPixmap *)cls)->loadFromData (arg1, arg2, arg3, arg4)); } @@ -446,9 +446,9 @@ static void _call_f_loadFromData_7192 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((bool)((QPixmap *)cls)->loadFromData (arg1, arg2, arg3)); } @@ -497,7 +497,7 @@ static void _call_f_operator_eq__2017 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPixmap &)((QPixmap *)cls)->operator= (arg1)); } @@ -550,9 +550,9 @@ static void _call_f_save_c4307 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((bool)((QPixmap *)cls)->save (arg1, arg2, arg3)); } @@ -575,9 +575,9 @@ static void _call_f_save_c3729 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((bool)((QPixmap *)cls)->save (arg1, arg2, arg3)); } @@ -602,10 +602,10 @@ static void _call_f_scaled_c6100 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QPixmap)((QPixmap *)cls)->scaled (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -628,9 +628,9 @@ static void _call_f_scaled_c6479 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QPixmap)((QPixmap *)cls)->scaled (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -651,8 +651,8 @@ static void _call_f_scaledToHeight_c3292 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QPixmap)((QPixmap *)cls)->scaledToHeight (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -673,8 +673,8 @@ static void _call_f_scaledToWidth_c3292 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QPixmap)((QPixmap *)cls)->scaledToWidth (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -705,13 +705,13 @@ static void _call_f_scroll_5269 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - int arg6 = args.read (heap); - QRegion *arg7 = args ? args.read (heap) : (QRegion *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); + QRegion *arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap *)cls)->scroll (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -737,10 +737,10 @@ static void _call_f_scroll_4317 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); - QRegion *arg4 = args ? args.read (heap) : (QRegion *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); + QRegion *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap *)cls)->scroll (arg1, arg2, arg3, arg4); } @@ -775,7 +775,7 @@ static void _call_f_setAlphaChannel_2017 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap *)cls)->setAlphaChannel (arg1); } @@ -795,7 +795,7 @@ static void _call_f_setMask_1999 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBitmap &arg1 = args.read (heap); + const QBitmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap *)cls)->setMask (arg1); } @@ -847,8 +847,8 @@ static void _call_f_transformed_c4548 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QPixmap)((QPixmap *)cls)->transformed (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -869,8 +869,8 @@ static void _call_f_transformed_c4875 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QPixmap)((QPixmap *)cls)->transformed (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -921,8 +921,8 @@ static void _call_f_fromImage_5137 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QImage &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((QPixmap)QPixmap::fromImage (arg1, arg2)); } @@ -943,8 +943,8 @@ static void _call_f_grabWidget_2999 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)QPixmap::grabWidget (arg1, arg2)); } @@ -971,11 +971,11 @@ static void _call_f_grabWidget_3951 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - int arg3 = args ? args.read (heap) : (int)(0); - int arg4 = args ? args.read (heap) : (int)(-1); - int arg5 = args ? args.read (heap) : (int)(-1); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QPixmap)QPixmap::grabWidget (arg1, arg2, arg3, arg4, arg5)); } @@ -1002,11 +1002,11 @@ static void _call_f_grabWindow_3332 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args ? args.read (heap) : (int)(0); - int arg3 = args ? args.read (heap) : (int)(0); - int arg4 = args ? args.read (heap) : (int)(-1); - int arg5 = args ? args.read (heap) : (int)(-1); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QPixmap)QPixmap::grabWindow (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5)); } @@ -1029,9 +1029,9 @@ static void _call_f_trueMatrix_3341 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QMatrix)QPixmap::trueMatrix (arg1, arg2, arg3)); } @@ -1054,9 +1054,9 @@ static void _call_f_trueMatrix_3668 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QTransform)QPixmap::trueMatrix (arg1, arg2, arg3)); } @@ -1242,8 +1242,8 @@ static void _call_ctor_QPixmap_Adaptor_1426 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QPixmap_Adaptor (arg1, arg2)); } @@ -1261,7 +1261,7 @@ static void _call_ctor_QPixmap_Adaptor_1805 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPixmap_Adaptor (arg1)); } @@ -1283,9 +1283,9 @@ static void _call_ctor_QPixmap_Adaptor_6908 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write (new QPixmap_Adaptor (arg1, arg2, arg3)); } @@ -1303,7 +1303,7 @@ static void _call_ctor_QPixmap_Adaptor_2017 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPixmap_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPixmapCache.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPixmapCache.cc index 625c45db3..2c0aa7591 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPixmapCache.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPixmapCache.cc @@ -97,7 +97,7 @@ static void _call_f_find_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPixmap *)QPixmapCache::find (arg1)); } @@ -118,8 +118,8 @@ static void _call_f_find_3239 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QPixmap &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QPixmap &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QPixmapCache::find (arg1, arg2)); } @@ -140,8 +140,8 @@ static void _call_f_find_3243 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QPixmap *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QPixmap *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QPixmapCache::find (arg1, arg2)); } @@ -162,8 +162,8 @@ static void _call_f_insert_3934 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QPixmapCache::insert (arg1, arg2)); } @@ -182,7 +182,7 @@ static void _call_f_remove_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QPixmapCache::remove (arg1); } @@ -202,7 +202,7 @@ static void _call_f_setCacheLimit_767 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QPixmapCache::setCacheLimit (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextDocumentLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextDocumentLayout.cc index 161aa3121..ac1d370b6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextDocumentLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextDocumentLayout.cc @@ -80,7 +80,7 @@ static void _call_f_blockBoundingRect_c2306 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPlainTextDocumentLayout *)cls)->blockBoundingRect (arg1)); } @@ -131,8 +131,8 @@ static void _call_f_draw_6787 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QAbstractTextDocumentLayout::PaintContext &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QAbstractTextDocumentLayout::PaintContext &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout *)cls)->draw (arg1, arg2); } @@ -152,7 +152,7 @@ static void _call_f_ensureBlockLayout_c2306 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout *)cls)->ensureBlockLayout (arg1); } @@ -172,7 +172,7 @@ static void _call_f_frameBoundingRect_c1615 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextFrame *arg1 = args.read (heap); + QTextFrame *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPlainTextDocumentLayout *)cls)->frameBoundingRect (arg1)); } @@ -193,8 +193,8 @@ static void _call_f_hitTest_c4147 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPlainTextDocumentLayout *)cls)->hitTest (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -244,7 +244,7 @@ static void _call_f_setCursorWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout *)cls)->setCursorWidth (arg1); } @@ -266,8 +266,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPlainTextDocumentLayout::tr (arg1, arg2)); } @@ -290,9 +290,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPlainTextDocumentLayout::tr (arg1, arg2, arg3)); } @@ -313,8 +313,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPlainTextDocumentLayout::trUtf8 (arg1, arg2)); } @@ -337,9 +337,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPlainTextDocumentLayout::trUtf8 (arg1, arg2, arg3)); } @@ -718,7 +718,7 @@ static void _call_ctor_QPlainTextDocumentLayout_Adaptor_1955 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QPlainTextDocumentLayout_Adaptor (arg1)); } @@ -807,7 +807,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPlainTextDocumentLayout_Adaptor *)cls)->emitter_QPlainTextDocumentLayout_destroyed_1302 (arg1); } @@ -898,7 +898,7 @@ static void _call_emitter_documentSizeChanged_1875 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); ((QPlainTextDocumentLayout_Adaptor *)cls)->emitter_QPlainTextDocumentLayout_documentSizeChanged_1875 (arg1); } @@ -1028,7 +1028,7 @@ static void _call_fp_format_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCharFormat)((QPlainTextDocumentLayout_Adaptor *)cls)->fp_QPlainTextDocumentLayout_format_767 (arg1)); } @@ -1046,7 +1046,7 @@ static void _call_fp_formatIndex_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPlainTextDocumentLayout_Adaptor *)cls)->fp_QPlainTextDocumentLayout_formatIndex_767 (arg1)); } @@ -1132,7 +1132,7 @@ static void _call_emitter_pageCountChanged_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPlainTextDocumentLayout_Adaptor *)cls)->emitter_QPlainTextDocumentLayout_pageCountChanged_767 (arg1); } @@ -1180,7 +1180,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPlainTextDocumentLayout_Adaptor *)cls)->fp_QPlainTextDocumentLayout_receivers_c1731 (arg1)); } @@ -1266,7 +1266,7 @@ static void _call_emitter_update_1862 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args ? args.read (heap) : (const QRectF &)(QRectF(0., 0., 1000000000., 1000000000.)); + const QRectF &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(0., 0., 1000000000., 1000000000.), heap); ((QPlainTextDocumentLayout_Adaptor *)cls)->emitter_QPlainTextDocumentLayout_update_1862 (arg1); } @@ -1284,7 +1284,7 @@ static void _call_emitter_updateBlock_2306 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ((QPlainTextDocumentLayout_Adaptor *)cls)->emitter_QPlainTextDocumentLayout_updateBlock_2306 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextEdit.cc index 6a7f696b1..d2ba9ef95 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPlainTextEdit.cc @@ -122,7 +122,7 @@ static void _call_f_appendHtml_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->appendHtml (arg1); } @@ -142,7 +142,7 @@ static void _call_f_appendPlainText_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->appendPlainText (arg1); } @@ -300,7 +300,7 @@ static void _call_f_cursorForPosition_c1916 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCursor)((QPlainTextEdit *)cls)->cursorForPosition (arg1)); } @@ -319,7 +319,7 @@ static void _call_f_cursorRect_c2453 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QPlainTextEdit *)cls)->cursorRect (arg1)); } @@ -447,8 +447,8 @@ static void _call_f_find_5261 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((bool)((QPlainTextEdit *)cls)->find (arg1, arg2)); } @@ -467,7 +467,7 @@ static void _call_f_insertPlainText_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->insertPlainText (arg1); } @@ -534,8 +534,8 @@ static void _call_f_loadResource_2360 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QPlainTextEdit *)cls)->loadResource (arg1, arg2)); } @@ -569,7 +569,7 @@ static void _call_f_mergeCurrentCharFormat_2814 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->mergeCurrentCharFormat (arg1); } @@ -591,8 +591,8 @@ static void _call_f_moveCursor_5424 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->moveCursor (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -643,7 +643,7 @@ static void _call_f_print_c1443 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); + QPrinter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->print (arg1); } @@ -695,7 +695,7 @@ static void _call_f_setBackgroundVisible_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setBackgroundVisible (arg1); } @@ -715,7 +715,7 @@ static void _call_f_setCenterOnScroll_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setCenterOnScroll (arg1); } @@ -735,7 +735,7 @@ static void _call_f_setCurrentCharFormat_2814 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setCurrentCharFormat (arg1); } @@ -755,7 +755,7 @@ static void _call_f_setCursorWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setCursorWidth (arg1); } @@ -775,7 +775,7 @@ static void _call_f_setDocument_1955 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setDocument (arg1); } @@ -795,7 +795,7 @@ static void _call_f_setDocumentTitle_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setDocumentTitle (arg1); } @@ -815,7 +815,7 @@ static void _call_f_setExtraSelections_4386 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setExtraSelections (arg1); } @@ -835,7 +835,7 @@ static void _call_f_setLineWrapMode_3135 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setLineWrapMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -855,7 +855,7 @@ static void _call_f_setMaximumBlockCount_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setMaximumBlockCount (arg1); } @@ -875,7 +875,7 @@ static void _call_f_setOverwriteMode_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setOverwriteMode (arg1); } @@ -895,7 +895,7 @@ static void _call_f_setPlainText_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setPlainText (arg1); } @@ -915,7 +915,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setReadOnly (arg1); } @@ -935,7 +935,7 @@ static void _call_f_setTabChangesFocus_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setTabChangesFocus (arg1); } @@ -955,7 +955,7 @@ static void _call_f_setTabStopWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setTabStopWidth (arg1); } @@ -975,7 +975,7 @@ static void _call_f_setTextCursor_2453 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setTextCursor (arg1); } @@ -995,7 +995,7 @@ static void _call_f_setTextInteractionFlags_3396 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setTextInteractionFlags (arg1); } @@ -1015,7 +1015,7 @@ static void _call_f_setUndoRedoEnabled_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setUndoRedoEnabled (arg1); } @@ -1035,7 +1035,7 @@ static void _call_f_setWordWrapMode_2486 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setWordWrapMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1163,8 +1163,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPlainTextEdit::tr (arg1, arg2)); } @@ -1187,9 +1187,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPlainTextEdit::tr (arg1, arg2, arg3)); } @@ -1210,8 +1210,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPlainTextEdit::trUtf8 (arg1, arg2)); } @@ -1234,9 +1234,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPlainTextEdit::trUtf8 (arg1, arg2, arg3)); } @@ -2365,7 +2365,7 @@ static void _call_ctor_QPlainTextEdit_Adaptor_1315 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPlainTextEdit_Adaptor (arg1)); } @@ -2385,8 +2385,8 @@ static void _call_ctor_QPlainTextEdit_Adaptor_3232 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPlainTextEdit_Adaptor (arg1, arg2)); } @@ -2428,7 +2428,7 @@ static void _call_fp_blockBoundingGeometry_c2306 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_blockBoundingGeometry_c2306 (arg1)); } @@ -2446,7 +2446,7 @@ static void _call_fp_blockBoundingRect_c2306 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_blockBoundingRect_c2306 (arg1)); } @@ -2464,7 +2464,7 @@ static void _call_emitter_blockCountChanged_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_blockCountChanged_767 (arg1); } @@ -2615,7 +2615,7 @@ static void _call_emitter_copyAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_copyAvailable_864 (arg1); } @@ -2637,9 +2637,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_create_2208 (arg1, arg2, arg3); } @@ -2691,7 +2691,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_customContextMenuRequested_1916 (arg1); } @@ -2735,8 +2735,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_destroy_1620 (arg1, arg2); } @@ -2755,7 +2755,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_destroyed_1302 (arg1); } @@ -2869,7 +2869,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_drawFrame_1426 (arg1); } @@ -3438,7 +3438,7 @@ static void _call_emitter_modificationChanged_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_modificationChanged_864 (arg1); } @@ -3643,7 +3643,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_receivers_c1731 (arg1)); } @@ -3661,7 +3661,7 @@ static void _call_emitter_redoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_redoAvailable_864 (arg1); } @@ -3779,10 +3779,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -3801,7 +3801,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_setViewportMargins_2115 (arg1); } @@ -3844,7 +3844,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_setupViewport_1315 (arg1); } @@ -3992,7 +3992,7 @@ static void _call_emitter_undoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_undoAvailable_864 (arg1); } @@ -4027,8 +4027,8 @@ static void _call_emitter_updateRequest_2451 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_updateRequest_2451 (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPlastiqueStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPlastiqueStyle.cc index 299431fa4..c082b378d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPlastiqueStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPlastiqueStyle.cc @@ -88,10 +88,10 @@ static void _call_f_drawComplexControl_c9027 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle *)cls)->drawComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -117,10 +117,10 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle *)cls)->drawControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -146,10 +146,10 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle *)cls)->drawPrimitive (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -175,10 +175,10 @@ static void _call_f_hitTestComplexControl_c9517 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QPlastiqueStyle *)cls)->hitTestComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4))); } @@ -201,9 +201,9 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QPlastiqueStyle *)cls)->pixelMetric (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -222,7 +222,7 @@ static void _call_f_polish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle *)cls)->polish (arg1); } @@ -242,7 +242,7 @@ static void _call_f_polish_1843 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle *)cls)->polish (arg1); } @@ -262,7 +262,7 @@ static void _call_f_polish_1418 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle *)cls)->polish (arg1); } @@ -288,10 +288,10 @@ static void _call_f_sizeFromContents_c8477 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QPlastiqueStyle *)cls)->sizeFromContents (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -329,9 +329,9 @@ static void _call_f_standardPixmap_c6956 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPixmap)((QPlastiqueStyle *)cls)->standardPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -356,10 +356,10 @@ static void _call_f_styleHint_c8615 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); - QStyleHintReturn *arg4 = args ? args.read (heap) : (QStyleHintReturn *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QPlastiqueStyle *)cls)->styleHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -384,10 +384,10 @@ static void _call_f_subControlRect_c9798 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QPlastiqueStyle *)cls)->subControlRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -410,9 +410,9 @@ static void _call_f_subElementRect_c6528 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QPlastiqueStyle *)cls)->subElementRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -431,7 +431,7 @@ static void _call_f_unpolish_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle *)cls)->unpolish (arg1); } @@ -451,7 +451,7 @@ static void _call_f_unpolish_1843 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlastiqueStyle *)cls)->unpolish (arg1); } @@ -473,8 +473,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPlastiqueStyle::tr (arg1, arg2)); } @@ -497,9 +497,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPlastiqueStyle::tr (arg1, arg2, arg3)); } @@ -520,8 +520,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPlastiqueStyle::trUtf8 (arg1, arg2)); } @@ -544,9 +544,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPlastiqueStyle::trUtf8 (arg1, arg2, arg3)); } @@ -1141,7 +1141,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPlastiqueStyle_Adaptor *)cls)->emitter_QPlastiqueStyle_destroyed_1302 (arg1); } @@ -1539,11 +1539,11 @@ static void _call_fp_layoutSpacingImplementation_c11697 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QStyleOption *arg4 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg5 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QPlastiqueStyle_Adaptor *)cls)->fp_QPlastiqueStyle_layoutSpacingImplementation_c11697 (arg1, arg2, arg3, arg4, arg5)); } @@ -1662,7 +1662,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPlastiqueStyle_Adaptor *)cls)->fp_QPlastiqueStyle_receivers_c1731 (arg1)); } @@ -1730,9 +1730,9 @@ static void _call_fp_standardIconImplementation_c6956 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QIcon)((QPlastiqueStyle_Adaptor *)cls)->fp_QPlastiqueStyle_standardIconImplementation_c6956 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPolygon.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPolygon.cc index a8655320d..403f5d599 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPolygon.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPolygon.cc @@ -174,7 +174,7 @@ static void _call_ctor_QPolygon_767 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write (new QPolygon (arg1)); } @@ -193,7 +193,7 @@ static void _call_ctor_QPolygon_2138 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPolygon (arg1)); } @@ -212,7 +212,7 @@ static void _call_ctor_QPolygon_2746 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); ret.write (new QPolygon (arg1)); } @@ -233,8 +233,8 @@ static void _call_ctor_QPolygon_2548 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QRect &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write (new QPolygon (arg1, arg2)); } @@ -270,8 +270,8 @@ static void _call_f_containsPoint_c3356 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPolygon *)cls)->containsPoint (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -290,7 +290,7 @@ static void _call_f_intersected_c2138 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QPolygon *)cls)->intersected (arg1)); } @@ -313,9 +313,9 @@ static void _call_f_point_c2457 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->point (arg1, arg2, arg3); } @@ -335,7 +335,7 @@ static void _call_f_point_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QPolygon *)cls)->point (arg1)); } @@ -360,10 +360,10 @@ static void _call_f_putPoints_2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->putPoints (arg1, arg2, arg3, arg4); } @@ -389,10 +389,10 @@ static void _call_f_putPoints_4115 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPolygon &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPolygon &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->putPoints (arg1, arg2, arg3, arg4); } @@ -416,9 +416,9 @@ static void _call_f_setPoint_2085 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->setPoint (arg1, arg2, arg3); } @@ -440,8 +440,8 @@ static void _call_f_setPoint_2575 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->setPoint (arg1, arg2); } @@ -465,9 +465,9 @@ static void _call_f_setPoints_2085 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->setPoints (arg1, arg2, arg3); } @@ -487,7 +487,7 @@ static void _call_f_subtracted_c2138 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QPolygon *)cls)->subtracted (arg1)); } @@ -508,8 +508,8 @@ static void _call_f_translate_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->translate (arg1, arg2); } @@ -529,7 +529,7 @@ static void _call_f_translate_1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->translate (arg1); } @@ -551,8 +551,8 @@ static void _call_f_translated_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QPolygon *)cls)->translated (arg1, arg2)); } @@ -571,7 +571,7 @@ static void _call_f_translated_c1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QPolygon *)cls)->translated (arg1)); } @@ -590,7 +590,7 @@ static void _call_f_united_c2138 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QPolygon *)cls)->united (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPolygonF.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPolygonF.cc index 70b86e8de..2e43dfd56 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPolygonF.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPolygonF.cc @@ -175,7 +175,7 @@ static void _call_ctor_QPolygonF_767 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write (new QPolygonF (arg1)); } @@ -194,7 +194,7 @@ static void _call_ctor_QPolygonF_2208 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPolygonF (arg1)); } @@ -213,7 +213,7 @@ static void _call_ctor_QPolygonF_2816 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); ret.write (new QPolygonF (arg1)); } @@ -232,7 +232,7 @@ static void _call_ctor_QPolygonF_1862 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPolygonF (arg1)); } @@ -251,7 +251,7 @@ static void _call_ctor_QPolygonF_2138 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPolygonF (arg1)); } @@ -287,8 +287,8 @@ static void _call_f_containsPoint_c3426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPolygonF *)cls)->containsPoint (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -307,7 +307,7 @@ static void _call_f_intersected_c2208 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QPolygonF *)cls)->intersected (arg1)); } @@ -341,7 +341,7 @@ static void _call_f_subtracted_c2208 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QPolygonF *)cls)->subtracted (arg1)); } @@ -377,8 +377,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygonF *)cls)->translate (arg1, arg2); } @@ -398,7 +398,7 @@ static void _call_f_translate_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygonF *)cls)->translate (arg1); } @@ -420,8 +420,8 @@ static void _call_f_translated_c2034 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QPolygonF *)cls)->translated (arg1, arg2)); } @@ -440,7 +440,7 @@ static void _call_f_translated_c1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QPolygonF *)cls)->translated (arg1)); } @@ -459,7 +459,7 @@ static void _call_f_united_c2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QPolygonF *)cls)->united (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPrintDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPrintDialog.cc index fe5d9a7a6..5b4d9db24 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPrintDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPrintDialog.cc @@ -128,7 +128,7 @@ static void _call_f_done_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog *)cls)->done (arg1); } @@ -181,8 +181,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog *)cls)->open (arg1, arg2); } @@ -219,8 +219,8 @@ static void _call_f_setOption_5076 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -240,7 +240,7 @@ static void _call_f_setOptions_5016 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog *)cls)->setOptions (arg1); } @@ -260,7 +260,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog *)cls)->setVisible (arg1); } @@ -280,7 +280,7 @@ static void _call_f_testOption_c4320 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPrintDialog *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -301,8 +301,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPrintDialog::tr (arg1, arg2)); } @@ -325,9 +325,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPrintDialog::tr (arg1, arg2, arg3)); } @@ -348,8 +348,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPrintDialog::trUtf8 (arg1, arg2)); } @@ -372,9 +372,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPrintDialog::trUtf8 (arg1, arg2, arg3)); } @@ -1349,8 +1349,8 @@ static void _call_ctor_QPrintDialog_Adaptor_2650 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QPrinter *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPrintDialog_Adaptor (arg1, arg2)); } @@ -1368,7 +1368,7 @@ static void _call_ctor_QPrintDialog_Adaptor_1315 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPrintDialog_Adaptor (arg1)); } @@ -1420,7 +1420,7 @@ static void _call_emitter_accepted_1443 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); + QPrinter *arg1 = gsi::arg_reader() (args, heap); ((QPrintDialog_Adaptor *)cls)->emitter_QPrintDialog_accepted_1443 (arg1); } @@ -1462,7 +1462,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->fp_QPrintDialog_adjustPosition_1315 (arg1); } @@ -1581,9 +1581,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->fp_QPrintDialog_create_2208 (arg1, arg2, arg3); } @@ -1602,7 +1602,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QPrintDialog_Adaptor *)cls)->emitter_QPrintDialog_customContextMenuRequested_1916 (arg1); } @@ -1646,8 +1646,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->fp_QPrintDialog_destroy_1620 (arg1, arg2); } @@ -1666,7 +1666,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPrintDialog_Adaptor *)cls)->emitter_QPrintDialog_destroyed_1302 (arg1); } @@ -1944,7 +1944,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPrintDialog_Adaptor *)cls)->emitter_QPrintDialog_finished_767 (arg1); } @@ -2500,7 +2500,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPrintDialog_Adaptor *)cls)->fp_QPrintDialog_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPrintEngine.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPrintEngine.cc index 119eb323c..83771f9bf 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPrintEngine.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPrintEngine.cc @@ -65,7 +65,7 @@ static void _call_f_metric_c3445 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrintEngine *)cls)->metric (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -114,7 +114,7 @@ static void _call_f_property_c4045 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPrintEngine *)cls)->property (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -135,8 +135,8 @@ static void _call_f_setProperty_6056 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintEngine *)cls)->setProperty (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewDialog.cc index 060ee3be8..76a64c8a7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewDialog.cc @@ -112,7 +112,7 @@ static void _call_f_done_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog *)cls)->done (arg1); } @@ -150,8 +150,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog *)cls)->open (arg1, arg2); } @@ -186,7 +186,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog *)cls)->setVisible (arg1); } @@ -208,8 +208,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPrintPreviewDialog::tr (arg1, arg2)); } @@ -232,9 +232,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPrintPreviewDialog::tr (arg1, arg2, arg3)); } @@ -255,8 +255,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPrintPreviewDialog::trUtf8 (arg1, arg2)); } @@ -279,9 +279,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPrintPreviewDialog::trUtf8 (arg1, arg2, arg3)); } @@ -1247,8 +1247,8 @@ static void _call_ctor_QPrintPreviewDialog_Adaptor_3702 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QPrintPreviewDialog_Adaptor (arg1, arg2)); } @@ -1270,9 +1270,9 @@ static void _call_ctor_QPrintPreviewDialog_Adaptor_5037 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + QPrinter *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QPrintPreviewDialog_Adaptor (arg1, arg2, arg3)); } @@ -1348,7 +1348,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->fp_QPrintPreviewDialog_adjustPosition_1315 (arg1); } @@ -1467,9 +1467,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->fp_QPrintPreviewDialog_create_2208 (arg1, arg2, arg3); } @@ -1488,7 +1488,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewDialog_Adaptor *)cls)->emitter_QPrintPreviewDialog_customContextMenuRequested_1916 (arg1); } @@ -1532,8 +1532,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->fp_QPrintPreviewDialog_destroy_1620 (arg1, arg2); } @@ -1552,7 +1552,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPrintPreviewDialog_Adaptor *)cls)->emitter_QPrintPreviewDialog_destroyed_1302 (arg1); } @@ -1811,7 +1811,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewDialog_Adaptor *)cls)->emitter_QPrintPreviewDialog_finished_767 (arg1); } @@ -2343,7 +2343,7 @@ static void _call_emitter_paintRequested_1443 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); + QPrinter *arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewDialog_Adaptor *)cls)->emitter_QPrintPreviewDialog_paintRequested_1443 (arg1); } @@ -2385,7 +2385,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPrintPreviewDialog_Adaptor *)cls)->fp_QPrintPreviewDialog_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewWidget.cc index 4ee5852d3..33f1446ac 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPrintPreviewWidget.cc @@ -236,7 +236,7 @@ static void _call_f_setCurrentPage_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->setCurrentPage (arg1); } @@ -288,7 +288,7 @@ static void _call_f_setOrientation_2537 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -340,7 +340,7 @@ static void _call_f_setViewMode_3308 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->setViewMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -360,7 +360,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->setVisible (arg1); } @@ -380,7 +380,7 @@ static void _call_f_setZoomFactor_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->setZoomFactor (arg1); } @@ -400,7 +400,7 @@ static void _call_f_setZoomMode_3318 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->setZoomMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -466,7 +466,7 @@ static void _call_f_zoomIn_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args ? args.read (heap) : (double)(1.1); + double arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->zoomIn (arg1); } @@ -501,7 +501,7 @@ static void _call_f_zoomOut_1071 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args ? args.read (heap) : (double)(1.1); + double arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->zoomOut (arg1); } @@ -523,8 +523,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPrintPreviewWidget::tr (arg1, arg2)); } @@ -547,9 +547,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPrintPreviewWidget::tr (arg1, arg2, arg3)); } @@ -570,8 +570,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPrintPreviewWidget::trUtf8 (arg1, arg2)); } @@ -594,9 +594,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPrintPreviewWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1516,9 +1516,9 @@ static void _call_ctor_QPrintPreviewWidget_Adaptor_5037 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + QPrinter *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QPrintPreviewWidget_Adaptor (arg1, arg2, arg3)); } @@ -1538,8 +1538,8 @@ static void _call_ctor_QPrintPreviewWidget_Adaptor_3702 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QPrintPreviewWidget_Adaptor (arg1, arg2)); } @@ -1681,9 +1681,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->fp_QPrintPreviewWidget_create_2208 (arg1, arg2, arg3); } @@ -1702,7 +1702,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewWidget_Adaptor *)cls)->emitter_QPrintPreviewWidget_customContextMenuRequested_1916 (arg1); } @@ -1746,8 +1746,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->fp_QPrintPreviewWidget_destroy_1620 (arg1, arg2); } @@ -1766,7 +1766,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPrintPreviewWidget_Adaptor *)cls)->emitter_QPrintPreviewWidget_destroyed_1302 (arg1); } @@ -2515,7 +2515,7 @@ static void _call_emitter_paintRequested_1443 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); + QPrinter *arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewWidget_Adaptor *)cls)->emitter_QPrintPreviewWidget_paintRequested_1443 (arg1); } @@ -2571,7 +2571,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPrintPreviewWidget_Adaptor *)cls)->fp_QPrintPreviewWidget_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPrinter.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPrinter.cc index fdc775f6b..1f2a94399 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPrinter.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPrinter.cc @@ -229,11 +229,11 @@ static void _call_f_getPageMargins_c6385 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args.read::target_type & > (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->getPageMargins (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()); } @@ -373,7 +373,7 @@ static void _call_f_pageRect_c1789 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QRectF)((QPrinter *)cls)->pageRect (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -437,7 +437,7 @@ static void _call_f_paperRect_c1789 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QRectF)((QPrinter *)cls)->paperRect (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -471,7 +471,7 @@ static void _call_f_paperSize_c1789 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSizeF)((QPrinter *)cls)->paperSize (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -595,7 +595,7 @@ static void _call_f_setCollateCopies_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setCollateCopies (arg1); } @@ -615,7 +615,7 @@ static void _call_f_setColorMode_2273 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setColorMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -635,7 +635,7 @@ static void _call_f_setCreator_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setCreator (arg1); } @@ -655,7 +655,7 @@ static void _call_f_setDocName_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setDocName (arg1); } @@ -675,7 +675,7 @@ static void _call_f_setDoubleSidedPrinting_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setDoubleSidedPrinting (arg1); } @@ -695,7 +695,7 @@ static void _call_f_setDuplex_2388 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setDuplex (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -715,7 +715,7 @@ static void _call_f_setFontEmbeddingEnabled_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setFontEmbeddingEnabled (arg1); } @@ -737,8 +737,8 @@ static void _call_f_setFromTo_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setFromTo (arg1, arg2); } @@ -758,7 +758,7 @@ static void _call_f_setFullPage_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setFullPage (arg1); } @@ -778,7 +778,7 @@ static void _call_f_setNumCopies_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setNumCopies (arg1); } @@ -798,7 +798,7 @@ static void _call_f_setOrientation_2537 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -818,7 +818,7 @@ static void _call_f_setOutputFileName_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setOutputFileName (arg1); } @@ -838,7 +838,7 @@ static void _call_f_setOutputFormat_2647 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setOutputFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -866,11 +866,11 @@ static void _call_f_setPageMargins_5641 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args.read::target_type & > (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPageMargins (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()); } @@ -890,7 +890,7 @@ static void _call_f_setPageOrder_2262 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPageOrder (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -910,7 +910,7 @@ static void _call_f_setPageSize_2165 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPageSize (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -930,7 +930,7 @@ static void _call_f_setPaperSize_2165 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPaperSize (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -952,8 +952,8 @@ static void _call_f_setPaperSize_3556 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPaperSize (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -973,7 +973,7 @@ static void _call_f_setPaperSource_2502 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPaperSource (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -993,7 +993,7 @@ static void _call_f_setPrintProgram_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPrintProgram (arg1); } @@ -1013,7 +1013,7 @@ static void _call_f_setPrintRange_2391 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPrintRange (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1033,7 +1033,7 @@ static void _call_f_setPrinterName_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPrinterName (arg1); } @@ -1053,7 +1053,7 @@ static void _call_f_setResolution_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setResolution (arg1); } @@ -1251,7 +1251,7 @@ static void _call_ctor_QPrinter_Adaptor_2502 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QPrinter::ScreenResolution)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPrinter::ScreenResolution), heap); ret.write (new QPrinter_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1271,8 +1271,8 @@ static void _call_ctor_QPrinter_Adaptor_4924 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPrinterInfo &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QPrinter::ScreenResolution)); + const QPrinterInfo &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPrinter::ScreenResolution), heap); ret.write (new QPrinter_Adaptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1334,8 +1334,8 @@ static void _call_fp_setEngines_3527 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrintEngine *arg1 = args.read (heap); - QPaintEngine *arg2 = args.read (heap); + QPrintEngine *arg1 = gsi::arg_reader() (args, heap); + QPaintEngine *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter_Adaptor *)cls)->fp_QPrinter_setEngines_3527 (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPrinterInfo.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPrinterInfo.cc index 610c0f8a2..e844dab66 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPrinterInfo.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPrinterInfo.cc @@ -66,7 +66,7 @@ static void _call_ctor_QPrinterInfo_2530 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPrinterInfo &arg1 = args.read (heap); + const QPrinterInfo &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPrinterInfo (arg1)); } @@ -85,7 +85,7 @@ static void _call_ctor_QPrinterInfo_2134 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPrinter &arg1 = args.read (heap); + const QPrinter &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPrinterInfo (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_operator_eq__2530 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPrinterInfo &arg1 = args.read (heap); + const QPrinterInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPrinterInfo &)((QPrinterInfo *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQProgressBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQProgressBar.cc index 341f9d39a..5e47fff44 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQProgressBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQProgressBar.cc @@ -248,7 +248,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setAlignment (arg1); } @@ -268,7 +268,7 @@ static void _call_f_setFormat_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setFormat (arg1); } @@ -288,7 +288,7 @@ static void _call_f_setInvertedAppearance_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setInvertedAppearance (arg1); } @@ -308,7 +308,7 @@ static void _call_f_setMaximum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setMaximum (arg1); } @@ -328,7 +328,7 @@ static void _call_f_setMinimum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setMinimum (arg1); } @@ -348,7 +348,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -370,8 +370,8 @@ static void _call_f_setRange_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setRange (arg1, arg2); } @@ -391,7 +391,7 @@ static void _call_f_setTextDirection_2692 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setTextDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -411,7 +411,7 @@ static void _call_f_setTextVisible_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setTextVisible (arg1); } @@ -431,7 +431,7 @@ static void _call_f_setValue_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setValue (arg1); } @@ -513,8 +513,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QProgressBar::tr (arg1, arg2)); } @@ -537,9 +537,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QProgressBar::tr (arg1, arg2, arg3)); } @@ -560,8 +560,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QProgressBar::trUtf8 (arg1, arg2)); } @@ -584,9 +584,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QProgressBar::trUtf8 (arg1, arg2, arg3)); } @@ -1491,7 +1491,7 @@ static void _call_ctor_QProgressBar_Adaptor_1315 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QProgressBar_Adaptor (arg1)); } @@ -1633,9 +1633,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->fp_QProgressBar_create_2208 (arg1, arg2, arg3); } @@ -1654,7 +1654,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QProgressBar_Adaptor *)cls)->emitter_QProgressBar_customContextMenuRequested_1916 (arg1); } @@ -1698,8 +1698,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->fp_QProgressBar_destroy_1620 (arg1, arg2); } @@ -1718,7 +1718,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QProgressBar_Adaptor *)cls)->emitter_QProgressBar_destroyed_1302 (arg1); } @@ -2123,7 +2123,7 @@ static void _call_fp_initStyleOption_c2995 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionProgressBar *arg1 = args.read (heap); + QStyleOptionProgressBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->fp_QProgressBar_initStyleOption_c2995 (arg1); } @@ -2510,7 +2510,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QProgressBar_Adaptor *)cls)->fp_QProgressBar_receivers_c1731 (arg1)); } @@ -2754,7 +2754,7 @@ static void _call_emitter_valueChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QProgressBar_Adaptor *)cls)->emitter_QProgressBar_valueChanged_767 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQProgressDialog.cc b/src/gsiqt/qt4/QtGui/gsiDeclQProgressDialog.cc index 49a613436..d97dceecc 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQProgressDialog.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQProgressDialog.cc @@ -238,8 +238,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->open (arg1, arg2); } @@ -275,7 +275,7 @@ static void _call_f_setAutoClose_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setAutoClose (arg1); } @@ -295,7 +295,7 @@ static void _call_f_setAutoReset_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setAutoReset (arg1); } @@ -315,7 +315,7 @@ static void _call_f_setBar_1833 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QProgressBar *arg1 = args.read (heap); + QProgressBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setBar (arg1); } @@ -335,7 +335,7 @@ static void _call_f_setCancelButton_1755 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPushButton *arg1 = args.read (heap); + QPushButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setCancelButton (arg1); } @@ -355,7 +355,7 @@ static void _call_f_setCancelButtonText_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setCancelButtonText (arg1); } @@ -375,7 +375,7 @@ static void _call_f_setLabel_1183 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLabel *arg1 = args.read (heap); + QLabel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setLabel (arg1); } @@ -395,7 +395,7 @@ static void _call_f_setLabelText_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setLabelText (arg1); } @@ -415,7 +415,7 @@ static void _call_f_setMaximum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setMaximum (arg1); } @@ -435,7 +435,7 @@ static void _call_f_setMinimum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setMinimum (arg1); } @@ -455,7 +455,7 @@ static void _call_f_setMinimumDuration_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setMinimumDuration (arg1); } @@ -477,8 +477,8 @@ static void _call_f_setRange_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setRange (arg1, arg2); } @@ -498,7 +498,7 @@ static void _call_f_setValue_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setValue (arg1); } @@ -565,8 +565,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QProgressDialog::tr (arg1, arg2)); } @@ -589,9 +589,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QProgressDialog::tr (arg1, arg2, arg3)); } @@ -612,8 +612,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QProgressDialog::trUtf8 (arg1, arg2)); } @@ -636,9 +636,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QProgressDialog::trUtf8 (arg1, arg2, arg3)); } @@ -1629,8 +1629,8 @@ static void _call_ctor_QProgressDialog_Adaptor_3702 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QProgressDialog_Adaptor (arg1, arg2)); } @@ -1658,12 +1658,12 @@ static void _call_ctor_QProgressDialog_Adaptor_8854 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - QWidget *arg5 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QProgressDialog_Adaptor (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -1739,7 +1739,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->fp_QProgressDialog_adjustPosition_1315 (arg1); } @@ -1872,9 +1872,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->fp_QProgressDialog_create_2208 (arg1, arg2, arg3); } @@ -1893,7 +1893,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QProgressDialog_Adaptor *)cls)->emitter_QProgressDialog_customContextMenuRequested_1916 (arg1); } @@ -1937,8 +1937,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->fp_QProgressDialog_destroy_1620 (arg1, arg2); } @@ -1957,7 +1957,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QProgressDialog_Adaptor *)cls)->emitter_QProgressDialog_destroyed_1302 (arg1); } @@ -2216,7 +2216,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QProgressDialog_Adaptor *)cls)->emitter_QProgressDialog_finished_767 (arg1); } @@ -2787,7 +2787,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QProgressDialog_Adaptor *)cls)->fp_QProgressDialog_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQPushButton.cc b/src/gsiqt/qt4/QtGui/gsiDeclQPushButton.cc index 163afc410..a0e0ae80b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQPushButton.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQPushButton.cc @@ -189,7 +189,7 @@ static void _call_f_setAutoDefault_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton *)cls)->setAutoDefault (arg1); } @@ -209,7 +209,7 @@ static void _call_f_setDefault_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton *)cls)->setDefault (arg1); } @@ -229,7 +229,7 @@ static void _call_f_setFlat_864 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton *)cls)->setFlat (arg1); } @@ -249,7 +249,7 @@ static void _call_f_setMenu_1108 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenu *arg1 = args.read (heap); + QMenu *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton *)cls)->setMenu (arg1); } @@ -302,8 +302,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPushButton::tr (arg1, arg2)); } @@ -326,9 +326,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPushButton::tr (arg1, arg2, arg3)); } @@ -349,8 +349,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QPushButton::trUtf8 (arg1, arg2)); } @@ -373,9 +373,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QPushButton::trUtf8 (arg1, arg2, arg3)); } @@ -1345,7 +1345,7 @@ static void _call_ctor_QPushButton_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPushButton_Adaptor (arg1)); } @@ -1365,8 +1365,8 @@ static void _call_ctor_QPushButton_Adaptor_3232 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPushButton_Adaptor (arg1, arg2)); } @@ -1388,9 +1388,9 @@ static void _call_ctor_QPushButton_Adaptor_4911 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPushButton_Adaptor (arg1, arg2, arg3)); } @@ -1500,7 +1500,7 @@ static void _call_emitter_clicked_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QPushButton_Adaptor *)cls)->emitter_QPushButton_clicked_864 (arg1); } @@ -1570,9 +1570,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->fp_QPushButton_create_2208 (arg1, arg2, arg3); } @@ -1591,7 +1591,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QPushButton_Adaptor *)cls)->emitter_QPushButton_customContextMenuRequested_1916 (arg1); } @@ -1635,8 +1635,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->fp_QPushButton_destroy_1620 (arg1, arg2); } @@ -1655,7 +1655,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPushButton_Adaptor *)cls)->emitter_QPushButton_destroyed_1302 (arg1); } @@ -2083,7 +2083,7 @@ static void _call_fp_initStyleOption_c2501 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionButton *arg1 = args.read (heap); + QStyleOptionButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->fp_QPushButton_initStyleOption_c2501 (arg1); } @@ -2504,7 +2504,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPushButton_Adaptor *)cls)->fp_QPushButton_receivers_c1731 (arg1)); } @@ -2728,7 +2728,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QPushButton_Adaptor *)cls)->emitter_QPushButton_toggled_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQQuaternion.cc b/src/gsiqt/qt4/QtGui/gsiDeclQQuaternion.cc index 6631bee2d..4fb73bdb3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQQuaternion.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQQuaternion.cc @@ -73,10 +73,10 @@ static void _call_ctor_QQuaternion_3960 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write (new QQuaternion (arg1, arg2, arg3, arg4)); } @@ -97,8 +97,8 @@ static void _call_ctor_QQuaternion_3103 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); ret.write (new QQuaternion (arg1, arg2)); } @@ -117,7 +117,7 @@ static void _call_ctor_QQuaternion_2141 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); ret.write (new QQuaternion (arg1)); } @@ -242,7 +242,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion &)((QQuaternion *)cls)->operator*= (arg1)); } @@ -261,7 +261,7 @@ static void _call_f_operator_star__eq__2456 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QQuaternion &arg1 = args.read (heap); + const QQuaternion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion &)((QQuaternion *)cls)->operator*= (arg1)); } @@ -280,7 +280,7 @@ static void _call_f_operator_plus__eq__2456 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QQuaternion &arg1 = args.read (heap); + const QQuaternion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion &)((QQuaternion *)cls)->operator+= (arg1)); } @@ -299,7 +299,7 @@ static void _call_f_operator_minus__eq__2456 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QQuaternion &arg1 = args.read (heap); + const QQuaternion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion &)((QQuaternion *)cls)->operator-= (arg1)); } @@ -318,7 +318,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion &)((QQuaternion *)cls)->operator/= (arg1)); } @@ -337,7 +337,7 @@ static void _call_f_rotatedVector_c2140 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D)((QQuaternion *)cls)->rotatedVector (arg1)); } @@ -371,7 +371,7 @@ static void _call_f_setScalar_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->setScalar (arg1); } @@ -391,7 +391,7 @@ static void _call_f_setVector_2140 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->setVector (arg1); } @@ -415,9 +415,9 @@ static void _call_f_setVector_2997 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->setVector (arg1, arg2, arg3); } @@ -437,7 +437,7 @@ static void _call_f_setX_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->setX (arg1); } @@ -457,7 +457,7 @@ static void _call_f_setY_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->setY (arg1); } @@ -477,7 +477,7 @@ static void _call_f_setZ_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->setZ (arg1); } @@ -574,8 +574,8 @@ static void _call_f_fromAxisAndAngle_3103 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - double arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion)QQuaternion::fromAxisAndAngle (arg1, arg2)); } @@ -600,10 +600,10 @@ static void _call_f_fromAxisAndAngle_3960 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion)QQuaternion::fromAxisAndAngle (arg1, arg2, arg3, arg4)); } @@ -626,9 +626,9 @@ static void _call_f_nlerp_5767 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QQuaternion &arg1 = args.read (heap); - const QQuaternion &arg2 = args.read (heap); - double arg3 = args.read (heap); + const QQuaternion &arg1 = gsi::arg_reader() (args, heap); + const QQuaternion &arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion)QQuaternion::nlerp (arg1, arg2, arg3)); } @@ -651,9 +651,9 @@ static void _call_f_slerp_5767 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QQuaternion &arg1 = args.read (heap); - const QQuaternion &arg2 = args.read (heap); - double arg3 = args.read (heap); + const QQuaternion &arg1 = gsi::arg_reader() (args, heap); + const QQuaternion &arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion)QQuaternion::slerp (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQRadialGradient.cc b/src/gsiqt/qt4/QtGui/gsiDeclQRadialGradient.cc index 7a1db05a1..3a04fb02a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQRadialGradient.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQRadialGradient.cc @@ -72,9 +72,9 @@ static void _call_ctor_QRadialGradient_4827 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - double arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); ret.write (new QRadialGradient (arg1, arg2, arg3)); } @@ -101,11 +101,11 @@ static void _call_ctor_QRadialGradient_4923 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); ret.write (new QRadialGradient (arg1, arg2, arg3, arg4, arg5)); } @@ -126,8 +126,8 @@ static void _call_ctor_QRadialGradient_2949 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - double arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write (new QRadialGradient (arg1, arg2)); } @@ -150,9 +150,9 @@ static void _call_ctor_QRadialGradient_2997 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write (new QRadialGradient (arg1, arg2, arg3)); } @@ -216,7 +216,7 @@ static void _call_f_setCenter_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadialGradient *)cls)->setCenter (arg1); } @@ -238,8 +238,8 @@ static void _call_f_setCenter_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadialGradient *)cls)->setCenter (arg1, arg2); } @@ -259,7 +259,7 @@ static void _call_f_setFocalPoint_1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadialGradient *)cls)->setFocalPoint (arg1); } @@ -281,8 +281,8 @@ static void _call_f_setFocalPoint_2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadialGradient *)cls)->setFocalPoint (arg1, arg2); } @@ -302,7 +302,7 @@ static void _call_f_setRadius_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadialGradient *)cls)->setRadius (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQRadioButton.cc b/src/gsiqt/qt4/QtGui/gsiDeclQRadioButton.cc index 528ae9ad8..4a5b3465e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQRadioButton.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQRadioButton.cc @@ -130,8 +130,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QRadioButton::tr (arg1, arg2)); } @@ -154,9 +154,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QRadioButton::tr (arg1, arg2, arg3)); } @@ -177,8 +177,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QRadioButton::trUtf8 (arg1, arg2)); } @@ -201,9 +201,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QRadioButton::trUtf8 (arg1, arg2, arg3)); } @@ -1151,7 +1151,7 @@ static void _call_ctor_QRadioButton_Adaptor_1315 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QRadioButton_Adaptor (arg1)); } @@ -1171,8 +1171,8 @@ static void _call_ctor_QRadioButton_Adaptor_3232 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QRadioButton_Adaptor (arg1, arg2)); } @@ -1282,7 +1282,7 @@ static void _call_emitter_clicked_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QRadioButton_Adaptor *)cls)->emitter_QRadioButton_clicked_864 (arg1); } @@ -1352,9 +1352,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->fp_QRadioButton_create_2208 (arg1, arg2, arg3); } @@ -1373,7 +1373,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QRadioButton_Adaptor *)cls)->emitter_QRadioButton_customContextMenuRequested_1916 (arg1); } @@ -1417,8 +1417,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->fp_QRadioButton_destroy_1620 (arg1, arg2); } @@ -1437,7 +1437,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QRadioButton_Adaptor *)cls)->emitter_QRadioButton_destroyed_1302 (arg1); } @@ -1865,7 +1865,7 @@ static void _call_fp_initStyleOption_c2501 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionButton *arg1 = args.read (heap); + QStyleOptionButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->fp_QRadioButton_initStyleOption_c2501 (arg1); } @@ -2286,7 +2286,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRadioButton_Adaptor *)cls)->fp_QRadioButton_receivers_c1731 (arg1)); } @@ -2510,7 +2510,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QRadioButton_Adaptor *)cls)->emitter_QRadioButton_toggled_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQRegExpValidator.cc b/src/gsiqt/qt4/QtGui/gsiDeclQRegExpValidator.cc index 07020161f..1379ecc00 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQRegExpValidator.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQRegExpValidator.cc @@ -85,7 +85,7 @@ static void _call_f_setRegExp_1981 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExpValidator *)cls)->setRegExp (arg1); } @@ -107,8 +107,8 @@ static void _call_f_validate_c2171 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QRegExpValidator *)cls)->validate (arg1, arg2))); } @@ -129,8 +129,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QRegExpValidator::tr (arg1, arg2)); } @@ -153,9 +153,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QRegExpValidator::tr (arg1, arg2, arg3)); } @@ -176,8 +176,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QRegExpValidator::trUtf8 (arg1, arg2)); } @@ -200,9 +200,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QRegExpValidator::trUtf8 (arg1, arg2, arg3)); } @@ -414,7 +414,7 @@ static void _call_ctor_QRegExpValidator_Adaptor_1302 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QRegExpValidator_Adaptor (arg1)); } @@ -434,8 +434,8 @@ static void _call_ctor_QRegExpValidator_Adaptor_3175 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); ret.write (new QRegExpValidator_Adaptor (arg1, arg2)); } @@ -501,7 +501,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QRegExpValidator_Adaptor *)cls)->emitter_QRegExpValidator_destroyed_1302 (arg1); } @@ -616,7 +616,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRegExpValidator_Adaptor *)cls)->fp_QRegExpValidator_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQRegion.cc b/src/gsiqt/qt4/QtGui/gsiDeclQRegion.cc index 2181de836..f991440fb 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQRegion.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQRegion.cc @@ -83,11 +83,11 @@ static void _call_ctor_QRegion_4911 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegion::Rectangle)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegion::Rectangle), heap); ret.write (new QRegion (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -108,8 +108,8 @@ static void _call_ctor_QRegion_3959 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegion::Rectangle)); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegion::Rectangle), heap); ret.write (new QRegion (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -130,8 +130,8 @@ static void _call_ctor_QRegion_3578 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::OddEvenFill)); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::OddEvenFill), heap); ret.write (new QRegion (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -150,7 +150,7 @@ static void _call_ctor_QRegion_2006 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write (new QRegion (arg1)); } @@ -169,7 +169,7 @@ static void _call_ctor_QRegion_1999 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBitmap &arg1 = args.read (heap); + const QBitmap &arg1 = gsi::arg_reader() (args, heap); ret.write (new QRegion (arg1)); } @@ -203,7 +203,7 @@ static void _call_f_contains_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegion *)cls)->contains (arg1)); } @@ -222,7 +222,7 @@ static void _call_f_contains_c1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegion *)cls)->contains (arg1)); } @@ -241,7 +241,7 @@ static void _call_f_eor_c2006 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->eor (arg1)); } @@ -260,7 +260,7 @@ static void _call_f_intersect_c2006 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->intersect (arg1)); } @@ -279,7 +279,7 @@ static void _call_f_intersect_c1792 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->intersect (arg1)); } @@ -298,7 +298,7 @@ static void _call_f_intersected_c2006 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->intersected (arg1)); } @@ -317,7 +317,7 @@ static void _call_f_intersected_c1792 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->intersected (arg1)); } @@ -336,7 +336,7 @@ static void _call_f_intersects_c2006 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegion *)cls)->intersects (arg1)); } @@ -355,7 +355,7 @@ static void _call_f_intersects_c1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegion *)cls)->intersects (arg1)); } @@ -404,7 +404,7 @@ static void _call_f_operator_excl__eq__c2006 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegion *)cls)->operator!= (arg1)); } @@ -423,7 +423,7 @@ static void _call_f_operator_amp__c2006 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((const QRegion)((QRegion *)cls)->operator& (arg1)); } @@ -442,7 +442,7 @@ static void _call_f_operator_amp__c1792 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((const QRegion)((QRegion *)cls)->operator& (arg1)); } @@ -461,7 +461,7 @@ static void _call_f_operator_amp__eq__2006 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator&= (arg1)); } @@ -480,7 +480,7 @@ static void _call_f_operator_amp__eq__1792 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator&= (arg1)); } @@ -499,7 +499,7 @@ static void _call_f_operator_plus__c2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((const QRegion)((QRegion *)cls)->operator+ (arg1)); } @@ -518,7 +518,7 @@ static void _call_f_operator_plus__c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((const QRegion)((QRegion *)cls)->operator+ (arg1)); } @@ -537,7 +537,7 @@ static void _call_f_operator_plus__eq__2006 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator+= (arg1)); } @@ -556,7 +556,7 @@ static void _call_f_operator_plus__eq__1792 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator+= (arg1)); } @@ -575,7 +575,7 @@ static void _call_f_operator_minus__c2006 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((const QRegion)((QRegion *)cls)->operator- (arg1)); } @@ -594,7 +594,7 @@ static void _call_f_operator_minus__eq__2006 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator-= (arg1)); } @@ -613,7 +613,7 @@ static void _call_f_operator_eq__2006 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator= (arg1)); } @@ -632,7 +632,7 @@ static void _call_f_operator_eq__eq__c2006 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegion *)cls)->operator== (arg1)); } @@ -651,7 +651,7 @@ static void _call_f_operator_acute__c2006 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((const QRegion)((QRegion *)cls)->operator^ (arg1)); } @@ -670,7 +670,7 @@ static void _call_f_operator_acute__eq__2006 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator^= (arg1)); } @@ -689,7 +689,7 @@ static void _call_f_operator_pipe__c2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((const QRegion)((QRegion *)cls)->operator| (arg1)); } @@ -708,7 +708,7 @@ static void _call_f_operator_pipe__eq__2006 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator|= (arg1)); } @@ -757,7 +757,7 @@ static void _call_f_subtract_c2006 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->subtract (arg1)); } @@ -776,7 +776,7 @@ static void _call_f_subtracted_c2006 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->subtracted (arg1)); } @@ -797,8 +797,8 @@ static void _call_f_translate_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegion *)cls)->translate (arg1, arg2); } @@ -818,7 +818,7 @@ static void _call_f_translate_1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegion *)cls)->translate (arg1); } @@ -840,8 +840,8 @@ static void _call_f_translated_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->translated (arg1, arg2)); } @@ -860,7 +860,7 @@ static void _call_f_translated_c1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->translated (arg1)); } @@ -879,7 +879,7 @@ static void _call_f_unite_c2006 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->unite (arg1)); } @@ -898,7 +898,7 @@ static void _call_f_unite_c1792 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->unite (arg1)); } @@ -917,7 +917,7 @@ static void _call_f_united_c2006 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->united (arg1)); } @@ -936,7 +936,7 @@ static void _call_f_united_c1792 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->united (arg1)); } @@ -955,7 +955,7 @@ static void _call_f_xored_c2006 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->xored (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQResizeEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQResizeEvent.cc index 85723f8e5..19d7ffd6b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQResizeEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQResizeEvent.cc @@ -120,8 +120,8 @@ static void _call_ctor_QResizeEvent_Adaptor_3502 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); ret.write (new QResizeEvent_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQRubberBand.cc b/src/gsiqt/qt4/QtGui/gsiDeclQRubberBand.cc index 54108e255..a3386493e 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQRubberBand.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQRubberBand.cc @@ -114,8 +114,8 @@ static void _call_f_move_1426 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand *)cls)->move (arg1, arg2); } @@ -135,7 +135,7 @@ static void _call_f_move_1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand *)cls)->move (arg1); } @@ -157,8 +157,8 @@ static void _call_f_resize_1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand *)cls)->resize (arg1, arg2); } @@ -178,7 +178,7 @@ static void _call_f_resize_1805 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand *)cls)->resize (arg1); } @@ -198,7 +198,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand *)cls)->setGeometry (arg1); } @@ -224,10 +224,10 @@ static void _call_f_setGeometry_2744 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand *)cls)->setGeometry (arg1, arg2, arg3, arg4); } @@ -264,8 +264,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QRubberBand::tr (arg1, arg2)); } @@ -288,9 +288,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QRubberBand::tr (arg1, arg2, arg3)); } @@ -311,8 +311,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QRubberBand::trUtf8 (arg1, arg2)); } @@ -335,9 +335,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QRubberBand::trUtf8 (arg1, arg2, arg3)); } @@ -1205,8 +1205,8 @@ static void _call_ctor_QRubberBand_Adaptor_3320 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QRubberBand_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1348,9 +1348,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->fp_QRubberBand_create_2208 (arg1, arg2, arg3); } @@ -1369,7 +1369,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QRubberBand_Adaptor *)cls)->emitter_QRubberBand_customContextMenuRequested_1916 (arg1); } @@ -1413,8 +1413,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->fp_QRubberBand_destroy_1620 (arg1, arg2); } @@ -1433,7 +1433,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QRubberBand_Adaptor *)cls)->emitter_QRubberBand_destroyed_1302 (arg1); } @@ -1838,7 +1838,7 @@ static void _call_fp_initStyleOption_c2848 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionRubberBand *arg1 = args.read (heap); + QStyleOptionRubberBand *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->fp_QRubberBand_initStyleOption_c2848 (arg1); } @@ -2225,7 +2225,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRubberBand_Adaptor *)cls)->fp_QRubberBand_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQScrollArea.cc b/src/gsiqt/qt4/QtGui/gsiDeclQScrollArea.cc index 39cf28e37..2e915ada6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQScrollArea.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQScrollArea.cc @@ -133,10 +133,10 @@ static void _call_f_ensureVisible_2744 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(50); - int arg4 = args ? args.read (heap) : (int)(50); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea *)cls)->ensureVisible (arg1, arg2, arg3, arg4); } @@ -160,9 +160,9 @@ static void _call_f_ensureWidgetVisible_2633 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(50); - int arg3 = args ? args.read (heap) : (int)(50); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea *)cls)->ensureWidgetVisible (arg1, arg2, arg3); } @@ -182,7 +182,7 @@ static void _call_f_focusNextPrevChild_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea *)cls)->focusNextPrevChild (arg1)); } @@ -201,7 +201,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea *)cls)->setAlignment (arg1); } @@ -221,7 +221,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea *)cls)->setWidget (arg1); } @@ -241,7 +241,7 @@ static void _call_f_setWidgetResizable_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea *)cls)->setWidgetResizable (arg1); } @@ -323,8 +323,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QScrollArea::tr (arg1, arg2)); } @@ -347,9 +347,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QScrollArea::tr (arg1, arg2, arg3)); } @@ -370,8 +370,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QScrollArea::trUtf8 (arg1, arg2)); } @@ -394,9 +394,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QScrollArea::trUtf8 (arg1, arg2, arg3)); } @@ -1313,7 +1313,7 @@ static void _call_ctor_QScrollArea_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QScrollArea_Adaptor (arg1)); } @@ -1455,9 +1455,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->fp_QScrollArea_create_2208 (arg1, arg2, arg3); } @@ -1476,7 +1476,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QScrollArea_Adaptor *)cls)->emitter_QScrollArea_customContextMenuRequested_1916 (arg1); } @@ -1520,8 +1520,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->fp_QScrollArea_destroy_1620 (arg1, arg2); } @@ -1540,7 +1540,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QScrollArea_Adaptor *)cls)->emitter_QScrollArea_destroyed_1302 (arg1); } @@ -1654,7 +1654,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->fp_QScrollArea_drawFrame_1426 (arg1); } @@ -2332,7 +2332,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QScrollArea_Adaptor *)cls)->fp_QScrollArea_receivers_c1731 (arg1)); } @@ -2436,10 +2436,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->fp_QScrollArea_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -2458,7 +2458,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->fp_QScrollArea_setViewportMargins_2115 (arg1); } @@ -2501,7 +2501,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->fp_QScrollArea_setupViewport_1315 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQScrollBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQScrollBar.cc index 1a2be80e4..1720e2139 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQScrollBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQScrollBar.cc @@ -112,7 +112,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollBar *)cls)->event (arg1)); } @@ -148,8 +148,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QScrollBar::tr (arg1, arg2)); } @@ -172,9 +172,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QScrollBar::tr (arg1, arg2, arg3)); } @@ -195,8 +195,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QScrollBar::trUtf8 (arg1, arg2)); } @@ -219,9 +219,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QScrollBar::trUtf8 (arg1, arg2, arg3)); } @@ -1162,7 +1162,7 @@ static void _call_ctor_QScrollBar_Adaptor_1315 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QScrollBar_Adaptor (arg1)); } @@ -1182,8 +1182,8 @@ static void _call_ctor_QScrollBar_Adaptor_3120 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QScrollBar_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1225,7 +1225,7 @@ static void _call_emitter_actionTriggered_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QScrollBar_Adaptor *)cls)->emitter_QScrollBar_actionTriggered_767 (arg1); } @@ -1343,9 +1343,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->fp_QScrollBar_create_2208 (arg1, arg2, arg3); } @@ -1364,7 +1364,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QScrollBar_Adaptor *)cls)->emitter_QScrollBar_customContextMenuRequested_1916 (arg1); } @@ -1408,8 +1408,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->fp_QScrollBar_destroy_1620 (arg1, arg2); } @@ -1428,7 +1428,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QScrollBar_Adaptor *)cls)->emitter_QScrollBar_destroyed_1302 (arg1); } @@ -1833,7 +1833,7 @@ static void _call_fp_initStyleOption_c2476 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSlider *arg1 = args.read (heap); + QStyleOptionSlider *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->fp_QScrollBar_initStyleOption_c2476 (arg1); } @@ -2222,8 +2222,8 @@ static void _call_emitter_rangeChanged_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QScrollBar_Adaptor *)cls)->emitter_QScrollBar_rangeChanged_1426 (arg1, arg2); } @@ -2241,7 +2241,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QScrollBar_Adaptor *)cls)->fp_QScrollBar_receivers_c1731 (arg1)); } @@ -2330,9 +2330,9 @@ static void _call_fp_setRepeatAction_4599 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args ? args.read (heap) : (int)(500); - int arg3 = args ? args.read (heap) : (int)(50); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (500, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->fp_QScrollBar_setRepeatAction_4599 (arg1, arg2, arg3); } @@ -2442,7 +2442,7 @@ static void _call_emitter_sliderMoved_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QScrollBar_Adaptor *)cls)->emitter_QScrollBar_sliderMoved_767 (arg1); } @@ -2575,7 +2575,7 @@ static void _call_emitter_valueChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QScrollBar_Adaptor *)cls)->emitter_QScrollBar_valueChanged_767 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQShortcut.cc b/src/gsiqt/qt4/QtGui/gsiDeclQShortcut.cc index 9fceb9a0c..63f6c080a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQShortcut.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQShortcut.cc @@ -160,7 +160,7 @@ static void _call_f_setAutoRepeat_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut *)cls)->setAutoRepeat (arg1); } @@ -180,7 +180,7 @@ static void _call_f_setContext_2350 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut *)cls)->setContext (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -200,7 +200,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut *)cls)->setEnabled (arg1); } @@ -220,7 +220,7 @@ static void _call_f_setKey_2516 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut *)cls)->setKey (arg1); } @@ -240,7 +240,7 @@ static void _call_f_setWhatsThis_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut *)cls)->setWhatsThis (arg1); } @@ -277,8 +277,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QShortcut::tr (arg1, arg2)); } @@ -301,9 +301,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QShortcut::tr (arg1, arg2, arg3)); } @@ -324,8 +324,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QShortcut::trUtf8 (arg1, arg2)); } @@ -348,9 +348,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QShortcut::trUtf8 (arg1, arg2, arg3)); } @@ -571,7 +571,7 @@ static void _call_ctor_QShortcut_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QShortcut_Adaptor (arg1)); } @@ -597,11 +597,11 @@ static void _call_ctor_QShortcut_Adaptor_9211 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const char *arg3 = args ? args.read (heap) : (const char *)(0); - const char *arg4 = args ? args.read (heap) : (const char *)(0); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::WindowShortcut)); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const char *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::WindowShortcut), heap); ret.write (new QShortcut_Adaptor (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -695,7 +695,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QShortcut_Adaptor *)cls)->emitter_QShortcut_destroyed_1302 (arg1); } @@ -786,7 +786,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QShortcut_Adaptor *)cls)->fp_QShortcut_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQShortcutEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQShortcutEvent.cc index 2d0b52773..21fdf3403 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQShortcutEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQShortcutEvent.cc @@ -192,9 +192,9 @@ static void _call_ctor_QShortcutEvent_Adaptor_3931 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); - int arg2 = args.read (heap); - bool arg3 = args ? args.read (heap) : (bool)(false); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write (new QShortcutEvent_Adaptor (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSizeGrip.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSizeGrip.cc index 41f799e31..2db1f7098 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSizeGrip.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSizeGrip.cc @@ -111,7 +111,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip *)cls)->setVisible (arg1); } @@ -148,8 +148,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSizeGrip::tr (arg1, arg2)); } @@ -172,9 +172,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSizeGrip::tr (arg1, arg2, arg3)); } @@ -195,8 +195,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSizeGrip::trUtf8 (arg1, arg2)); } @@ -219,9 +219,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSizeGrip::trUtf8 (arg1, arg2, arg3)); } @@ -1071,7 +1071,7 @@ static void _call_ctor_QSizeGrip_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QSizeGrip_Adaptor (arg1)); } @@ -1213,9 +1213,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->fp_QSizeGrip_create_2208 (arg1, arg2, arg3); } @@ -1234,7 +1234,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QSizeGrip_Adaptor *)cls)->emitter_QSizeGrip_customContextMenuRequested_1916 (arg1); } @@ -1278,8 +1278,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->fp_QSizeGrip_destroy_1620 (arg1, arg2); } @@ -1298,7 +1298,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSizeGrip_Adaptor *)cls)->emitter_QSizeGrip_destroyed_1302 (arg1); } @@ -2071,7 +2071,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSizeGrip_Adaptor *)cls)->fp_QSizeGrip_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSizePolicy.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSizePolicy.cc index 5e4e26735..96e994101 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSizePolicy.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSizePolicy.cc @@ -67,8 +67,8 @@ static void _call_ctor_QSizePolicy_4476 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QSizePolicy (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -91,9 +91,9 @@ static void _call_ctor_QSizePolicy_7191 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QSizePolicy (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -187,7 +187,7 @@ static void _call_f_operator_excl__eq__c2429 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizePolicy &arg1 = args.read (heap); + const QSizePolicy &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSizePolicy *)cls)->operator!= (arg1)); } @@ -206,7 +206,7 @@ static void _call_f_operator_eq__eq__c2429 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizePolicy &arg1 = args.read (heap); + const QSizePolicy &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSizePolicy *)cls)->operator== (arg1)); } @@ -225,7 +225,7 @@ static void _call_f_setControlType_2823 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizePolicy *)cls)->setControlType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -245,7 +245,7 @@ static void _call_f_setHeightForWidth_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizePolicy *)cls)->setHeightForWidth (arg1); } @@ -265,7 +265,7 @@ static void _call_f_setHorizontalPolicy_2292 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizePolicy *)cls)->setHorizontalPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -285,7 +285,7 @@ static void _call_f_setHorizontalStretch_1855 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned char arg1 = args.read (heap); + unsigned char arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizePolicy *)cls)->setHorizontalStretch (arg1); } @@ -305,7 +305,7 @@ static void _call_f_setVerticalPolicy_2292 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizePolicy *)cls)->setVerticalPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -325,7 +325,7 @@ static void _call_f_setVerticalStretch_1855 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned char arg1 = args.read (heap); + unsigned char arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizePolicy *)cls)->setVerticalStretch (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSlider.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSlider.cc index f2596b80b..f1220366d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSlider.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSlider.cc @@ -112,7 +112,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSlider *)cls)->event (arg1)); } @@ -146,7 +146,7 @@ static void _call_f_setTickInterval_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider *)cls)->setTickInterval (arg1); } @@ -166,7 +166,7 @@ static void _call_f_setTickPosition_2492 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider *)cls)->setTickPosition (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -233,8 +233,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSlider::tr (arg1, arg2)); } @@ -257,9 +257,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSlider::tr (arg1, arg2, arg3)); } @@ -280,8 +280,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSlider::trUtf8 (arg1, arg2)); } @@ -304,9 +304,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSlider::trUtf8 (arg1, arg2, arg3)); } @@ -1252,7 +1252,7 @@ static void _call_ctor_QSlider_Adaptor_1315 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSlider_Adaptor (arg1)); } @@ -1272,8 +1272,8 @@ static void _call_ctor_QSlider_Adaptor_3120 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSlider_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1315,7 +1315,7 @@ static void _call_emitter_actionTriggered_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSlider_Adaptor *)cls)->emitter_QSlider_actionTriggered_767 (arg1); } @@ -1433,9 +1433,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->fp_QSlider_create_2208 (arg1, arg2, arg3); } @@ -1454,7 +1454,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QSlider_Adaptor *)cls)->emitter_QSlider_customContextMenuRequested_1916 (arg1); } @@ -1498,8 +1498,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->fp_QSlider_destroy_1620 (arg1, arg2); } @@ -1518,7 +1518,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSlider_Adaptor *)cls)->emitter_QSlider_destroyed_1302 (arg1); } @@ -1923,7 +1923,7 @@ static void _call_fp_initStyleOption_c2476 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSlider *arg1 = args.read (heap); + QStyleOptionSlider *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->fp_QSlider_initStyleOption_c2476 (arg1); } @@ -2312,8 +2312,8 @@ static void _call_emitter_rangeChanged_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QSlider_Adaptor *)cls)->emitter_QSlider_rangeChanged_1426 (arg1, arg2); } @@ -2331,7 +2331,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSlider_Adaptor *)cls)->fp_QSlider_receivers_c1731 (arg1)); } @@ -2420,9 +2420,9 @@ static void _call_fp_setRepeatAction_4599 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args ? args.read (heap) : (int)(500); - int arg3 = args ? args.read (heap) : (int)(50); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (500, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->fp_QSlider_setRepeatAction_4599 (arg1, arg2, arg3); } @@ -2532,7 +2532,7 @@ static void _call_emitter_sliderMoved_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSlider_Adaptor *)cls)->emitter_QSlider_sliderMoved_767 (arg1); } @@ -2665,7 +2665,7 @@ static void _call_emitter_valueChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSlider_Adaptor *)cls)->emitter_QSlider_valueChanged_767 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSortFilterProxyModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSortFilterProxyModel.cc index 7630e097c..1f8412e48 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSortFilterProxyModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSortFilterProxyModel.cc @@ -75,7 +75,7 @@ static void _call_f_buddy_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel *)cls)->buddy (arg1)); } @@ -94,7 +94,7 @@ static void _call_f_canFetchMore_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->canFetchMore (arg1)); } @@ -129,7 +129,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSortFilterProxyModel *)cls)->columnCount (arg1)); } @@ -150,8 +150,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSortFilterProxyModel *)cls)->data (arg1, arg2)); } @@ -178,11 +178,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -216,7 +216,7 @@ static void _call_f_fetchMore_2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->fetchMore (arg1); } @@ -296,7 +296,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSortFilterProxyModel *)cls)->flags (arg1)); } @@ -315,7 +315,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->hasChildren (arg1)); } @@ -338,9 +338,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSortFilterProxyModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -363,9 +363,9 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QSortFilterProxyModel *)cls)->index (arg1, arg2, arg3)); } @@ -388,9 +388,9 @@ static void _call_f_insertColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->insertColumns (arg1, arg2, arg3)); } @@ -413,9 +413,9 @@ static void _call_f_insertRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->insertRows (arg1, arg2, arg3)); } @@ -465,7 +465,7 @@ static void _call_f_mapFromSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel *)cls)->mapFromSource (arg1)); } @@ -484,7 +484,7 @@ static void _call_f_mapSelectionFromSource_c2727 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QSortFilterProxyModel *)cls)->mapSelectionFromSource (arg1)); } @@ -503,7 +503,7 @@ static void _call_f_mapSelectionToSource_c2727 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QSortFilterProxyModel *)cls)->mapSelectionToSource (arg1)); } @@ -522,7 +522,7 @@ static void _call_f_mapToSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel *)cls)->mapToSource (arg1)); } @@ -549,11 +549,11 @@ static void _call_f_match_c7932 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(1); - QFlags arg5 = args ? args.read > (heap) : (QFlags)(Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap)); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QSortFilterProxyModel *)cls)->match (arg1, arg2, arg3, arg4, arg5)); } @@ -572,7 +572,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QSortFilterProxyModel *)cls)->mimeData (arg1)); } @@ -621,7 +621,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel *)cls)->parent (arg1)); } @@ -644,9 +644,9 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->removeColumns (arg1, arg2, arg3)); } @@ -669,9 +669,9 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->removeRows (arg1, arg2, arg3)); } @@ -690,7 +690,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSortFilterProxyModel *)cls)->rowCount (arg1)); } @@ -713,9 +713,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->setData (arg1, arg2, arg3)); } @@ -734,7 +734,7 @@ static void _call_f_setDynamicSortFilter_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setDynamicSortFilter (arg1); } @@ -754,7 +754,7 @@ static void _call_f_setFilterCaseSensitivity_2324 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setFilterCaseSensitivity (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -774,7 +774,7 @@ static void _call_f_setFilterFixedString_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setFilterFixedString (arg1); } @@ -794,7 +794,7 @@ static void _call_f_setFilterKeyColumn_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setFilterKeyColumn (arg1); } @@ -814,7 +814,7 @@ static void _call_f_setFilterRegExp_1981 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setFilterRegExp (arg1); } @@ -834,7 +834,7 @@ static void _call_f_setFilterRegExp_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setFilterRegExp (arg1); } @@ -854,7 +854,7 @@ static void _call_f_setFilterRole_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setFilterRole (arg1); } @@ -874,7 +874,7 @@ static void _call_f_setFilterWildcard_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setFilterWildcard (arg1); } @@ -900,10 +900,10 @@ static void _call_f_setHeaderData_5242 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(Qt::EditRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->setHeaderData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -922,7 +922,7 @@ static void _call_f_setSortCaseSensitivity_2324 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setSortCaseSensitivity (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -942,7 +942,7 @@ static void _call_f_setSortLocaleAware_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setSortLocaleAware (arg1); } @@ -962,7 +962,7 @@ static void _call_f_setSortRole_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setSortRole (arg1); } @@ -982,7 +982,7 @@ static void _call_f_setSourceModel_2419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setSourceModel (arg1); } @@ -1004,8 +1004,8 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->sort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1085,7 +1085,7 @@ static void _call_f_span_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSortFilterProxyModel *)cls)->span (arg1)); } @@ -1121,8 +1121,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSortFilterProxyModel::tr (arg1, arg2)); } @@ -1145,9 +1145,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSortFilterProxyModel::tr (arg1, arg2, arg3)); } @@ -1168,8 +1168,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSortFilterProxyModel::trUtf8 (arg1, arg2)); } @@ -1192,9 +1192,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSortFilterProxyModel::trUtf8 (arg1, arg2, arg3)); } @@ -2158,7 +2158,7 @@ static void _call_ctor_QSortFilterProxyModel_Adaptor_1302 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSortFilterProxyModel_Adaptor (arg1)); } @@ -2180,9 +2180,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -2205,9 +2205,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -2234,11 +2234,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -2264,11 +2264,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -2290,9 +2290,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -2315,9 +2315,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -2399,8 +2399,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_changePersistentIndex_4682 (arg1, arg2); } @@ -2421,8 +2421,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -2492,9 +2492,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -2516,9 +2516,9 @@ static void _call_fp_createIndex_c2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_createIndex_c2085 (arg1, arg2, arg3)); } @@ -2540,9 +2540,9 @@ static void _call_fp_createIndex_c2416 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quint32 arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quint32 arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_createIndex_c2416 (arg1, arg2, arg3)); } @@ -2612,8 +2612,8 @@ static void _call_emitter_dataChanged_4682 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QSortFilterProxyModel_Adaptor *)cls)->emitter_QSortFilterProxyModel_dataChanged_4682 (arg1, arg2); } @@ -2637,10 +2637,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -2658,7 +2658,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSortFilterProxyModel_Adaptor *)cls)->emitter_QSortFilterProxyModel_destroyed_1302 (arg1); } @@ -2737,8 +2737,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_encodeData_c4599 (arg1, arg2); } @@ -3081,9 +3081,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QSortFilterProxyModel_Adaptor *)cls)->emitter_QSortFilterProxyModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -3486,7 +3486,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_receivers_c1731 (arg1)); } @@ -3721,7 +3721,7 @@ static void _call_fp_setRoleNames_3419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHash &arg1 = args.read & > (heap); + const QHash &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_setRoleNames_3419 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSound.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSound.cc index 19c7f108c..36f2c9380 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSound.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSound.cc @@ -144,7 +144,7 @@ static void _call_f_setLoops_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSound *)cls)->setLoops (arg1); } @@ -195,7 +195,7 @@ static void _call_f_play_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSound::play (arg1); } @@ -217,8 +217,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSound::tr (arg1, arg2)); } @@ -241,9 +241,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSound::tr (arg1, arg2, arg3)); } @@ -264,8 +264,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSound::trUtf8 (arg1, arg2)); } @@ -288,9 +288,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSound::trUtf8 (arg1, arg2, arg3)); } @@ -478,8 +478,8 @@ static void _call_ctor_QSound_Adaptor_3219 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSound_Adaptor (arg1, arg2)); } @@ -545,7 +545,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSound_Adaptor *)cls)->emitter_QSound_destroyed_1302 (arg1); } @@ -636,7 +636,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSound_Adaptor *)cls)->fp_QSound_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSpacerItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSpacerItem.cc index e1cd31937..b53a8cd24 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSpacerItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSpacerItem.cc @@ -60,10 +60,10 @@ static void _call_f_changeSize_5794 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpacerItem *)cls)->changeSize (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -158,7 +158,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpacerItem *)cls)->setGeometry (arg1); } @@ -493,10 +493,10 @@ static void _call_ctor_QSpacerItem_Adaptor_5794 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum), heap); ret.write (new QSpacerItem_Adaptor (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSpinBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSpinBox.cc index 00efc33d3..987df61f8 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSpinBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSpinBox.cc @@ -173,7 +173,7 @@ static void _call_f_setMaximum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox *)cls)->setMaximum (arg1); } @@ -193,7 +193,7 @@ static void _call_f_setMinimum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox *)cls)->setMinimum (arg1); } @@ -213,7 +213,7 @@ static void _call_f_setPrefix_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox *)cls)->setPrefix (arg1); } @@ -235,8 +235,8 @@ static void _call_f_setRange_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox *)cls)->setRange (arg1, arg2); } @@ -256,7 +256,7 @@ static void _call_f_setSingleStep_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox *)cls)->setSingleStep (arg1); } @@ -276,7 +276,7 @@ static void _call_f_setSuffix_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox *)cls)->setSuffix (arg1); } @@ -296,7 +296,7 @@ static void _call_f_setValue_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox *)cls)->setValue (arg1); } @@ -363,8 +363,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSpinBox::tr (arg1, arg2)); } @@ -387,9 +387,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSpinBox::tr (arg1, arg2, arg3)); } @@ -410,8 +410,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSpinBox::trUtf8 (arg1, arg2)); } @@ -434,9 +434,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSpinBox::trUtf8 (arg1, arg2, arg3)); } @@ -1452,7 +1452,7 @@ static void _call_ctor_QSpinBox_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSpinBox_Adaptor (arg1)); } @@ -1614,9 +1614,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->fp_QSpinBox_create_2208 (arg1, arg2, arg3); } @@ -1635,7 +1635,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QSpinBox_Adaptor *)cls)->emitter_QSpinBox_customContextMenuRequested_1916 (arg1); } @@ -1679,8 +1679,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->fp_QSpinBox_destroy_1620 (arg1, arg2); } @@ -1699,7 +1699,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSpinBox_Adaptor *)cls)->emitter_QSpinBox_destroyed_1302 (arg1); } @@ -2142,7 +2142,7 @@ static void _call_fp_initStyleOption_c2572 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->fp_QSpinBox_initStyleOption_c2572 (arg1); } @@ -2543,7 +2543,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSpinBox_Adaptor *)cls)->fp_QSpinBox_receivers_c1731 (arg1)); } @@ -2614,7 +2614,7 @@ static void _call_fp_setLineEdit_1485 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLineEdit *arg1 = args.read (heap); + QLineEdit *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->fp_QSpinBox_setLineEdit_1485 (arg1); } @@ -2879,7 +2879,7 @@ static void _call_emitter_valueChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSpinBox_Adaptor *)cls)->emitter_QSpinBox_valueChanged_767 (arg1); } @@ -2897,7 +2897,7 @@ static void _call_emitter_valueChanged_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSpinBox_Adaptor *)cls)->emitter_QSpinBox_valueChanged_2025 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSplashScreen.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSplashScreen.cc index d8013d031..ded877cd1 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSplashScreen.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSplashScreen.cc @@ -129,7 +129,7 @@ static void _call_f_finish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen *)cls)->finish (arg1); } @@ -180,7 +180,7 @@ static void _call_f_setPixmap_2017 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen *)cls)->setPixmap (arg1); } @@ -204,9 +204,9 @@ static void _call_f_showMessage_4481 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::AlignLeft); - const QColor &arg3 = args ? args.read (heap) : (const QColor &)(Qt::black); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::AlignLeft, heap); + const QColor &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::black, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen *)cls)->showMessage (arg1, arg2, arg3); } @@ -228,8 +228,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSplashScreen::tr (arg1, arg2)); } @@ -252,9 +252,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSplashScreen::tr (arg1, arg2, arg3)); } @@ -275,8 +275,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSplashScreen::trUtf8 (arg1, arg2)); } @@ -299,9 +299,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSplashScreen::trUtf8 (arg1, arg2, arg3)); } @@ -1210,8 +1210,8 @@ static void _call_ctor_QSplashScreen_Adaptor_4404 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args ? args.read (heap) : (const QPixmap &)(QPixmap()); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + const QPixmap &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPixmap(), heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QSplashScreen_Adaptor (arg1, arg2)); } @@ -1233,9 +1233,9 @@ static void _call_ctor_QSplashScreen_Adaptor_5611 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QPixmap &arg2 = args ? args.read (heap) : (const QPixmap &)(QPixmap()); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPixmap(), heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QSplashScreen_Adaptor (arg1, arg2, arg3)); } @@ -1377,9 +1377,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->fp_QSplashScreen_create_2208 (arg1, arg2, arg3); } @@ -1398,7 +1398,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QSplashScreen_Adaptor *)cls)->emitter_QSplashScreen_customContextMenuRequested_1916 (arg1); } @@ -1442,8 +1442,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->fp_QSplashScreen_destroy_1620 (arg1, arg2); } @@ -1462,7 +1462,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSplashScreen_Adaptor *)cls)->emitter_QSplashScreen_destroyed_1302 (arg1); } @@ -2030,7 +2030,7 @@ static void _call_emitter_messageChanged_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSplashScreen_Adaptor *)cls)->emitter_QSplashScreen_messageChanged_2025 (arg1); } @@ -2277,7 +2277,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplashScreen_Adaptor *)cls)->fp_QSplashScreen_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSplitter.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSplitter.cc index 5d6053a3b..d107cacbf 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSplitter.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSplitter.cc @@ -112,7 +112,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->addWidget (arg1); } @@ -166,9 +166,9 @@ static void _call_f_getRange_c2457 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->getRange (arg1, arg2, arg3); } @@ -188,7 +188,7 @@ static void _call_f_handle_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSplitterHandle *)((QSplitter *)cls)->handle (arg1)); } @@ -222,7 +222,7 @@ static void _call_f_indexOf_c1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitter *)cls)->indexOf (arg1)); } @@ -243,8 +243,8 @@ static void _call_f_insertWidget_1974 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->insertWidget (arg1, arg2); } @@ -264,7 +264,7 @@ static void _call_f_isCollapsible_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitter *)cls)->isCollapsible (arg1)); } @@ -344,7 +344,7 @@ static void _call_f_restoreState_2309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitter *)cls)->restoreState (arg1)); } @@ -378,7 +378,7 @@ static void _call_f_setChildrenCollapsible_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->setChildrenCollapsible (arg1); } @@ -400,8 +400,8 @@ static void _call_f_setCollapsible_1523 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->setCollapsible (arg1, arg2); } @@ -421,7 +421,7 @@ static void _call_f_setHandleWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->setHandleWidth (arg1); } @@ -441,7 +441,7 @@ static void _call_f_setOpaqueResize_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->setOpaqueResize (arg1); } @@ -461,7 +461,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -481,7 +481,7 @@ static void _call_f_setSizes_2259 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->setSizes (arg1); } @@ -503,8 +503,8 @@ static void _call_f_setStretchFactor_1426 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->setStretchFactor (arg1, arg2); } @@ -554,7 +554,7 @@ static void _call_f_widget_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QSplitter *)cls)->widget (arg1)); } @@ -575,8 +575,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSplitter::tr (arg1, arg2)); } @@ -599,9 +599,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSplitter::tr (arg1, arg2, arg3)); } @@ -622,8 +622,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSplitter::trUtf8 (arg1, arg2)); } @@ -646,9 +646,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSplitter::trUtf8 (arg1, arg2, arg3)); } @@ -1582,7 +1582,7 @@ static void _call_ctor_QSplitter_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSplitter_Adaptor (arg1)); } @@ -1602,8 +1602,8 @@ static void _call_ctor_QSplitter_Adaptor_3120 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSplitter_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1719,8 +1719,8 @@ static void _call_fp_closestLegalPosition_1426 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitter_Adaptor *)cls)->fp_QSplitter_closestLegalPosition_1426 (arg1, arg2)); } @@ -1766,9 +1766,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->fp_QSplitter_create_2208 (arg1, arg2, arg3); } @@ -1806,7 +1806,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QSplitter_Adaptor *)cls)->emitter_QSplitter_customContextMenuRequested_1916 (arg1); } @@ -1850,8 +1850,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->fp_QSplitter_destroy_1620 (arg1, arg2); } @@ -1870,7 +1870,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSplitter_Adaptor *)cls)->emitter_QSplitter_destroyed_1302 (arg1); } @@ -1984,7 +1984,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->fp_QSplitter_drawFrame_1426 (arg1); } @@ -2597,8 +2597,8 @@ static void _call_fp_moveSplitter_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->fp_QSplitter_moveSplitter_1426 (arg1, arg2); } @@ -2684,7 +2684,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitter_Adaptor *)cls)->fp_QSplitter_receivers_c1731 (arg1)); } @@ -2755,7 +2755,7 @@ static void _call_fp_setRubberBand_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->fp_QSplitter_setRubberBand_767 (arg1); } @@ -2843,8 +2843,8 @@ static void _call_emitter_splitterMoved_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QSplitter_Adaptor *)cls)->emitter_QSplitter_splitterMoved_1426 (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSplitterHandle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSplitterHandle.cc index 57d10eee1..a2fd1cbe2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSplitterHandle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSplitterHandle.cc @@ -142,7 +142,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -194,8 +194,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSplitterHandle::tr (arg1, arg2)); } @@ -218,9 +218,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSplitterHandle::tr (arg1, arg2, arg3)); } @@ -241,8 +241,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSplitterHandle::trUtf8 (arg1, arg2)); } @@ -265,9 +265,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSplitterHandle::trUtf8 (arg1, arg2, arg3)); } @@ -1132,8 +1132,8 @@ static void _call_ctor_QSplitterHandle_Adaptor_3363 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QSplitter *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QSplitter *arg2 = gsi::arg_reader() (args, heap); ret.write (new QSplitterHandle_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1247,7 +1247,7 @@ static void _call_fp_closestLegalPosition_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitterHandle_Adaptor *)cls)->fp_QSplitterHandle_closestLegalPosition_767 (arg1)); } @@ -1293,9 +1293,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->fp_QSplitterHandle_create_2208 (arg1, arg2, arg3); } @@ -1314,7 +1314,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QSplitterHandle_Adaptor *)cls)->emitter_QSplitterHandle_customContextMenuRequested_1916 (arg1); } @@ -1358,8 +1358,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->fp_QSplitterHandle_destroy_1620 (arg1, arg2); } @@ -1378,7 +1378,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSplitterHandle_Adaptor *)cls)->emitter_QSplitterHandle_destroyed_1302 (arg1); } @@ -2084,7 +2084,7 @@ static void _call_fp_moveSplitter_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->fp_QSplitterHandle_moveSplitter_767 (arg1); } @@ -2170,7 +2170,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitterHandle_Adaptor *)cls)->fp_QSplitterHandle_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc index 5c0222e24..12b562f6a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStackedLayout.cc @@ -75,7 +75,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout *)cls)->addItem (arg1); } @@ -95,7 +95,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout *)cls)->addWidget (arg1)); } @@ -161,8 +161,8 @@ static void _call_f_insertWidget_1974 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout *)cls)->insertWidget (arg1, arg2)); } @@ -181,7 +181,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QStackedLayout *)cls)->itemAt (arg1)); } @@ -215,7 +215,7 @@ static void _call_f_setCurrentIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout *)cls)->setCurrentIndex (arg1); } @@ -235,7 +235,7 @@ static void _call_f_setCurrentWidget_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout *)cls)->setCurrentWidget (arg1); } @@ -255,7 +255,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout *)cls)->setGeometry (arg1); } @@ -275,7 +275,7 @@ static void _call_f_setStackingMode_3183 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout *)cls)->setStackingMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -325,7 +325,7 @@ static void _call_f_takeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QStackedLayout *)cls)->takeAt (arg1)); } @@ -359,7 +359,7 @@ static void _call_f_widget_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QStackedLayout *)cls)->widget (arg1)); } @@ -380,8 +380,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStackedLayout::tr (arg1, arg2)); } @@ -404,9 +404,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStackedLayout::tr (arg1, arg2, arg3)); } @@ -427,8 +427,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStackedLayout::trUtf8 (arg1, arg2)); } @@ -451,9 +451,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStackedLayout::trUtf8 (arg1, arg2, arg3)); } @@ -1005,7 +1005,7 @@ static void _call_ctor_QStackedLayout_Adaptor_1315 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QStackedLayout_Adaptor (arg1)); } @@ -1023,7 +1023,7 @@ static void _call_ctor_QStackedLayout_Adaptor_1341 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); ret.write (new QStackedLayout_Adaptor (arg1)); } @@ -1041,7 +1041,7 @@ static void _call_fp_addChildLayout_1341 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->fp_QStackedLayout_addChildLayout_1341 (arg1); @@ -1061,7 +1061,7 @@ static void _call_fp_addChildWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->fp_QStackedLayout_addChildWidget_1315 (arg1); } @@ -1104,7 +1104,7 @@ static void _call_fp_alignmentRect_c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QStackedLayout_Adaptor *)cls)->fp_QStackedLayout_alignmentRect_c1792 (arg1)); } @@ -1165,7 +1165,7 @@ static void _call_emitter_currentChanged_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QStackedLayout_Adaptor *)cls)->emitter_QStackedLayout_currentChanged_767 (arg1); } @@ -1207,7 +1207,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStackedLayout_Adaptor *)cls)->emitter_QStackedLayout_destroyed_1302 (arg1); } @@ -1543,7 +1543,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout_Adaptor *)cls)->fp_QStackedLayout_receivers_c1731 (arg1)); } @@ -1703,7 +1703,7 @@ static void _call_fp_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->fp_QStackedLayout_widgetEvent_1217 (arg1); } @@ -1722,7 +1722,7 @@ static void _call_emitter_widgetRemoved_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QStackedLayout_Adaptor *)cls)->emitter_QStackedLayout_widgetRemoved_767 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStackedWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStackedWidget.cc index 0383849b5..5d04168b3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStackedWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStackedWidget.cc @@ -111,7 +111,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedWidget *)cls)->addWidget (arg1)); } @@ -175,7 +175,7 @@ static void _call_f_indexOf_c1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedWidget *)cls)->indexOf (arg1)); } @@ -196,8 +196,8 @@ static void _call_f_insertWidget_1974 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedWidget *)cls)->insertWidget (arg1, arg2)); } @@ -216,7 +216,7 @@ static void _call_f_removeWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget *)cls)->removeWidget (arg1); } @@ -236,7 +236,7 @@ static void _call_f_setCurrentIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget *)cls)->setCurrentIndex (arg1); } @@ -256,7 +256,7 @@ static void _call_f_setCurrentWidget_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget *)cls)->setCurrentWidget (arg1); } @@ -276,7 +276,7 @@ static void _call_f_widget_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QStackedWidget *)cls)->widget (arg1)); } @@ -297,8 +297,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStackedWidget::tr (arg1, arg2)); } @@ -321,9 +321,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStackedWidget::tr (arg1, arg2, arg3)); } @@ -344,8 +344,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStackedWidget::trUtf8 (arg1, arg2)); } @@ -368,9 +368,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStackedWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1253,7 +1253,7 @@ static void _call_ctor_QStackedWidget_Adaptor_1315 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStackedWidget_Adaptor (arg1)); } @@ -1395,9 +1395,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->fp_QStackedWidget_create_2208 (arg1, arg2, arg3); } @@ -1416,7 +1416,7 @@ static void _call_emitter_currentChanged_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QStackedWidget_Adaptor *)cls)->emitter_QStackedWidget_currentChanged_767 (arg1); } @@ -1434,7 +1434,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QStackedWidget_Adaptor *)cls)->emitter_QStackedWidget_customContextMenuRequested_1916 (arg1); } @@ -1478,8 +1478,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->fp_QStackedWidget_destroy_1620 (arg1, arg2); } @@ -1498,7 +1498,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStackedWidget_Adaptor *)cls)->emitter_QStackedWidget_destroyed_1302 (arg1); } @@ -1612,7 +1612,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->fp_QStackedWidget_drawFrame_1426 (arg1); } @@ -2290,7 +2290,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedWidget_Adaptor *)cls)->fp_QStackedWidget_receivers_c1731 (arg1)); } @@ -2539,7 +2539,7 @@ static void _call_emitter_widgetRemoved_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QStackedWidget_Adaptor *)cls)->emitter_QStackedWidget_widgetRemoved_767 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStandardItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStandardItem.cc index a1e2ed666..571ab5225 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStandardItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStandardItem.cc @@ -87,7 +87,7 @@ static void _call_f_appendColumn_3267 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->appendColumn (arg1); } @@ -107,7 +107,7 @@ static void _call_f_appendRow_3267 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->appendRow (arg1); } @@ -127,7 +127,7 @@ static void _call_f_appendRow_1919 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStandardItem *arg1 = args.read (heap); + QStandardItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->appendRow (arg1); } @@ -147,7 +147,7 @@ static void _call_f_appendRows_3267 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->appendRows (arg1); } @@ -199,8 +199,8 @@ static void _call_f_child_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QStandardItem *)((QStandardItem *)cls)->child (arg1, arg2)); } @@ -264,7 +264,7 @@ static void _call_f_data_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(Qt::UserRole + 1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole + 1, heap); ret.write ((QVariant)((QStandardItem *)cls)->data (arg1)); } @@ -375,8 +375,8 @@ static void _call_f_insertColumn_3926 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->insertColumn (arg1, arg2); } @@ -398,8 +398,8 @@ static void _call_f_insertColumns_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->insertColumns (arg1, arg2); } @@ -421,8 +421,8 @@ static void _call_f_insertRow_3926 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->insertRow (arg1, arg2); } @@ -444,8 +444,8 @@ static void _call_f_insertRow_2578 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QStandardItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QStandardItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->insertRow (arg1, arg2); } @@ -467,8 +467,8 @@ static void _call_f_insertRows_3926 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->insertRows (arg1, arg2); } @@ -490,8 +490,8 @@ static void _call_f_insertRows_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->insertRows (arg1, arg2); } @@ -631,7 +631,7 @@ static void _call_f_operator_lt__c2610 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStandardItem &arg1 = args.read (heap); + const QStandardItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItem *)cls)->operator< (arg1)); } @@ -665,7 +665,7 @@ static void _call_f_read_1697 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->read (arg1); } @@ -685,7 +685,7 @@ static void _call_f_removeColumn_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->removeColumn (arg1); } @@ -707,8 +707,8 @@ static void _call_f_removeColumns_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->removeColumns (arg1, arg2); } @@ -728,7 +728,7 @@ static void _call_f_removeRow_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->removeRow (arg1); } @@ -750,8 +750,8 @@ static void _call_f_removeRows_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->removeRows (arg1, arg2); } @@ -801,7 +801,7 @@ static void _call_f_setAccessibleDescription_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setAccessibleDescription (arg1); } @@ -821,7 +821,7 @@ static void _call_f_setAccessibleText_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setAccessibleText (arg1); } @@ -841,7 +841,7 @@ static void _call_f_setBackground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setBackground (arg1); } @@ -861,7 +861,7 @@ static void _call_f_setCheckState_1740 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setCheckState (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -881,7 +881,7 @@ static void _call_f_setCheckable_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setCheckable (arg1); } @@ -905,9 +905,9 @@ static void _call_f_setChild_3237 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QStandardItem *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QStandardItem *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setChild (arg1, arg2, arg3); } @@ -929,8 +929,8 @@ static void _call_f_setChild_2578 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QStandardItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QStandardItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setChild (arg1, arg2); } @@ -950,7 +950,7 @@ static void _call_f_setColumnCount_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setColumnCount (arg1); } @@ -972,8 +972,8 @@ static void _call_f_setData_2778u1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::UserRole + 1); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole + 1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setData (arg1, arg2); } @@ -993,7 +993,7 @@ static void _call_f_setDragEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setDragEnabled (arg1); } @@ -1013,7 +1013,7 @@ static void _call_f_setDropEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setDropEnabled (arg1); } @@ -1033,7 +1033,7 @@ static void _call_f_setEditable_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setEditable (arg1); } @@ -1053,7 +1053,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setEnabled (arg1); } @@ -1073,7 +1073,7 @@ static void _call_f_setFlags_2222 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setFlags (arg1); } @@ -1093,7 +1093,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setFont (arg1); } @@ -1113,7 +1113,7 @@ static void _call_f_setForeground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setForeground (arg1); } @@ -1133,7 +1133,7 @@ static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setIcon (arg1); } @@ -1153,7 +1153,7 @@ static void _call_f_setRowCount_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setRowCount (arg1); } @@ -1173,7 +1173,7 @@ static void _call_f_setSelectable_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setSelectable (arg1); } @@ -1193,7 +1193,7 @@ static void _call_f_setSizeHint_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setSizeHint (arg1); } @@ -1213,7 +1213,7 @@ static void _call_f_setStatusTip_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setStatusTip (arg1); } @@ -1233,7 +1233,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setText (arg1); } @@ -1253,7 +1253,7 @@ static void _call_f_setTextAlignment_2750 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setTextAlignment (arg1); } @@ -1273,7 +1273,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setToolTip (arg1); } @@ -1293,7 +1293,7 @@ static void _call_f_setTristate_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setTristate (arg1); } @@ -1313,7 +1313,7 @@ static void _call_f_setWhatsThis_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setWhatsThis (arg1); } @@ -1350,8 +1350,8 @@ static void _call_f_sortChildren_2340 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->sortChildren (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1388,8 +1388,8 @@ static void _call_f_takeChild_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QStandardItem *)((QStandardItem *)cls)->takeChild (arg1, arg2)); } @@ -1408,7 +1408,7 @@ static void _call_f_takeColumn_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QStandardItem *)cls)->takeColumn (arg1)); } @@ -1427,7 +1427,7 @@ static void _call_f_takeRow_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QStandardItem *)cls)->takeRow (arg1)); } @@ -1521,7 +1521,7 @@ static void _call_f_write_c1697 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->write (arg1); } @@ -1813,7 +1813,7 @@ static void _call_ctor_QStandardItem_Adaptor_2025 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStandardItem_Adaptor (arg1)); } @@ -1833,8 +1833,8 @@ static void _call_ctor_QStandardItem_Adaptor_3704 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write (new QStandardItem_Adaptor (arg1, arg2)); } @@ -1854,8 +1854,8 @@ static void _call_ctor_QStandardItem_Adaptor_1426 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(1); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write (new QStandardItem_Adaptor (arg1, arg2)); } @@ -1953,7 +1953,7 @@ static void _call_fp_operator_eq__2610 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStandardItem &arg1 = args.read (heap); + const QStandardItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStandardItem &)((QStandardItem_Adaptor *)cls)->fp_QStandardItem_operator_eq__2610 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStandardItemModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStandardItemModel.cc index 6abcde73d..e1e98a178 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStandardItemModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStandardItemModel.cc @@ -73,7 +73,7 @@ static void _call_f_appendColumn_3267 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->appendColumn (arg1); } @@ -93,7 +93,7 @@ static void _call_f_appendRow_3267 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->appendRow (arg1); } @@ -113,7 +113,7 @@ static void _call_f_appendRow_1919 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStandardItem *arg1 = args.read (heap); + QStandardItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->appendRow (arg1); } @@ -149,7 +149,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QStandardItemModel *)cls)->columnCount (arg1)); } @@ -170,8 +170,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QStandardItemModel *)cls)->data (arg1, arg2)); } @@ -198,11 +198,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -225,9 +225,9 @@ static void _call_f_findItems_c4892 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::MatchExactly); - int arg3 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchExactly, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QStandardItemModel *)cls)->findItems (arg1, arg2, arg3)); } @@ -246,7 +246,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QStandardItemModel *)cls)->flags (arg1)); } @@ -265,7 +265,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel *)cls)->hasChildren (arg1)); } @@ -288,9 +288,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QStandardItemModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -309,7 +309,7 @@ static void _call_f_horizontalHeaderItem_c767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QStandardItem *)((QStandardItemModel *)cls)->horizontalHeaderItem (arg1)); } @@ -332,9 +332,9 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QStandardItemModel *)cls)->index (arg1, arg2, arg3)); } @@ -353,7 +353,7 @@ static void _call_f_indexFromItem_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStandardItem *arg1 = args.read (heap); + const QStandardItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel *)cls)->indexFromItem (arg1)); } @@ -374,8 +374,8 @@ static void _call_f_insertColumn_3926 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->insertColumn (arg1, arg2); } @@ -397,8 +397,8 @@ static void _call_f_insertColumn_3054 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel *)cls)->insertColumn (arg1, arg2)); } @@ -421,9 +421,9 @@ static void _call_f_insertColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel *)cls)->insertColumns (arg1, arg2, arg3)); } @@ -444,8 +444,8 @@ static void _call_f_insertRow_3926 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->insertRow (arg1, arg2); } @@ -467,8 +467,8 @@ static void _call_f_insertRow_2578 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QStandardItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QStandardItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->insertRow (arg1, arg2); } @@ -490,8 +490,8 @@ static void _call_f_insertRow_3054 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel *)cls)->insertRow (arg1, arg2)); } @@ -514,9 +514,9 @@ static void _call_f_insertRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel *)cls)->insertRows (arg1, arg2, arg3)); } @@ -552,8 +552,8 @@ static void _call_f_item_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QStandardItem *)((QStandardItemModel *)cls)->item (arg1, arg2)); } @@ -572,7 +572,7 @@ static void _call_f_itemData_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QStandardItemModel *)cls)->itemData (arg1)); } @@ -591,7 +591,7 @@ static void _call_f_itemFromIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStandardItem *)((QStandardItemModel *)cls)->itemFromIndex (arg1)); } @@ -625,7 +625,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QStandardItemModel *)cls)->mimeData (arg1)); } @@ -659,7 +659,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel *)cls)->parent (arg1)); } @@ -697,9 +697,9 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel *)cls)->removeColumns (arg1, arg2, arg3)); } @@ -722,9 +722,9 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel *)cls)->removeRows (arg1, arg2, arg3)); } @@ -743,7 +743,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QStandardItemModel *)cls)->rowCount (arg1)); } @@ -762,7 +762,7 @@ static void _call_f_setColumnCount_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setColumnCount (arg1); } @@ -786,9 +786,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStandardItemModel *)cls)->setData (arg1, arg2, arg3)); } @@ -813,10 +813,10 @@ static void _call_f_setHeaderData_5242 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(Qt::EditRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStandardItemModel *)cls)->setHeaderData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -837,8 +837,8 @@ static void _call_f_setHorizontalHeaderItem_2578 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QStandardItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QStandardItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setHorizontalHeaderItem (arg1, arg2); } @@ -858,7 +858,7 @@ static void _call_f_setHorizontalHeaderLabels_2437 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setHorizontalHeaderLabels (arg1); } @@ -882,9 +882,9 @@ static void _call_f_setItem_3237 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QStandardItem *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QStandardItem *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setItem (arg1, arg2, arg3); } @@ -906,8 +906,8 @@ static void _call_f_setItem_2578 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QStandardItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QStandardItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setItem (arg1, arg2); } @@ -929,8 +929,8 @@ static void _call_f_setItemData_5414 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QStandardItemModel *)cls)->setItemData (arg1, arg2)); } @@ -949,7 +949,7 @@ static void _call_f_setItemPrototype_2614 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStandardItem *arg1 = args.read (heap); + const QStandardItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setItemPrototype (arg1); } @@ -969,7 +969,7 @@ static void _call_f_setRowCount_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setRowCount (arg1); } @@ -989,7 +989,7 @@ static void _call_f_setSortRole_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setSortRole (arg1); } @@ -1011,8 +1011,8 @@ static void _call_f_setVerticalHeaderItem_2578 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QStandardItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QStandardItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setVerticalHeaderItem (arg1, arg2); } @@ -1032,7 +1032,7 @@ static void _call_f_setVerticalHeaderLabels_2437 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setVerticalHeaderLabels (arg1); } @@ -1054,8 +1054,8 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->sort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1105,7 +1105,7 @@ static void _call_f_takeColumn_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QStandardItemModel *)cls)->takeColumn (arg1)); } @@ -1124,7 +1124,7 @@ static void _call_f_takeHorizontalHeaderItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QStandardItem *)((QStandardItemModel *)cls)->takeHorizontalHeaderItem (arg1)); } @@ -1145,8 +1145,8 @@ static void _call_f_takeItem_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QStandardItem *)((QStandardItemModel *)cls)->takeItem (arg1, arg2)); } @@ -1165,7 +1165,7 @@ static void _call_f_takeRow_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QStandardItemModel *)cls)->takeRow (arg1)); } @@ -1184,7 +1184,7 @@ static void _call_f_takeVerticalHeaderItem_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QStandardItem *)((QStandardItemModel *)cls)->takeVerticalHeaderItem (arg1)); } @@ -1203,7 +1203,7 @@ static void _call_f_verticalHeaderItem_c767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QStandardItem *)((QStandardItemModel *)cls)->verticalHeaderItem (arg1)); } @@ -1224,8 +1224,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStandardItemModel::tr (arg1, arg2)); } @@ -1248,9 +1248,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStandardItemModel::tr (arg1, arg2, arg3)); } @@ -1271,8 +1271,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStandardItemModel::trUtf8 (arg1, arg2)); } @@ -1295,9 +1295,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStandardItemModel::trUtf8 (arg1, arg2, arg3)); } @@ -2144,7 +2144,7 @@ static void _call_ctor_QStandardItemModel_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStandardItemModel_Adaptor (arg1)); } @@ -2166,9 +2166,9 @@ static void _call_ctor_QStandardItemModel_Adaptor_2620 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStandardItemModel_Adaptor (arg1, arg2, arg3)); } @@ -2190,9 +2190,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -2215,9 +2215,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -2244,11 +2244,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -2274,11 +2274,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -2300,9 +2300,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -2325,9 +2325,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -2409,8 +2409,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_changePersistentIndex_4682 (arg1, arg2); } @@ -2431,8 +2431,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -2502,9 +2502,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -2526,9 +2526,9 @@ static void _call_fp_createIndex_c2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_createIndex_c2085 (arg1, arg2, arg3)); } @@ -2550,9 +2550,9 @@ static void _call_fp_createIndex_c2416 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quint32 arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quint32 arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_createIndex_c2416 (arg1, arg2, arg3)); } @@ -2622,8 +2622,8 @@ static void _call_emitter_dataChanged_4682 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QStandardItemModel_Adaptor *)cls)->emitter_QStandardItemModel_dataChanged_4682 (arg1, arg2); } @@ -2647,10 +2647,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -2668,7 +2668,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStandardItemModel_Adaptor *)cls)->emitter_QStandardItemModel_destroyed_1302 (arg1); } @@ -2747,8 +2747,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_encodeData_c4599 (arg1, arg2); } @@ -3024,9 +3024,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QStandardItemModel_Adaptor *)cls)->emitter_QStandardItemModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -3131,7 +3131,7 @@ static void _call_emitter_itemChanged_1919 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStandardItem *arg1 = args.read (heap); + QStandardItem *arg1 = gsi::arg_reader() (args, heap); ((QStandardItemModel_Adaptor *)cls)->emitter_QStandardItemModel_itemChanged_1919 (arg1); } @@ -3314,7 +3314,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_receivers_c1731 (arg1)); } @@ -3549,7 +3549,7 @@ static void _call_fp_setRoleNames_3419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHash &arg1 = args.read & > (heap); + const QHash &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_setRoleNames_3419 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStatusBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStatusBar.cc index 8b9faa014..90282e653 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStatusBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStatusBar.cc @@ -113,8 +113,8 @@ static void _call_f_addPermanentWidget_1974 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar *)cls)->addPermanentWidget (arg1, arg2); } @@ -136,8 +136,8 @@ static void _call_f_addWidget_1974 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar *)cls)->addWidget (arg1, arg2); } @@ -192,9 +192,9 @@ static void _call_f_insertPermanentWidget_2633 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStatusBar *)cls)->insertPermanentWidget (arg1, arg2, arg3)); } @@ -217,9 +217,9 @@ static void _call_f_insertWidget_2633 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStatusBar *)cls)->insertWidget (arg1, arg2, arg3)); } @@ -253,7 +253,7 @@ static void _call_f_removeWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar *)cls)->removeWidget (arg1); } @@ -273,7 +273,7 @@ static void _call_f_setSizeGripEnabled_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar *)cls)->setSizeGripEnabled (arg1); } @@ -295,8 +295,8 @@ static void _call_f_showMessage_2684 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar *)cls)->showMessage (arg1, arg2); } @@ -318,8 +318,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStatusBar::tr (arg1, arg2)); } @@ -342,9 +342,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStatusBar::tr (arg1, arg2, arg3)); } @@ -365,8 +365,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStatusBar::trUtf8 (arg1, arg2)); } @@ -389,9 +389,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStatusBar::trUtf8 (arg1, arg2, arg3)); } @@ -1272,7 +1272,7 @@ static void _call_ctor_QStatusBar_Adaptor_1315 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStatusBar_Adaptor (arg1)); } @@ -1414,9 +1414,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->fp_QStatusBar_create_2208 (arg1, arg2, arg3); } @@ -1435,7 +1435,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QStatusBar_Adaptor *)cls)->emitter_QStatusBar_customContextMenuRequested_1916 (arg1); } @@ -1479,8 +1479,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->fp_QStatusBar_destroy_1620 (arg1, arg2); } @@ -1499,7 +1499,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStatusBar_Adaptor *)cls)->emitter_QStatusBar_destroyed_1302 (arg1); } @@ -2058,7 +2058,7 @@ static void _call_emitter_messageChanged_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QStatusBar_Adaptor *)cls)->emitter_QStatusBar_messageChanged_2025 (arg1); } @@ -2305,7 +2305,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStatusBar_Adaptor *)cls)->fp_QStatusBar_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStatusTipEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStatusTipEvent.cc index 19282eead..acf3c4185 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStatusTipEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStatusTipEvent.cc @@ -101,7 +101,7 @@ static void _call_ctor_QStatusTipEvent_Adaptor_2025 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStatusTipEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStringListModel.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStringListModel.cc index 8ccd11f9a..798a57b23 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStringListModel.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStringListModel.cc @@ -74,8 +74,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QStringListModel *)cls)->data (arg1, arg2)); } @@ -94,7 +94,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QStringListModel *)cls)->flags (arg1)); } @@ -117,9 +117,9 @@ static void _call_f_insertRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel *)cls)->insertRows (arg1, arg2, arg3)); } @@ -142,9 +142,9 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel *)cls)->removeRows (arg1, arg2, arg3)); } @@ -163,7 +163,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QStringListModel *)cls)->rowCount (arg1)); } @@ -186,9 +186,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStringListModel *)cls)->setData (arg1, arg2, arg3)); } @@ -207,7 +207,7 @@ static void _call_f_setStringList_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel *)cls)->setStringList (arg1); } @@ -229,8 +229,8 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel *)cls)->sort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -282,8 +282,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStringListModel::tr (arg1, arg2)); } @@ -306,9 +306,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStringListModel::tr (arg1, arg2, arg3)); } @@ -329,8 +329,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStringListModel::trUtf8 (arg1, arg2)); } @@ -353,9 +353,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStringListModel::trUtf8 (arg1, arg2, arg3)); } @@ -1102,7 +1102,7 @@ static void _call_ctor_QStringListModel_Adaptor_1302 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStringListModel_Adaptor (arg1)); } @@ -1122,8 +1122,8 @@ static void _call_ctor_QStringListModel_Adaptor_3631 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStringListModel_Adaptor (arg1, arg2)); } @@ -1145,9 +1145,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->fp_QStringListModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1170,9 +1170,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->fp_QStringListModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1199,11 +1199,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->fp_QStringListModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1229,11 +1229,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->fp_QStringListModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1255,9 +1255,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->fp_QStringListModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1280,9 +1280,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->fp_QStringListModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -1364,8 +1364,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->fp_QStringListModel_changePersistentIndex_4682 (arg1, arg2); } @@ -1386,8 +1386,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->fp_QStringListModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -1434,9 +1434,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QStringListModel_Adaptor *)cls)->fp_QStringListModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -1458,9 +1458,9 @@ static void _call_fp_createIndex_c2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStringListModel_Adaptor *)cls)->fp_QStringListModel_createIndex_c2085 (arg1, arg2, arg3)); } @@ -1482,9 +1482,9 @@ static void _call_fp_createIndex_c2416 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quint32 arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quint32 arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStringListModel_Adaptor *)cls)->fp_QStringListModel_createIndex_c2416 (arg1, arg2, arg3)); } @@ -1554,8 +1554,8 @@ static void _call_emitter_dataChanged_4682 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QStringListModel_Adaptor *)cls)->emitter_QStringListModel_dataChanged_4682 (arg1, arg2); } @@ -1579,10 +1579,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->fp_QStringListModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -1600,7 +1600,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStringListModel_Adaptor *)cls)->emitter_QStringListModel_destroyed_1302 (arg1); } @@ -1679,8 +1679,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->fp_QStringListModel_encodeData_c4599 (arg1, arg2); } @@ -1933,9 +1933,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QStringListModel_Adaptor *)cls)->emitter_QStringListModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2182,7 +2182,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStringListModel_Adaptor *)cls)->fp_QStringListModel_receivers_c1731 (arg1)); } @@ -2417,7 +2417,7 @@ static void _call_fp_setRoleNames_3419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHash &arg1 = args.read & > (heap); + const QHash &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->fp_QStringListModel_setRoleNames_3419 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyle.cc index 9a29827d5..0acbec1db 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyle.cc @@ -89,11 +89,11 @@ static void _call_f_combinedLayoutSpacing_c11699 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - QFlags arg2 = args.read > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - QStyleOption *arg4 = args ? args.read (heap) : (QStyleOption *)(0); - QWidget *arg5 = args ? args.read (heap) : (QWidget *)(0); + QFlags arg1 = gsi::arg_reader >() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStyle *)cls)->combinedLayoutSpacing (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4, arg5)); } @@ -118,10 +118,10 @@ static void _call_f_drawComplexControl_c9027 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->drawComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -147,10 +147,10 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->drawControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -176,10 +176,10 @@ static void _call_f_drawItemPixmap_c5678 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->drawItemPixmap (arg1, arg2, arg3, arg4); } @@ -211,13 +211,13 @@ static void _call_f_drawItemText_c10604 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPalette &arg4 = args.read (heap); - bool arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole)); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPalette &arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->drawItemText (arg1, arg2, arg3, arg4, arg5, arg6, qt_gsi::QtToCppAdaptor(arg7).cref()); } @@ -243,10 +243,10 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->drawPrimitive (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -270,9 +270,9 @@ static void _call_f_generatedIconPixmap_c5776 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QStyle *)cls)->generatedIconPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -297,10 +297,10 @@ static void _call_f_hitTestComplexControl_c9517 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QStyle *)cls)->hitTestComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4))); } @@ -323,9 +323,9 @@ static void _call_f_itemPixmapRect_c4360 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QStyle *)cls)->itemPixmapRect (arg1, arg2, arg3)); } @@ -352,11 +352,11 @@ static void _call_f_itemTextRect_c7544 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - bool arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QStyle *)cls)->itemTextRect (arg1, arg2, arg3, arg4, arg5)); } @@ -383,11 +383,11 @@ static void _call_f_layoutSpacing_c11697 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QStyleOption *arg4 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg5 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStyle *)cls)->layoutSpacing (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), arg4, arg5)); } @@ -410,9 +410,9 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStyle *)cls)->pixelMetric (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -431,7 +431,7 @@ static void _call_f_polish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->polish (arg1); } @@ -451,7 +451,7 @@ static void _call_f_polish_1843 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->polish (arg1); } @@ -471,7 +471,7 @@ static void _call_f_polish_1418 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->polish (arg1); } @@ -512,10 +512,10 @@ static void _call_f_sizeFromContents_c8477 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QSize)((QStyle *)cls)->sizeFromContents (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -538,9 +538,9 @@ static void _call_f_standardIcon_c6956 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QIcon)((QStyle *)cls)->standardIcon (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -578,9 +578,9 @@ static void _call_f_standardPixmap_c6956 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPixmap)((QStyle *)cls)->standardPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -605,10 +605,10 @@ static void _call_f_styleHint_c8615 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); - QStyleHintReturn *arg4 = args ? args.read (heap) : (QStyleHintReturn *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStyle *)cls)->styleHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -633,10 +633,10 @@ static void _call_f_subControlRect_c9798 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QStyle *)cls)->subControlRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -659,9 +659,9 @@ static void _call_f_subElementRect_c6528 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QStyle *)cls)->subElementRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -680,7 +680,7 @@ static void _call_f_unpolish_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->unpolish (arg1); } @@ -700,7 +700,7 @@ static void _call_f_unpolish_1843 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->unpolish (arg1); } @@ -726,10 +726,10 @@ static void _call_f_alignedRect_8339 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QFlags arg2 = args.read > (heap); - const QSize &arg3 = args.read (heap); - const QRect &arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QRect &arg4 = gsi::arg_reader() (args, heap); ret.write ((QRect)QStyle::alignedRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -756,11 +756,11 @@ static void _call_f_sliderPositionFromValue_3500 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - bool arg5 = args ? args.read (heap) : (bool)(false); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + bool arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((int)QStyle::sliderPositionFromValue (arg1, arg2, arg3, arg4, arg5)); } @@ -787,11 +787,11 @@ static void _call_f_sliderValueFromPosition_3500 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - bool arg5 = args ? args.read (heap) : (bool)(false); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + bool arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((int)QStyle::sliderValueFromPosition (arg1, arg2, arg3, arg4, arg5)); } @@ -812,8 +812,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStyle::tr (arg1, arg2)); } @@ -836,9 +836,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStyle::tr (arg1, arg2, arg3)); } @@ -859,8 +859,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStyle::trUtf8 (arg1, arg2)); } @@ -883,9 +883,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStyle::trUtf8 (arg1, arg2, arg3)); } @@ -906,8 +906,8 @@ static void _call_f_visualAlignment_4958 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QFlags arg2 = args.read > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write > ((QFlags)QStyle::visualAlignment (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -930,9 +930,9 @@ static void _call_f_visualPos_5808 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QRect &arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); ret.write ((QPoint)QStyle::visualPos (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -955,9 +955,9 @@ static void _call_f_visualRect_5684 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QRect &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)QStyle::visualRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -1607,7 +1607,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStyle_Adaptor *)cls)->emitter_QStyle_destroyed_1302 (arg1); } @@ -2005,11 +2005,11 @@ static void _call_fp_layoutSpacingImplementation_c11697 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QStyleOption *arg4 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg5 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStyle_Adaptor *)cls)->fp_QStyle_layoutSpacingImplementation_c11697 (arg1, arg2, arg3, arg4, arg5)); } @@ -2128,7 +2128,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStyle_Adaptor *)cls)->fp_QStyle_receivers_c1731 (arg1)); } @@ -2196,9 +2196,9 @@ static void _call_fp_standardIconImplementation_c6956 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QIcon)((QStyle_Adaptor *)cls)->fp_QStyle_standardIconImplementation_c6956 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleFactory.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleFactory.cc index d4cdff47a..25b30f937 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleFactory.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleFactory.cc @@ -66,7 +66,7 @@ static void _call_f_create_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyle *)QStyleFactory::create (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleHintReturn.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleHintReturn.cc index dc838587c..ca9f63dee 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleHintReturn.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleHintReturn.cc @@ -52,8 +52,8 @@ static void _call_ctor_QStyleHintReturn_1426 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(QStyleOption::Version); - int arg2 = args ? args.read (heap) : (int)(QStyleHintReturn::SH_Default); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStyleOption::Version, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStyleHintReturn::SH_Default, heap); ret.write (new QStyleHintReturn (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOption.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOption.cc index ecb92e218..cbe24dd66 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOption.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOption.cc @@ -53,8 +53,8 @@ static void _call_ctor_QStyleOption_1426 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(QStyleOption::Version); - int arg2 = args ? args.read (heap) : (int)(QStyleOption::SO_Default); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStyleOption::Version, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStyleOption::SO_Default, heap); ret.write (new QStyleOption (arg1, arg2)); } @@ -73,7 +73,7 @@ static void _call_ctor_QStyleOption_2556 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOption &arg1 = args.read (heap); + const QStyleOption &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOption (arg1)); } @@ -92,7 +92,7 @@ static void _call_f_init_2010 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleOption *)cls)->init (arg1); } @@ -112,7 +112,7 @@ static void _call_f_initFrom_2010 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleOption *)cls)->initFrom (arg1); } @@ -132,7 +132,7 @@ static void _call_f_operator_eq__2556 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOption &arg1 = args.read (heap); + const QStyleOption &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyleOption &)((QStyleOption *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionButton.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionButton.cc index 23f923e90..1882761f1 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionButton.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionButton.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionButton_3192 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionButton &arg1 = args.read (heap); + const QStyleOptionButton &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionButton (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionComboBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionComboBox.cc index 070569f02..b2d741c68 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionComboBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionComboBox.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionComboBox_3349 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionComboBox &arg1 = args.read (heap); + const QStyleOptionComboBox &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionComboBox (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionComplex.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionComplex.cc index 868e44e4f..c062fac79 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionComplex.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionComplex.cc @@ -54,8 +54,8 @@ static void _call_ctor_QStyleOptionComplex_1426 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(QStyleOptionComplex::Version); - int arg2 = args ? args.read (heap) : (int)(QStyleOption::SO_Complex); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStyleOptionComplex::Version, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStyleOption::SO_Complex, heap); ret.write (new QStyleOptionComplex (arg1, arg2)); } @@ -74,7 +74,7 @@ static void _call_ctor_QStyleOptionComplex_3284 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionComplex &arg1 = args.read (heap); + const QStyleOptionComplex &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionComplex (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionDockWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionDockWidget.cc index ff3edb44b..74cced26d 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionDockWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionDockWidget.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionDockWidget_3553 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionDockWidget &arg1 = args.read (heap); + const QStyleOptionDockWidget &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionDockWidget (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFocusRect.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFocusRect.cc index 7b5b24e85..1bba1b935 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFocusRect.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFocusRect.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionFocusRect_3466 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionFocusRect &arg1 = args.read (heap); + const QStyleOptionFocusRect &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionFocusRect (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrame.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrame.cc index 6103571c3..bfdeec616 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrame.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrame.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionFrame_3047 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionFrame &arg1 = args.read (heap); + const QStyleOptionFrame &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionFrame (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV2.cc index 9e72fd455..8f0309839 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV2.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionFrameV2_3183 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionFrameV2 &arg1 = args.read (heap); + const QStyleOptionFrameV2 &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionFrameV2 (arg1)); } @@ -86,7 +86,7 @@ static void _call_ctor_QStyleOptionFrameV2_3047 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionFrame &arg1 = args.read (heap); + const QStyleOptionFrame &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionFrameV2 (arg1)); } @@ -105,7 +105,7 @@ static void _call_f_operator_eq__3047 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionFrame &arg1 = args.read (heap); + const QStyleOptionFrame &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyleOptionFrameV2 &)((QStyleOptionFrameV2 *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV3.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV3.cc index 70fd1b8d9..1be623e39 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV3.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionFrameV3.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionFrameV3_3184 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionFrameV3 &arg1 = args.read (heap); + const QStyleOptionFrameV3 &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionFrameV3 (arg1)); } @@ -86,7 +86,7 @@ static void _call_ctor_QStyleOptionFrameV3_3047 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionFrame &arg1 = args.read (heap); + const QStyleOptionFrame &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionFrameV3 (arg1)); } @@ -105,7 +105,7 @@ static void _call_f_operator_eq__3047 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionFrame &arg1 = args.read (heap); + const QStyleOptionFrame &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyleOptionFrameV3 &)((QStyleOptionFrameV3 *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionGraphicsItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionGraphicsItem.cc index 8f7482f1e..0550b2cea 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionGraphicsItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionGraphicsItem.cc @@ -68,7 +68,7 @@ static void _call_ctor_QStyleOptionGraphicsItem_3772 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionGraphicsItem &arg1 = args.read (heap); + const QStyleOptionGraphicsItem &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionGraphicsItem (arg1)); } @@ -87,7 +87,7 @@ static void _call_f_levelOfDetailFromTransform_2350 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((double)QStyleOptionGraphicsItem::levelOfDetailFromTransform (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionGroupBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionGroupBox.cc index 4741efe70..ce3ca553b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionGroupBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionGroupBox.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionGroupBox_3378 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionGroupBox &arg1 = args.read (heap); + const QStyleOptionGroupBox &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionGroupBox (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionHeader.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionHeader.cc index 84d241b10..09ed8a539 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionHeader.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionHeader.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionHeader_3141 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionHeader &arg1 = args.read (heap); + const QStyleOptionHeader &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionHeader (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionMenuItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionMenuItem.cc index c73c608f8..612e47f47 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionMenuItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionMenuItem.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionMenuItem_3360 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionMenuItem &arg1 = args.read (heap); + const QStyleOptionMenuItem &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionMenuItem (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionProgressBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionProgressBar.cc index 111f42236..bb6f0e1d2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionProgressBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionProgressBar.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionProgressBar_3686 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionProgressBar &arg1 = args.read (heap); + const QStyleOptionProgressBar &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionProgressBar (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionProgressBarV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionProgressBarV2.cc index 77c9f56c3..dbe711b25 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionProgressBarV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionProgressBarV2.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionProgressBarV2_3686 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionProgressBar &arg1 = args.read (heap); + const QStyleOptionProgressBar &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionProgressBarV2 (arg1)); } @@ -86,7 +86,7 @@ static void _call_ctor_QStyleOptionProgressBarV2_3822 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionProgressBarV2 &arg1 = args.read (heap); + const QStyleOptionProgressBarV2 &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionProgressBarV2 (arg1)); } @@ -105,7 +105,7 @@ static void _call_f_operator_eq__3686 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionProgressBar &arg1 = args.read (heap); + const QStyleOptionProgressBar &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyleOptionProgressBarV2 &)((QStyleOptionProgressBarV2 *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionQ3DockWindow.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionQ3DockWindow.cc index a9e057787..a08dfec5f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionQ3DockWindow.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionQ3DockWindow.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionQ3DockWindow_3705 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionQ3DockWindow &arg1 = args.read (heap); + const QStyleOptionQ3DockWindow &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionQ3DockWindow (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionQ3ListView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionQ3ListView.cc index 8a26cc165..792df25ab 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionQ3ListView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionQ3ListView.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionQ3ListView_3511 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionQ3ListView &arg1 = args.read (heap); + const QStyleOptionQ3ListView &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionQ3ListView (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionQ3ListViewItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionQ3ListViewItem.cc index af1074db2..411f82a72 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionQ3ListViewItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionQ3ListViewItem.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionQ3ListViewItem_3910 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionQ3ListViewItem &arg1 = args.read (heap); + const QStyleOptionQ3ListViewItem &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionQ3ListViewItem (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionRubberBand.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionRubberBand.cc index 147456f97..ccefa60e6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionRubberBand.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionRubberBand.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionRubberBand_3539 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionRubberBand &arg1 = args.read (heap); + const QStyleOptionRubberBand &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionRubberBand (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionSizeGrip.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionSizeGrip.cc index 0004ab703..090380521 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionSizeGrip.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionSizeGrip.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionSizeGrip_3369 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionSizeGrip &arg1 = args.read (heap); + const QStyleOptionSizeGrip &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionSizeGrip (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionSlider.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionSlider.cc index dcc13ff58..2ef236fb2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionSlider.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionSlider.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionSlider_3167 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionSlider &arg1 = args.read (heap); + const QStyleOptionSlider &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionSlider (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionSpinBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionSpinBox.cc index 51254eea3..4facd66c7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionSpinBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionSpinBox.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionSpinBox_3263 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionSpinBox &arg1 = args.read (heap); + const QStyleOptionSpinBox &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionSpinBox (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTab.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTab.cc index f667f4913..65b72fdd2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTab.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTab.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionTab_2835 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTab &arg1 = args.read (heap); + const QStyleOptionTab &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionTab (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabBarBase.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabBarBase.cc index f8900490f..00a68ae73 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabBarBase.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabBarBase.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionTabBarBase_3491 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTabBarBase &arg1 = args.read (heap); + const QStyleOptionTabBarBase &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionTabBarBase (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabBarBaseV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabBarBaseV2.cc index 2dde55e36..0ea022341 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabBarBaseV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabBarBaseV2.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionTabBarBaseV2_3627 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTabBarBaseV2 &arg1 = args.read (heap); + const QStyleOptionTabBarBaseV2 &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionTabBarBaseV2 (arg1)); } @@ -86,7 +86,7 @@ static void _call_ctor_QStyleOptionTabBarBaseV2_3491 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTabBarBase &arg1 = args.read (heap); + const QStyleOptionTabBarBase &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionTabBarBaseV2 (arg1)); } @@ -105,7 +105,7 @@ static void _call_f_operator_eq__3491 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTabBarBase &arg1 = args.read (heap); + const QStyleOptionTabBarBase &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyleOptionTabBarBaseV2 &)((QStyleOptionTabBarBaseV2 *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV2.cc index aed3410c4..eec031e97 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV2.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionTabV2_2971 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTabV2 &arg1 = args.read (heap); + const QStyleOptionTabV2 &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionTabV2 (arg1)); } @@ -86,7 +86,7 @@ static void _call_ctor_QStyleOptionTabV2_2835 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTab &arg1 = args.read (heap); + const QStyleOptionTab &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionTabV2 (arg1)); } @@ -105,7 +105,7 @@ static void _call_f_operator_eq__2835 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTab &arg1 = args.read (heap); + const QStyleOptionTab &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyleOptionTabV2 &)((QStyleOptionTabV2 *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV3.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV3.cc index fcf25c7a8..d75980862 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV3.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabV3.cc @@ -68,7 +68,7 @@ static void _call_ctor_QStyleOptionTabV3_2972 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTabV3 &arg1 = args.read (heap); + const QStyleOptionTabV3 &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionTabV3 (arg1)); } @@ -87,7 +87,7 @@ static void _call_ctor_QStyleOptionTabV3_2971 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTabV2 &arg1 = args.read (heap); + const QStyleOptionTabV2 &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionTabV3 (arg1)); } @@ -106,7 +106,7 @@ static void _call_ctor_QStyleOptionTabV3_2835 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTab &arg1 = args.read (heap); + const QStyleOptionTab &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionTabV3 (arg1)); } @@ -125,7 +125,7 @@ static void _call_f_operator_eq__2835 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTab &arg1 = args.read (heap); + const QStyleOptionTab &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyleOptionTabV3 &)((QStyleOptionTabV3 *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabWidgetFrame.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabWidgetFrame.cc index e4d6809ab..1630a184f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabWidgetFrame.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTabWidgetFrame.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionTabWidgetFrame_3938 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTabWidgetFrame &arg1 = args.read (heap); + const QStyleOptionTabWidgetFrame &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionTabWidgetFrame (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTitleBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTitleBar.cc index beb973f8c..adedd1583 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTitleBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionTitleBar.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionTitleBar_3347 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTitleBar &arg1 = args.read (heap); + const QStyleOptionTitleBar &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionTitleBar (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBar.cc index 0b17d826d..dc95fa204 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBar.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionToolBar_3247 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionToolBar &arg1 = args.read (heap); + const QStyleOptionToolBar &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionToolBar (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBox.cc index 85748fdaf..8e35fae98 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBox.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionToolBox_3267 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionToolBox &arg1 = args.read (heap); + const QStyleOptionToolBox &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionToolBox (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBoxV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBoxV2.cc index 88b45f4d4..4c22308ca 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBoxV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolBoxV2.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionToolBoxV2_3403 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionToolBoxV2 &arg1 = args.read (heap); + const QStyleOptionToolBoxV2 &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionToolBoxV2 (arg1)); } @@ -86,7 +86,7 @@ static void _call_ctor_QStyleOptionToolBoxV2_3267 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionToolBox &arg1 = args.read (heap); + const QStyleOptionToolBox &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionToolBoxV2 (arg1)); } @@ -105,7 +105,7 @@ static void _call_f_operator_eq__3267 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionToolBox &arg1 = args.read (heap); + const QStyleOptionToolBox &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyleOptionToolBoxV2 &)((QStyleOptionToolBoxV2 *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolButton.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolButton.cc index 035dac553..9a6f1816b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolButton.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionToolButton.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionToolButton_3606 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionToolButton &arg1 = args.read (heap); + const QStyleOptionToolButton &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionToolButton (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItem.cc index 03d2da5be..bbb36b258 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItem.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionViewItem_3366 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionViewItem (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV2.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV2.cc index 4745a62d4..6df96932a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV2.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV2.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionViewItemV2_3502 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItemV2 &arg1 = args.read (heap); + const QStyleOptionViewItemV2 &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionViewItemV2 (arg1)); } @@ -86,7 +86,7 @@ static void _call_ctor_QStyleOptionViewItemV2_3366 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionViewItemV2 (arg1)); } @@ -105,7 +105,7 @@ static void _call_f_operator_eq__3366 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyleOptionViewItemV2 &)((QStyleOptionViewItemV2 *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV3.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV3.cc index 8fa4826c4..7555c10b6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV3.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV3.cc @@ -68,7 +68,7 @@ static void _call_ctor_QStyleOptionViewItemV3_3503 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItemV3 &arg1 = args.read (heap); + const QStyleOptionViewItemV3 &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionViewItemV3 (arg1)); } @@ -87,7 +87,7 @@ static void _call_ctor_QStyleOptionViewItemV3_3366 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionViewItemV3 (arg1)); } @@ -106,7 +106,7 @@ static void _call_f_operator_eq__3366 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyleOptionViewItemV3 &)((QStyleOptionViewItemV3 *)cls)->operator = (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV4.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV4.cc index c7aa0ed22..3a902f690 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV4.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyleOptionViewItemV4.cc @@ -68,7 +68,7 @@ static void _call_ctor_QStyleOptionViewItemV4_3504 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItemV4 &arg1 = args.read (heap); + const QStyleOptionViewItemV4 &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionViewItemV4 (arg1)); } @@ -87,7 +87,7 @@ static void _call_ctor_QStyleOptionViewItemV4_3366 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionViewItemV4 (arg1)); } @@ -106,7 +106,7 @@ static void _call_f_operator_eq__3366 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyleOptionViewItemV4 &)((QStyleOptionViewItemV4 *)cls)->operator = (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStylePainter.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStylePainter.cc index 5f0101083..8f53ede40 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStylePainter.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStylePainter.cc @@ -95,7 +95,7 @@ static void _call_ctor_QStylePainter_1315 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QStylePainter (arg1)); } @@ -116,8 +116,8 @@ static void _call_ctor_QStylePainter_3010 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ret.write (new QStylePainter (arg1, arg2)); } @@ -136,7 +136,7 @@ static void _call_f_begin_1315 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStylePainter *)cls)->begin (arg1)); } @@ -157,8 +157,8 @@ static void _call_f_begin_3010 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStylePainter *)cls)->begin (arg1, arg2)); } @@ -179,8 +179,8 @@ static void _call_f_drawComplexControl_5803 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePainter *)cls)->drawComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -202,8 +202,8 @@ static void _call_f_drawControl_5061 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePainter *)cls)->drawControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -227,9 +227,9 @@ static void _call_f_drawItemPixmap_4360 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePainter *)cls)->drawItemPixmap (arg1, arg2, arg3); } @@ -259,12 +259,12 @@ static void _call_f_drawItemText_9286 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPalette &arg3 = args.read (heap); - bool arg4 = args.read (heap); - const QString &arg5 = args.read (heap); - const qt_gsi::Converter::target_type & arg6 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole)); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPalette &arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg6 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePainter *)cls)->drawItemText (arg1, arg2, arg3, arg4, arg5, qt_gsi::QtToCppAdaptor(arg6).cref()); } @@ -286,8 +286,8 @@ static void _call_f_drawPrimitive_5277 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePainter *)cls)->drawPrimitive (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStylePlugin.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStylePlugin.cc index ec8989c17..33fdff49a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStylePlugin.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStylePlugin.cc @@ -69,7 +69,7 @@ static void _call_f_create_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyle *)((QStylePlugin *)cls)->create (arg1)); } @@ -105,8 +105,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStylePlugin::tr (arg1, arg2)); } @@ -129,9 +129,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStylePlugin::tr (arg1, arg2, arg3)); } @@ -152,8 +152,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStylePlugin::trUtf8 (arg1, arg2)); } @@ -176,9 +176,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStylePlugin::trUtf8 (arg1, arg2, arg3)); } @@ -390,7 +390,7 @@ static void _call_ctor_QStylePlugin_Adaptor_1302 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStylePlugin_Adaptor (arg1)); } @@ -479,7 +479,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStylePlugin_Adaptor *)cls)->emitter_QStylePlugin_destroyed_1302 (arg1); } @@ -589,7 +589,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStylePlugin_Adaptor *)cls)->fp_QStylePlugin_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQStyledItemDelegate.cc b/src/gsiqt/qt4/QtGui/gsiDeclQStyledItemDelegate.cc index 3dc51793b..94a3a0a15 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQStyledItemDelegate.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQStyledItemDelegate.cc @@ -83,9 +83,9 @@ static void _call_f_createEditor_c6860 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QStyledItemDelegate *)cls)->createEditor (arg1, arg2, arg3)); } @@ -106,8 +106,8 @@ static void _call_f_displayText_c3997 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - const QLocale &arg2 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + const QLocale &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QStyledItemDelegate *)cls)->displayText (arg1, arg2)); } @@ -145,9 +145,9 @@ static void _call_f_paint_c6971 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate *)cls)->paint (arg1, arg2, arg3); } @@ -169,8 +169,8 @@ static void _call_f_setEditorData_c3602 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate *)cls)->setEditorData (arg1, arg2); } @@ -190,7 +190,7 @@ static void _call_f_setItemEditorFactory_2445 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemEditorFactory *arg1 = args.read (heap); + QItemEditorFactory *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate *)cls)->setItemEditorFactory (arg1); } @@ -214,9 +214,9 @@ static void _call_f_setModelData_c5913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate *)cls)->setModelData (arg1, arg2, arg3); } @@ -238,8 +238,8 @@ static void _call_f_sizeHint_c5653 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QStyledItemDelegate *)cls)->sizeHint (arg1, arg2)); } @@ -262,9 +262,9 @@ static void _call_f_updateEditorGeometry_c6860 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate *)cls)->updateEditorGeometry (arg1, arg2, arg3); } @@ -286,8 +286,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStyledItemDelegate::tr (arg1, arg2)); } @@ -310,9 +310,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStyledItemDelegate::tr (arg1, arg2, arg3)); } @@ -333,8 +333,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QStyledItemDelegate::trUtf8 (arg1, arg2)); } @@ -357,9 +357,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QStyledItemDelegate::trUtf8 (arg1, arg2, arg3)); } @@ -710,7 +710,7 @@ static void _call_ctor_QStyledItemDelegate_Adaptor_1302 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStyledItemDelegate_Adaptor (arg1)); } @@ -754,8 +754,8 @@ static void _call_emitter_closeEditor_4926 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemDelegate::NoHint)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemDelegate::NoHint), heap); ((QStyledItemDelegate_Adaptor *)cls)->emitter_QStyledItemDelegate_closeEditor_4926 (arg1, arg2); } @@ -773,7 +773,7 @@ static void _call_emitter_commitData_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ((QStyledItemDelegate_Adaptor *)cls)->emitter_QStyledItemDelegate_commitData_1315 (arg1); } @@ -844,7 +844,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStyledItemDelegate_Adaptor *)cls)->emitter_QStyledItemDelegate_destroyed_1302 (arg1); } @@ -1050,7 +1050,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStyledItemDelegate_Adaptor *)cls)->fp_QStyledItemDelegate_receivers_c1731 (arg1)); } @@ -1165,7 +1165,7 @@ static void _call_emitter_sizeHintChanged_2395 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QStyledItemDelegate_Adaptor *)cls)->emitter_QStyledItemDelegate_sizeHintChanged_2395 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSwipeGesture.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSwipeGesture.cc index 5f1154878..a5594cb84 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSwipeGesture.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSwipeGesture.cc @@ -84,7 +84,7 @@ static void _call_f_setSwipeAngle_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSwipeGesture *)cls)->setSwipeAngle (arg1); } @@ -136,8 +136,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSwipeGesture::tr (arg1, arg2)); } @@ -160,9 +160,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSwipeGesture::tr (arg1, arg2, arg3)); } @@ -183,8 +183,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSwipeGesture::trUtf8 (arg1, arg2)); } @@ -207,9 +207,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSwipeGesture::trUtf8 (arg1, arg2, arg3)); } @@ -390,7 +390,7 @@ static void _call_ctor_QSwipeGesture_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSwipeGesture_Adaptor (arg1)); } @@ -456,7 +456,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSwipeGesture_Adaptor *)cls)->emitter_QSwipeGesture_destroyed_1302 (arg1); } @@ -547,7 +547,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSwipeGesture_Adaptor *)cls)->fp_QSwipeGesture_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSyntaxHighlighter.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSyntaxHighlighter.cc index 48735becf..42806739b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSyntaxHighlighter.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSyntaxHighlighter.cc @@ -106,7 +106,7 @@ static void _call_f_rehighlightBlock_2306 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter *)cls)->rehighlightBlock (arg1); } @@ -126,7 +126,7 @@ static void _call_f_setDocument_1955 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter *)cls)->setDocument (arg1); } @@ -148,8 +148,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSyntaxHighlighter::tr (arg1, arg2)); } @@ -172,9 +172,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSyntaxHighlighter::tr (arg1, arg2, arg3)); } @@ -195,8 +195,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSyntaxHighlighter::trUtf8 (arg1, arg2)); } @@ -219,9 +219,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSyntaxHighlighter::trUtf8 (arg1, arg2, arg3)); } @@ -475,7 +475,7 @@ static void _call_ctor_QSyntaxHighlighter_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QSyntaxHighlighter_Adaptor (arg1)); } @@ -493,7 +493,7 @@ static void _call_ctor_QSyntaxHighlighter_Adaptor_1955 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QSyntaxHighlighter_Adaptor (arg1)); } @@ -511,7 +511,7 @@ static void _call_ctor_QSyntaxHighlighter_Adaptor_1514 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextEdit *arg1 = args.read (heap); + QTextEdit *arg1 = gsi::arg_reader() (args, heap); ret.write (new QSyntaxHighlighter_Adaptor (arg1)); } @@ -619,7 +619,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSyntaxHighlighter_Adaptor *)cls)->emitter_QSyntaxHighlighter_destroyed_1302 (arg1); } @@ -710,7 +710,7 @@ static void _call_fp_format_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCharFormat)((QSyntaxHighlighter_Adaptor *)cls)->fp_QSyntaxHighlighter_format_c767 (arg1)); } @@ -766,7 +766,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSyntaxHighlighter_Adaptor *)cls)->fp_QSyntaxHighlighter_receivers_c1731 (arg1)); } @@ -798,7 +798,7 @@ static void _call_fp_setCurrentBlockState_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->fp_QSyntaxHighlighter_setCurrentBlockState_767 (arg1); } @@ -817,7 +817,7 @@ static void _call_fp_setCurrentBlockUserData_2408 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextBlockUserData *arg1 = args.read (heap); + QTextBlockUserData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->fp_QSyntaxHighlighter_setCurrentBlockUserData_2408 (arg1); } @@ -840,9 +840,9 @@ static void _call_fp_setFormat_4132 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextCharFormat &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextCharFormat &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->fp_QSyntaxHighlighter_setFormat_4132 (arg1, arg2, arg3); } @@ -865,9 +865,9 @@ static void _call_fp_setFormat_3223 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QColor &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QColor &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->fp_QSyntaxHighlighter_setFormat_3223 (arg1, arg2, arg3); } @@ -890,9 +890,9 @@ static void _call_fp_setFormat_3119 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QFont &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QFont &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->fp_QSyntaxHighlighter_setFormat_3119 (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQSystemTrayIcon.cc b/src/gsiqt/qt4/QtGui/gsiDeclQSystemTrayIcon.cc index 09b7258c3..8c267823b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQSystemTrayIcon.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQSystemTrayIcon.cc @@ -147,7 +147,7 @@ static void _call_f_setContextMenu_1108 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenu *arg1 = args.read (heap); + QMenu *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon *)cls)->setContextMenu (arg1); } @@ -167,7 +167,7 @@ static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon *)cls)->setIcon (arg1); } @@ -187,7 +187,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon *)cls)->setToolTip (arg1); } @@ -207,7 +207,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon *)cls)->setVisible (arg1); } @@ -249,10 +249,10 @@ static void _call_f_showMessage_7682 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSystemTrayIcon::Information)); - int arg4 = args ? args.read (heap) : (int)(10000); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSystemTrayIcon::Information), heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (10000, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon *)cls)->showMessage (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4); } @@ -319,8 +319,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSystemTrayIcon::tr (arg1, arg2)); } @@ -343,9 +343,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSystemTrayIcon::tr (arg1, arg2, arg3)); } @@ -366,8 +366,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSystemTrayIcon::trUtf8 (arg1, arg2)); } @@ -390,9 +390,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSystemTrayIcon::trUtf8 (arg1, arg2, arg3)); } @@ -609,7 +609,7 @@ static void _call_ctor_QSystemTrayIcon_Adaptor_1302 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSystemTrayIcon_Adaptor (arg1)); } @@ -629,8 +629,8 @@ static void _call_ctor_QSystemTrayIcon_Adaptor_2981 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSystemTrayIcon_Adaptor (arg1, arg2)); } @@ -648,7 +648,7 @@ static void _call_emitter_activated_3745 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QSystemTrayIcon_Adaptor *)cls)->emitter_QSystemTrayIcon_activated_3745 (arg1); } @@ -714,7 +714,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSystemTrayIcon_Adaptor *)cls)->emitter_QSystemTrayIcon_destroyed_1302 (arg1); } @@ -819,7 +819,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSystemTrayIcon_Adaptor *)cls)->fp_QSystemTrayIcon_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTabBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTabBar.cc index 5442a8e9f..c28f5c02b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTabBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTabBar.cc @@ -113,7 +113,7 @@ static void _call_f_addTab_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabBar *)cls)->addTab (arg1)); } @@ -134,8 +134,8 @@ static void _call_f_addTab_3704 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabBar *)cls)->addTab (arg1, arg2)); } @@ -261,8 +261,8 @@ static void _call_f_insertTab_2684 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabBar *)cls)->insertTab (arg1, arg2)); } @@ -285,9 +285,9 @@ static void _call_f_insertTab_4363 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabBar *)cls)->insertTab (arg1, arg2, arg3)); } @@ -321,7 +321,7 @@ static void _call_f_isTabEnabled_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabBar *)cls)->isTabEnabled (arg1)); } @@ -357,8 +357,8 @@ static void _call_f_moveTab_1426 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->moveTab (arg1, arg2); } @@ -378,7 +378,7 @@ static void _call_f_removeTab_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->removeTab (arg1); } @@ -413,7 +413,7 @@ static void _call_f_setCurrentIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setCurrentIndex (arg1); } @@ -433,7 +433,7 @@ static void _call_f_setDocumentMode_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setDocumentMode (arg1); } @@ -453,7 +453,7 @@ static void _call_f_setDrawBase_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setDrawBase (arg1); } @@ -473,7 +473,7 @@ static void _call_f_setElideMode_2042 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setElideMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -493,7 +493,7 @@ static void _call_f_setExpanding_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setExpanding (arg1); } @@ -513,7 +513,7 @@ static void _call_f_setIconSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setIconSize (arg1); } @@ -533,7 +533,7 @@ static void _call_f_setMovable_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setMovable (arg1); } @@ -553,7 +553,7 @@ static void _call_f_setSelectionBehaviorOnRemove_2939 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setSelectionBehaviorOnRemove (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -573,7 +573,7 @@ static void _call_f_setShape_1686 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setShape (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -597,9 +597,9 @@ static void _call_f_setTabButton_4544 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QWidget *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabButton (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -621,8 +621,8 @@ static void _call_f_setTabData_2778 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabData (arg1, arg2); } @@ -644,8 +644,8 @@ static void _call_f_setTabEnabled_1523 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabEnabled (arg1, arg2); } @@ -667,8 +667,8 @@ static void _call_f_setTabIcon_2446 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabIcon (arg1, arg2); } @@ -690,8 +690,8 @@ static void _call_f_setTabText_2684 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabText (arg1, arg2); } @@ -713,8 +713,8 @@ static void _call_f_setTabTextColor_2564 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabTextColor (arg1, arg2); } @@ -736,8 +736,8 @@ static void _call_f_setTabToolTip_2684 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabToolTip (arg1, arg2); } @@ -759,8 +759,8 @@ static void _call_f_setTabWhatsThis_2684 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabWhatsThis (arg1, arg2); } @@ -780,7 +780,7 @@ static void _call_f_setTabsClosable_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabsClosable (arg1); } @@ -800,7 +800,7 @@ static void _call_f_setUsesScrollButtons_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setUsesScrollButtons (arg1); } @@ -850,7 +850,7 @@ static void _call_f_tabAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabBar *)cls)->tabAt (arg1)); } @@ -871,8 +871,8 @@ static void _call_f_tabButton_c3337 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QWidget *)((QTabBar *)cls)->tabButton (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -891,7 +891,7 @@ static void _call_f_tabData_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTabBar *)cls)->tabData (arg1)); } @@ -910,7 +910,7 @@ static void _call_f_tabIcon_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QTabBar *)cls)->tabIcon (arg1)); } @@ -929,7 +929,7 @@ static void _call_f_tabRect_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTabBar *)cls)->tabRect (arg1)); } @@ -948,7 +948,7 @@ static void _call_f_tabText_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTabBar *)cls)->tabText (arg1)); } @@ -967,7 +967,7 @@ static void _call_f_tabTextColor_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor)((QTabBar *)cls)->tabTextColor (arg1)); } @@ -986,7 +986,7 @@ static void _call_f_tabToolTip_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTabBar *)cls)->tabToolTip (arg1)); } @@ -1005,7 +1005,7 @@ static void _call_f_tabWhatsThis_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTabBar *)cls)->tabWhatsThis (arg1)); } @@ -1056,8 +1056,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTabBar::tr (arg1, arg2)); } @@ -1080,9 +1080,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTabBar::tr (arg1, arg2, arg3)); } @@ -1103,8 +1103,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTabBar::trUtf8 (arg1, arg2)); } @@ -1127,9 +1127,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTabBar::trUtf8 (arg1, arg2, arg3)); } @@ -2122,7 +2122,7 @@ static void _call_ctor_QTabBar_Adaptor_1315 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTabBar_Adaptor (arg1)); } @@ -2264,9 +2264,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->fp_QTabBar_create_2208 (arg1, arg2, arg3); } @@ -2285,7 +2285,7 @@ static void _call_emitter_currentChanged_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QTabBar_Adaptor *)cls)->emitter_QTabBar_currentChanged_767 (arg1); } @@ -2303,7 +2303,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTabBar_Adaptor *)cls)->emitter_QTabBar_customContextMenuRequested_1916 (arg1); } @@ -2347,8 +2347,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->fp_QTabBar_destroy_1620 (arg1, arg2); } @@ -2367,7 +2367,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTabBar_Adaptor *)cls)->emitter_QTabBar_destroyed_1302 (arg1); } @@ -2774,8 +2774,8 @@ static void _call_fp_initStyleOption_c2803 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionTab *arg1 = args.read (heap); - int arg2 = args.read (heap); + QStyleOptionTab *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->fp_QTabBar_initStyleOption_c2803 (arg1, arg2); } @@ -3162,7 +3162,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabBar_Adaptor *)cls)->fp_QTabBar_receivers_c1731 (arg1)); } @@ -3324,7 +3324,7 @@ static void _call_emitter_tabCloseRequested_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QTabBar_Adaptor *)cls)->emitter_QTabBar_tabCloseRequested_767 (arg1); } @@ -3388,8 +3388,8 @@ static void _call_emitter_tabMoved_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTabBar_Adaptor *)cls)->emitter_QTabBar_tabMoved_1426 (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTabWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTabWidget.cc index 3435c9c17..a610d51de 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTabWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTabWidget.cc @@ -115,8 +115,8 @@ static void _call_f_addTab_3232 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget *)cls)->addTab (arg1, arg2)); } @@ -139,9 +139,9 @@ static void _call_f_addTab_4911 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget *)cls)->addTab (arg1, arg2, arg3)); } @@ -176,7 +176,7 @@ static void _call_f_cornerWidget_c1366 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner), heap); ret.write ((QWidget *)((QTabWidget *)cls)->cornerWidget (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -285,7 +285,7 @@ static void _call_f_indexOf_c1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget *)cls)->indexOf (arg1)); } @@ -308,9 +308,9 @@ static void _call_f_insertTab_3891 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget *)cls)->insertTab (arg1, arg2, arg3)); } @@ -335,10 +335,10 @@ static void _call_f_insertTab_5570 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const QIcon &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + const QIcon &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget *)cls)->insertTab (arg1, arg2, arg3, arg4)); } @@ -372,7 +372,7 @@ static void _call_f_isTabEnabled_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabWidget *)cls)->isTabEnabled (arg1)); } @@ -406,7 +406,7 @@ static void _call_f_removeTab_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->removeTab (arg1); } @@ -428,8 +428,8 @@ static void _call_f_setCornerWidget_2573 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setCornerWidget (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -449,7 +449,7 @@ static void _call_f_setCurrentIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setCurrentIndex (arg1); } @@ -469,7 +469,7 @@ static void _call_f_setCurrentWidget_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setCurrentWidget (arg1); } @@ -489,7 +489,7 @@ static void _call_f_setDocumentMode_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setDocumentMode (arg1); } @@ -509,7 +509,7 @@ static void _call_f_setElideMode_2042 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setElideMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -529,7 +529,7 @@ static void _call_f_setIconSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setIconSize (arg1); } @@ -549,7 +549,7 @@ static void _call_f_setMovable_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setMovable (arg1); } @@ -571,8 +571,8 @@ static void _call_f_setTabEnabled_1523 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabEnabled (arg1, arg2); } @@ -594,8 +594,8 @@ static void _call_f_setTabIcon_2446 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabIcon (arg1, arg2); } @@ -615,7 +615,7 @@ static void _call_f_setTabPosition_2656 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabPosition (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -635,7 +635,7 @@ static void _call_f_setTabShape_2300 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabShape (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -657,8 +657,8 @@ static void _call_f_setTabText_2684 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabText (arg1, arg2); } @@ -680,8 +680,8 @@ static void _call_f_setTabToolTip_2684 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabToolTip (arg1, arg2); } @@ -703,8 +703,8 @@ static void _call_f_setTabWhatsThis_2684 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabWhatsThis (arg1, arg2); } @@ -724,7 +724,7 @@ static void _call_f_setTabsClosable_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabsClosable (arg1); } @@ -744,7 +744,7 @@ static void _call_f_setUsesScrollButtons_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setUsesScrollButtons (arg1); } @@ -779,7 +779,7 @@ static void _call_f_tabIcon_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QTabWidget *)cls)->tabIcon (arg1)); } @@ -828,7 +828,7 @@ static void _call_f_tabText_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTabWidget *)cls)->tabText (arg1)); } @@ -847,7 +847,7 @@ static void _call_f_tabToolTip_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTabWidget *)cls)->tabToolTip (arg1)); } @@ -866,7 +866,7 @@ static void _call_f_tabWhatsThis_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTabWidget *)cls)->tabWhatsThis (arg1)); } @@ -915,7 +915,7 @@ static void _call_f_widget_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QTabWidget *)cls)->widget (arg1)); } @@ -936,8 +936,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTabWidget::tr (arg1, arg2)); } @@ -960,9 +960,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTabWidget::tr (arg1, arg2, arg3)); } @@ -983,8 +983,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTabWidget::trUtf8 (arg1, arg2)); } @@ -1007,9 +1007,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTabWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1967,7 +1967,7 @@ static void _call_ctor_QTabWidget_Adaptor_1315 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTabWidget_Adaptor (arg1)); } @@ -2109,9 +2109,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->fp_QTabWidget_create_2208 (arg1, arg2, arg3); } @@ -2130,7 +2130,7 @@ static void _call_emitter_currentChanged_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QTabWidget_Adaptor *)cls)->emitter_QTabWidget_currentChanged_767 (arg1); } @@ -2148,7 +2148,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTabWidget_Adaptor *)cls)->emitter_QTabWidget_customContextMenuRequested_1916 (arg1); } @@ -2192,8 +2192,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->fp_QTabWidget_destroy_1620 (arg1, arg2); } @@ -2212,7 +2212,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTabWidget_Adaptor *)cls)->emitter_QTabWidget_destroyed_1302 (arg1); } @@ -2617,7 +2617,7 @@ static void _call_fp_initStyleOption_c3247 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionTabWidgetFrame *arg1 = args.read (heap); + QStyleOptionTabWidgetFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->fp_QTabWidget_initStyleOption_c3247 (arg1); } @@ -3004,7 +3004,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget_Adaptor *)cls)->fp_QTabWidget_receivers_c1731 (arg1)); } @@ -3075,7 +3075,7 @@ static void _call_fp_setTabBar_1259 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabBar *arg1 = args.read (heap); + QTabBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->fp_QTabWidget_setTabBar_1259 (arg1); } @@ -3199,7 +3199,7 @@ static void _call_emitter_tabCloseRequested_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QTabWidget_Adaptor *)cls)->emitter_QTabWidget_tabCloseRequested_767 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTableView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTableView.cc index 84432db93..2b46f91eb 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTableView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTableView.cc @@ -135,7 +135,7 @@ static void _call_f_columnAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->columnAt (arg1)); } @@ -156,8 +156,8 @@ static void _call_f_columnSpan_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->columnSpan (arg1, arg2)); } @@ -176,7 +176,7 @@ static void _call_f_columnViewportPosition_c767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->columnViewportPosition (arg1)); } @@ -195,7 +195,7 @@ static void _call_f_columnWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->columnWidth (arg1)); } @@ -229,7 +229,7 @@ static void _call_f_hideColumn_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->hideColumn (arg1); } @@ -249,7 +249,7 @@ static void _call_f_hideRow_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->hideRow (arg1); } @@ -284,7 +284,7 @@ static void _call_f_indexAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTableView *)cls)->indexAt (arg1)); } @@ -303,7 +303,7 @@ static void _call_f_isColumnHidden_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView *)cls)->isColumnHidden (arg1)); } @@ -337,7 +337,7 @@ static void _call_f_isRowHidden_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView *)cls)->isRowHidden (arg1)); } @@ -371,7 +371,7 @@ static void _call_f_resizeColumnToContents_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->resizeColumnToContents (arg1); } @@ -407,7 +407,7 @@ static void _call_f_resizeRowToContents_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->resizeRowToContents (arg1); } @@ -443,7 +443,7 @@ static void _call_f_rowAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->rowAt (arg1)); } @@ -462,7 +462,7 @@ static void _call_f_rowHeight_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->rowHeight (arg1)); } @@ -483,8 +483,8 @@ static void _call_f_rowSpan_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->rowSpan (arg1, arg2)); } @@ -503,7 +503,7 @@ static void _call_f_rowViewportPosition_c767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->rowViewportPosition (arg1)); } @@ -524,8 +524,8 @@ static void _call_f_scrollTo_5576 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->scrollTo (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -545,7 +545,7 @@ static void _call_f_selectColumn_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->selectColumn (arg1); } @@ -565,7 +565,7 @@ static void _call_f_selectRow_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->selectRow (arg1); } @@ -587,8 +587,8 @@ static void _call_f_setColumnHidden_1523 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setColumnHidden (arg1, arg2); } @@ -610,8 +610,8 @@ static void _call_f_setColumnWidth_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setColumnWidth (arg1, arg2); } @@ -631,7 +631,7 @@ static void _call_f_setCornerButtonEnabled_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setCornerButtonEnabled (arg1); } @@ -651,7 +651,7 @@ static void _call_f_setGridStyle_1569 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setGridStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -671,7 +671,7 @@ static void _call_f_setHorizontalHeader_1699 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHeaderView *arg1 = args.read (heap); + QHeaderView *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setHorizontalHeader (arg1); } @@ -691,7 +691,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setModel (arg1); } @@ -711,7 +711,7 @@ static void _call_f_setRootIndex_2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setRootIndex (arg1); } @@ -733,8 +733,8 @@ static void _call_f_setRowHeight_1426 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setRowHeight (arg1, arg2); } @@ -756,8 +756,8 @@ static void _call_f_setRowHidden_1523 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setRowHidden (arg1, arg2); } @@ -777,7 +777,7 @@ static void _call_f_setSelectionModel_2533 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setSelectionModel (arg1); } @@ -797,7 +797,7 @@ static void _call_f_setShowGrid_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setShowGrid (arg1); } @@ -817,7 +817,7 @@ static void _call_f_setSortingEnabled_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setSortingEnabled (arg1); } @@ -843,10 +843,10 @@ static void _call_f_setSpan_2744 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setSpan (arg1, arg2, arg3, arg4); } @@ -866,7 +866,7 @@ static void _call_f_setVerticalHeader_1699 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHeaderView *arg1 = args.read (heap); + QHeaderView *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setVerticalHeader (arg1); } @@ -886,7 +886,7 @@ static void _call_f_setWordWrap_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setWordWrap (arg1); } @@ -906,7 +906,7 @@ static void _call_f_showColumn_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->showColumn (arg1); } @@ -941,7 +941,7 @@ static void _call_f_showRow_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->showRow (arg1); } @@ -963,8 +963,8 @@ static void _call_f_sortByColumn_2340 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->sortByColumn (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -984,7 +984,7 @@ static void _call_f_sortByColumn_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->sortByColumn (arg1); } @@ -1019,7 +1019,7 @@ static void _call_f_visualRect_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTableView *)cls)->visualRect (arg1)); } @@ -1055,8 +1055,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTableView::tr (arg1, arg2)); } @@ -1079,9 +1079,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTableView::tr (arg1, arg2, arg3)); } @@ -1102,8 +1102,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTableView::trUtf8 (arg1, arg2)); } @@ -1126,9 +1126,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTableView::trUtf8 (arg1, arg2, arg3)); } @@ -2837,7 +2837,7 @@ static void _call_ctor_QTableView_Adaptor_1315 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTableView_Adaptor (arg1)); } @@ -2879,7 +2879,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_activated_2395 (arg1); } @@ -2945,7 +2945,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_clicked_2395 (arg1); } @@ -3016,8 +3016,8 @@ static void _call_fp_columnCountChanged_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_columnCountChanged_1426 (arg1, arg2); } @@ -3040,9 +3040,9 @@ static void _call_fp_columnMoved_2085 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_columnMoved_2085 (arg1, arg2, arg3); } @@ -3065,9 +3065,9 @@ static void _call_fp_columnResized_2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_columnResized_2085 (arg1, arg2, arg3); } @@ -3138,9 +3138,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_create_2208 (arg1, arg2, arg3); } @@ -3186,7 +3186,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_customContextMenuRequested_1916 (arg1); } @@ -3257,8 +3257,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_destroy_1620 (arg1, arg2); } @@ -3277,7 +3277,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_destroyed_1302 (arg1); } @@ -3368,7 +3368,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_doubleClicked_2395 (arg1); } @@ -3458,7 +3458,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_drawFrame_1426 (arg1); } @@ -3616,7 +3616,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_entered_2395 (arg1); } @@ -4413,7 +4413,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_pressed_2395 (arg1); } @@ -4431,7 +4431,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView_Adaptor *)cls)->fp_QTableView_receivers_c1731 (arg1)); } @@ -4510,8 +4510,8 @@ static void _call_fp_rowCountChanged_1426 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_rowCountChanged_1426 (arg1, arg2); } @@ -4534,9 +4534,9 @@ static void _call_fp_rowMoved_2085 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_rowMoved_2085 (arg1, arg2, arg3); } @@ -4559,9 +4559,9 @@ static void _call_fp_rowResized_2085 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_rowResized_2085 (arg1, arg2, arg3); } @@ -4684,8 +4684,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_scrollDirtyRegion_1426 (arg1, arg2); } @@ -4837,7 +4837,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_setDirtyRegion_2006 (arg1); } @@ -4856,7 +4856,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_setHorizontalStepsPerItem_767 (arg1); } @@ -4974,7 +4974,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_setState_2776 (arg1); } @@ -4993,7 +4993,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_setVerticalStepsPerItem_767 (arg1); } @@ -5018,10 +5018,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -5040,7 +5040,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_setViewportMargins_2115 (arg1); } @@ -5083,7 +5083,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_setupViewport_1315 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTableWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTableWidget.cc index 92f18b21f..fcae761b7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTableWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTableWidget.cc @@ -124,8 +124,8 @@ static void _call_f_cellWidget_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QTableWidget *)cls)->cellWidget (arg1, arg2)); } @@ -176,7 +176,7 @@ static void _call_f_closePersistentEditor_2202 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->closePersistentEditor (arg1); } @@ -196,7 +196,7 @@ static void _call_f_column_c2897 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem *arg1 = args.read (heap); + const QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget *)cls)->column (arg1)); } @@ -275,7 +275,7 @@ static void _call_f_editItem_2202 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->editItem (arg1); } @@ -297,8 +297,8 @@ static void _call_f_findItems_c4233 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write > ((QList)((QTableWidget *)cls)->findItems (arg1, arg2)); } @@ -317,7 +317,7 @@ static void _call_f_horizontalHeaderItem_c767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->horizontalHeaderItem (arg1)); } @@ -336,7 +336,7 @@ static void _call_f_insertColumn_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->insertColumn (arg1); } @@ -356,7 +356,7 @@ static void _call_f_insertRow_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->insertRow (arg1); } @@ -376,7 +376,7 @@ static void _call_f_isItemSelected_c2897 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem *arg1 = args.read (heap); + const QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget *)cls)->isItemSelected (arg1)); } @@ -412,8 +412,8 @@ static void _call_f_item_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->item (arg1, arg2)); } @@ -432,7 +432,7 @@ static void _call_f_itemAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->itemAt (arg1)); } @@ -453,8 +453,8 @@ static void _call_f_itemAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->itemAt (arg1, arg2)); } @@ -488,7 +488,7 @@ static void _call_f_openPersistentEditor_2202 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->openPersistentEditor (arg1); } @@ -510,8 +510,8 @@ static void _call_f_removeCellWidget_1426 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->removeCellWidget (arg1, arg2); } @@ -531,7 +531,7 @@ static void _call_f_removeColumn_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->removeColumn (arg1); } @@ -551,7 +551,7 @@ static void _call_f_removeRow_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->removeRow (arg1); } @@ -571,7 +571,7 @@ static void _call_f_row_c2897 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem *arg1 = args.read (heap); + const QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget *)cls)->row (arg1)); } @@ -607,8 +607,8 @@ static void _call_f_scrollToItem_6078 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->scrollToItem (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -662,9 +662,9 @@ static void _call_f_setCellWidget_2633 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setCellWidget (arg1, arg2, arg3); } @@ -684,7 +684,7 @@ static void _call_f_setColumnCount_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setColumnCount (arg1); } @@ -706,8 +706,8 @@ static void _call_f_setCurrentCell_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setCurrentCell (arg1, arg2); } @@ -731,9 +731,9 @@ static void _call_f_setCurrentCell_5789 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setCurrentCell (arg1, arg2, arg3); } @@ -753,7 +753,7 @@ static void _call_f_setCurrentItem_2202 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setCurrentItem (arg1); } @@ -775,8 +775,8 @@ static void _call_f_setCurrentItem_6565 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setCurrentItem (arg1, arg2); } @@ -798,8 +798,8 @@ static void _call_f_setHorizontalHeaderItem_2861 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QTableWidgetItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QTableWidgetItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setHorizontalHeaderItem (arg1, arg2); } @@ -819,7 +819,7 @@ static void _call_f_setHorizontalHeaderLabels_2437 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setHorizontalHeaderLabels (arg1); } @@ -843,9 +843,9 @@ static void _call_f_setItem_3520 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QTableWidgetItem *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QTableWidgetItem *arg3 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg3); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setItem (arg1, arg2, arg3); @@ -866,7 +866,7 @@ static void _call_f_setItemPrototype_2897 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem *arg1 = args.read (heap); + const QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setItemPrototype (arg1); } @@ -888,8 +888,8 @@ static void _call_f_setItemSelected_3653 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setItemSelected (arg1, arg2); } @@ -911,8 +911,8 @@ static void _call_f_setRangeSelected_4677 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetSelectionRange &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QTableWidgetSelectionRange &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setRangeSelected (arg1, arg2); } @@ -932,7 +932,7 @@ static void _call_f_setRowCount_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setRowCount (arg1); } @@ -952,7 +952,7 @@ static void _call_f_setSortingEnabled_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setSortingEnabled (arg1); } @@ -974,8 +974,8 @@ static void _call_f_setVerticalHeaderItem_2861 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QTableWidgetItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QTableWidgetItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setVerticalHeaderItem (arg1, arg2); } @@ -995,7 +995,7 @@ static void _call_f_setVerticalHeaderLabels_2437 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setVerticalHeaderLabels (arg1); } @@ -1017,8 +1017,8 @@ static void _call_f_sortItems_2340 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->sortItems (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1038,7 +1038,7 @@ static void _call_f_takeHorizontalHeaderItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->takeHorizontalHeaderItem (arg1)); } @@ -1059,8 +1059,8 @@ static void _call_f_takeItem_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->takeItem (arg1, arg2)); } @@ -1079,7 +1079,7 @@ static void _call_f_takeVerticalHeaderItem_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->takeVerticalHeaderItem (arg1)); } @@ -1098,7 +1098,7 @@ static void _call_f_verticalHeaderItem_c767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->verticalHeaderItem (arg1)); } @@ -1117,7 +1117,7 @@ static void _call_f_visualColumn_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget *)cls)->visualColumn (arg1)); } @@ -1136,7 +1136,7 @@ static void _call_f_visualItemRect_c2897 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem *arg1 = args.read (heap); + const QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTableWidget *)cls)->visualItemRect (arg1)); } @@ -1155,7 +1155,7 @@ static void _call_f_visualRow_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget *)cls)->visualRow (arg1)); } @@ -1176,8 +1176,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTableWidget::tr (arg1, arg2)); } @@ -1200,9 +1200,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTableWidget::tr (arg1, arg2, arg3)); } @@ -1223,8 +1223,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTableWidget::trUtf8 (arg1, arg2)); } @@ -1247,9 +1247,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTableWidget::trUtf8 (arg1, arg2, arg3)); } @@ -3143,7 +3143,7 @@ static void _call_ctor_QTableWidget_Adaptor_1315 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTableWidget_Adaptor (arg1)); } @@ -3165,9 +3165,9 @@ static void _call_ctor_QTableWidget_Adaptor_2633 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTableWidget_Adaptor (arg1, arg2, arg3)); } @@ -3209,7 +3209,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_activated_2395 (arg1); } @@ -3229,8 +3229,8 @@ static void _call_emitter_cellActivated_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_cellActivated_1426 (arg1, arg2); } @@ -3250,8 +3250,8 @@ static void _call_emitter_cellChanged_1426 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_cellChanged_1426 (arg1, arg2); } @@ -3271,8 +3271,8 @@ static void _call_emitter_cellClicked_1426 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_cellClicked_1426 (arg1, arg2); } @@ -3292,8 +3292,8 @@ static void _call_emitter_cellDoubleClicked_1426 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_cellDoubleClicked_1426 (arg1, arg2); } @@ -3313,8 +3313,8 @@ static void _call_emitter_cellEntered_1426 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_cellEntered_1426 (arg1, arg2); } @@ -3334,8 +3334,8 @@ static void _call_emitter_cellPressed_1426 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_cellPressed_1426 (arg1, arg2); } @@ -3401,7 +3401,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_clicked_2395 (arg1); } @@ -3472,8 +3472,8 @@ static void _call_fp_columnCountChanged_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_columnCountChanged_1426 (arg1, arg2); } @@ -3496,9 +3496,9 @@ static void _call_fp_columnMoved_2085 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_columnMoved_2085 (arg1, arg2, arg3); } @@ -3521,9 +3521,9 @@ static void _call_fp_columnResized_2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_columnResized_2085 (arg1, arg2, arg3); } @@ -3594,9 +3594,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_create_2208 (arg1, arg2, arg3); } @@ -3621,10 +3621,10 @@ static void _call_emitter_currentCellChanged_2744 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_currentCellChanged_2744 (arg1, arg2, arg3, arg4); } @@ -3671,8 +3671,8 @@ static void _call_emitter_currentItemChanged_4296 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); - QTableWidgetItem *arg2 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QTableWidgetItem *arg2 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_currentItemChanged_4296 (arg1, arg2); } @@ -3690,7 +3690,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_customContextMenuRequested_1916 (arg1); } @@ -3761,8 +3761,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_destroy_1620 (arg1, arg2); } @@ -3781,7 +3781,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_destroyed_1302 (arg1); } @@ -3872,7 +3872,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_doubleClicked_2395 (arg1); } @@ -3962,7 +3962,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_drawFrame_1426 (arg1); } @@ -4152,7 +4152,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_entered_2395 (arg1); } @@ -4508,7 +4508,7 @@ static void _call_fp_indexFromItem_c2202 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTableWidget_Adaptor *)cls)->fp_QTableWidget_indexFromItem_c2202 (arg1)); } @@ -4596,7 +4596,7 @@ static void _call_emitter_itemActivated_2202 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_itemActivated_2202 (arg1); } @@ -4614,7 +4614,7 @@ static void _call_emitter_itemChanged_2202 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_itemChanged_2202 (arg1); } @@ -4632,7 +4632,7 @@ static void _call_emitter_itemClicked_2202 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_itemClicked_2202 (arg1); } @@ -4650,7 +4650,7 @@ static void _call_emitter_itemDoubleClicked_2202 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_itemDoubleClicked_2202 (arg1); } @@ -4668,7 +4668,7 @@ static void _call_emitter_itemEntered_2202 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_itemEntered_2202 (arg1); } @@ -4686,7 +4686,7 @@ static void _call_fp_itemFromIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget_Adaptor *)cls)->fp_QTableWidget_itemFromIndex_c2395 (arg1)); } @@ -4704,7 +4704,7 @@ static void _call_emitter_itemPressed_2202 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_itemPressed_2202 (arg1); } @@ -4736,7 +4736,7 @@ static void _call_fp_items_c2168 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QTableWidget_Adaptor *)cls)->fp_QTableWidget_items_c2168 (arg1)); } @@ -5167,7 +5167,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_pressed_2395 (arg1); } @@ -5185,7 +5185,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget_Adaptor *)cls)->fp_QTableWidget_receivers_c1731 (arg1)); } @@ -5264,8 +5264,8 @@ static void _call_fp_rowCountChanged_1426 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_rowCountChanged_1426 (arg1, arg2); } @@ -5288,9 +5288,9 @@ static void _call_fp_rowMoved_2085 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_rowMoved_2085 (arg1, arg2, arg3); } @@ -5313,9 +5313,9 @@ static void _call_fp_rowResized_2085 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_rowResized_2085 (arg1, arg2, arg3); } @@ -5438,8 +5438,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_scrollDirtyRegion_1426 (arg1, arg2); } @@ -5591,7 +5591,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_setDirtyRegion_2006 (arg1); } @@ -5610,7 +5610,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_setHorizontalStepsPerItem_767 (arg1); } @@ -5704,7 +5704,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_setState_2776 (arg1); } @@ -5723,7 +5723,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_setVerticalStepsPerItem_767 (arg1); } @@ -5748,10 +5748,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -5770,7 +5770,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_setViewportMargins_2115 (arg1); } @@ -5813,7 +5813,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_setupViewport_1315 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTableWidgetItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTableWidgetItem.cc index 40ad4ce98..ec9502deb 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTableWidgetItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTableWidgetItem.cc @@ -132,7 +132,7 @@ static void _call_f_data_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTableWidgetItem *)cls)->data (arg1)); } @@ -226,7 +226,7 @@ static void _call_f_operator_lt__c2893 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem &arg1 = args.read (heap); + const QTableWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidgetItem *)cls)->operator< (arg1)); } @@ -245,7 +245,7 @@ static void _call_f_operator_eq__2893 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem &arg1 = args.read (heap); + const QTableWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem &)((QTableWidgetItem *)cls)->operator= (arg1)); } @@ -264,7 +264,7 @@ static void _call_f_read_1697 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->read (arg1); } @@ -299,7 +299,7 @@ static void _call_f_setBackground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setBackground (arg1); } @@ -319,7 +319,7 @@ static void _call_f_setBackgroundColor_1905 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setBackgroundColor (arg1); } @@ -339,7 +339,7 @@ static void _call_f_setCheckState_1740 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setCheckState (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -361,8 +361,8 @@ static void _call_f_setData_2778 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setData (arg1, arg2); } @@ -382,7 +382,7 @@ static void _call_f_setFlags_2222 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setFlags (arg1); } @@ -402,7 +402,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setFont (arg1); } @@ -422,7 +422,7 @@ static void _call_f_setForeground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setForeground (arg1); } @@ -442,7 +442,7 @@ static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setIcon (arg1); } @@ -462,7 +462,7 @@ static void _call_f_setSelected_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setSelected (arg1); } @@ -482,7 +482,7 @@ static void _call_f_setSizeHint_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setSizeHint (arg1); } @@ -502,7 +502,7 @@ static void _call_f_setStatusTip_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setStatusTip (arg1); } @@ -522,7 +522,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setText (arg1); } @@ -542,7 +542,7 @@ static void _call_f_setTextAlignment_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setTextAlignment (arg1); } @@ -562,7 +562,7 @@ static void _call_f_setTextColor_1905 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setTextColor (arg1); } @@ -582,7 +582,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setToolTip (arg1); } @@ -602,7 +602,7 @@ static void _call_f_setWhatsThis_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setWhatsThis (arg1); } @@ -757,7 +757,7 @@ static void _call_f_write_c1697 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->write (arg1); } @@ -982,7 +982,7 @@ static void _call_ctor_QTableWidgetItem_Adaptor_767 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(QTableWidgetItem::Type); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTableWidgetItem::Type, heap); ret.write (new QTableWidgetItem_Adaptor (arg1)); } @@ -1002,8 +1002,8 @@ static void _call_ctor_QTableWidgetItem_Adaptor_2684 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(QTableWidgetItem::Type); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTableWidgetItem::Type, heap); ret.write (new QTableWidgetItem_Adaptor (arg1, arg2)); } @@ -1025,9 +1025,9 @@ static void _call_ctor_QTableWidgetItem_Adaptor_4363 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(QTableWidgetItem::Type); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTableWidgetItem::Type, heap); ret.write (new QTableWidgetItem_Adaptor (arg1, arg2, arg3)); } @@ -1045,7 +1045,7 @@ static void _call_ctor_QTableWidgetItem_Adaptor_2893 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem &arg1 = args.read (heap); + const QTableWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTableWidgetItem_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTableWidgetSelectionRange.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTableWidgetSelectionRange.cc index 38c8c5be0..477efe6a1 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTableWidgetSelectionRange.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTableWidgetSelectionRange.cc @@ -71,10 +71,10 @@ static void _call_ctor_QTableWidgetSelectionRange_2744 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write (new QTableWidgetSelectionRange (arg1, arg2, arg3, arg4)); } @@ -93,7 +93,7 @@ static void _call_ctor_QTableWidgetSelectionRange_3921 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetSelectionRange &arg1 = args.read (heap); + const QTableWidgetSelectionRange &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTableWidgetSelectionRange (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTapAndHoldGesture.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTapAndHoldGesture.cc index 1c1956569..9d7565402 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTapAndHoldGesture.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTapAndHoldGesture.cc @@ -84,7 +84,7 @@ static void _call_f_setPosition_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapAndHoldGesture *)cls)->setPosition (arg1); } @@ -106,8 +106,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTapAndHoldGesture::tr (arg1, arg2)); } @@ -130,9 +130,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTapAndHoldGesture::tr (arg1, arg2, arg3)); } @@ -153,8 +153,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTapAndHoldGesture::trUtf8 (arg1, arg2)); } @@ -177,9 +177,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTapAndHoldGesture::trUtf8 (arg1, arg2, arg3)); } @@ -358,7 +358,7 @@ static void _call_ctor_QTapAndHoldGesture_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTapAndHoldGesture_Adaptor (arg1)); } @@ -424,7 +424,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTapAndHoldGesture_Adaptor *)cls)->emitter_QTapAndHoldGesture_destroyed_1302 (arg1); } @@ -515,7 +515,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTapAndHoldGesture_Adaptor *)cls)->fp_QTapAndHoldGesture_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTapGesture.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTapGesture.cc index 8752cd45b..440984494 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTapGesture.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTapGesture.cc @@ -84,7 +84,7 @@ static void _call_f_setPosition_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapGesture *)cls)->setPosition (arg1); } @@ -106,8 +106,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTapGesture::tr (arg1, arg2)); } @@ -130,9 +130,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTapGesture::tr (arg1, arg2, arg3)); } @@ -153,8 +153,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTapGesture::trUtf8 (arg1, arg2)); } @@ -177,9 +177,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTapGesture::trUtf8 (arg1, arg2, arg3)); } @@ -358,7 +358,7 @@ static void _call_ctor_QTapGesture_Adaptor_1302 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTapGesture_Adaptor (arg1)); } @@ -424,7 +424,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTapGesture_Adaptor *)cls)->emitter_QTapGesture_destroyed_1302 (arg1); } @@ -515,7 +515,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTapGesture_Adaptor *)cls)->fp_QTapGesture_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextBlock.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextBlock.cc index 4468bc5ec..4dc394619 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextBlock.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextBlock.cc @@ -71,7 +71,7 @@ static void _call_ctor_QTextBlock_2306 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextBlock (arg1)); } @@ -196,7 +196,7 @@ static void _call_f_contains_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlock *)cls)->contains (arg1)); } @@ -365,7 +365,7 @@ static void _call_f_operator_excl__eq__c2306 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlock *)cls)->operator!= (arg1)); } @@ -384,7 +384,7 @@ static void _call_f_operator_lt__c2306 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlock *)cls)->operator< (arg1)); } @@ -403,7 +403,7 @@ static void _call_f_operator_eq__2306 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextBlock &)((QTextBlock *)cls)->operator= (arg1)); } @@ -422,7 +422,7 @@ static void _call_f_operator_eq__eq__c2306 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlock *)cls)->operator== (arg1)); } @@ -486,7 +486,7 @@ static void _call_f_setLineCount_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlock *)cls)->setLineCount (arg1); } @@ -506,7 +506,7 @@ static void _call_f_setRevision_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlock *)cls)->setRevision (arg1); } @@ -526,7 +526,7 @@ static void _call_f_setUserData_2408 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextBlockUserData *arg1 = args.read (heap); + QTextBlockUserData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlock *)cls)->setUserData (arg1); } @@ -546,7 +546,7 @@ static void _call_f_setUserState_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlock *)cls)->setUserState (arg1); } @@ -566,7 +566,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlock *)cls)->setVisible (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockFormat.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockFormat.cc index d772d3b11..df5136e9f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockFormat.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockFormat.cc @@ -196,7 +196,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setAlignment (arg1); } @@ -216,7 +216,7 @@ static void _call_f_setBottomMargin_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setBottomMargin (arg1); } @@ -236,7 +236,7 @@ static void _call_f_setIndent_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setIndent (arg1); } @@ -256,7 +256,7 @@ static void _call_f_setLeftMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setLeftMargin (arg1); } @@ -276,7 +276,7 @@ static void _call_f_setNonBreakableLines_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setNonBreakableLines (arg1); } @@ -296,7 +296,7 @@ static void _call_f_setPageBreakPolicy_3611 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setPageBreakPolicy (arg1); } @@ -316,7 +316,7 @@ static void _call_f_setRightMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setRightMargin (arg1); } @@ -336,7 +336,7 @@ static void _call_f_setTabPositions_3458 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setTabPositions (arg1); } @@ -356,7 +356,7 @@ static void _call_f_setTextIndent_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setTextIndent (arg1); } @@ -376,7 +376,7 @@ static void _call_f_setTopMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setTopMargin (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockGroup.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockGroup.cc index e81312f2b..ebafbacac 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockGroup.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextBlockGroup.cc @@ -73,8 +73,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextBlockGroup::tr (arg1, arg2)); } @@ -97,9 +97,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextBlockGroup::tr (arg1, arg2, arg3)); } @@ -120,8 +120,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextBlockGroup::trUtf8 (arg1, arg2)); } @@ -144,9 +144,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextBlockGroup::trUtf8 (arg1, arg2, arg3)); } @@ -503,7 +503,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextBlockGroup_Adaptor *)cls)->emitter_QTextBlockGroup_destroyed_1302 (arg1); } @@ -594,7 +594,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextBlockGroup_Adaptor *)cls)->fp_QTextBlockGroup_receivers_c1731 (arg1)); } @@ -626,7 +626,7 @@ static void _call_fp_setFormat_2432 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->fp_QTextBlockGroup_setFormat_2432 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextBlock_Iterator.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextBlock_Iterator.cc index 84f1eceef..faeabb629 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextBlock_Iterator.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextBlock_Iterator.cc @@ -66,7 +66,7 @@ static void _call_ctor_QTextBlock_Iterator_3296 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock::iterator &arg1 = args.read (heap); + const QTextBlock::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextBlock::iterator (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_excl__eq__c3296 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock::iterator &arg1 = args.read (heap); + const QTextBlock::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlock::iterator *)cls)->operator!= (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_operator_plus__plus__767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextBlock::iterator)((QTextBlock::iterator *)cls)->operator++ (arg1)); } @@ -183,7 +183,7 @@ static void _call_f_operator_minus__minus__767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextBlock::iterator)((QTextBlock::iterator *)cls)->operator-- (arg1)); } @@ -202,7 +202,7 @@ static void _call_f_operator_eq__eq__c3296 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock::iterator &arg1 = args.read (heap); + const QTextBlock::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlock::iterator *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextBrowser.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextBrowser.cc index 43b6d88f9..4498f5006 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextBrowser.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextBrowser.cc @@ -198,7 +198,7 @@ static void _call_f_historyTitle_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextBrowser *)cls)->historyTitle (arg1)); } @@ -217,7 +217,7 @@ static void _call_f_historyUrl_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl)((QTextBrowser *)cls)->historyUrl (arg1)); } @@ -284,8 +284,8 @@ static void _call_f_loadResource_2360 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextBrowser *)cls)->loadResource (arg1, arg2)); } @@ -365,7 +365,7 @@ static void _call_f_setOpenExternalLinks_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser *)cls)->setOpenExternalLinks (arg1); } @@ -385,7 +385,7 @@ static void _call_f_setOpenLinks_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser *)cls)->setOpenLinks (arg1); } @@ -405,7 +405,7 @@ static void _call_f_setSearchPaths_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser *)cls)->setSearchPaths (arg1); } @@ -425,7 +425,7 @@ static void _call_f_setSource_1701 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser *)cls)->setSource (arg1); } @@ -462,8 +462,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextBrowser::tr (arg1, arg2)); } @@ -486,9 +486,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextBrowser::tr (arg1, arg2, arg3)); } @@ -509,8 +509,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextBrowser::trUtf8 (arg1, arg2)); } @@ -533,9 +533,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextBrowser::trUtf8 (arg1, arg2, arg3)); } @@ -1703,7 +1703,7 @@ static void _call_ctor_QTextBrowser_Adaptor_1315 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTextBrowser_Adaptor (arg1)); } @@ -1745,7 +1745,7 @@ static void _call_emitter_anchorClicked_1701 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_anchorClicked_1701 (arg1); } @@ -1783,7 +1783,7 @@ static void _call_emitter_backwardAvailable_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_backwardAvailable_864 (arg1); } @@ -1920,7 +1920,7 @@ static void _call_emitter_copyAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_copyAvailable_864 (arg1); } @@ -1942,9 +1942,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_create_2208 (arg1, arg2, arg3); } @@ -1982,7 +1982,7 @@ static void _call_emitter_currentCharFormatChanged_2814 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_currentCharFormatChanged_2814 (arg1); } @@ -2014,7 +2014,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_customContextMenuRequested_1916 (arg1); } @@ -2058,8 +2058,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_destroy_1620 (arg1, arg2); } @@ -2078,7 +2078,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_destroyed_1302 (arg1); } @@ -2192,7 +2192,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_drawFrame_1426 (arg1); } @@ -2475,7 +2475,7 @@ static void _call_emitter_forwardAvailable_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_forwardAvailable_864 (arg1); } @@ -2540,7 +2540,7 @@ static void _call_emitter_highlighted_1701 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_highlighted_1701 (arg1); } @@ -2558,7 +2558,7 @@ static void _call_emitter_highlighted_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_highlighted_2025 (arg1); } @@ -3028,7 +3028,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_receivers_c1731 (arg1)); } @@ -3046,7 +3046,7 @@ static void _call_emitter_redoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_redoAvailable_864 (arg1); } @@ -3208,10 +3208,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -3230,7 +3230,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_setViewportMargins_2115 (arg1); } @@ -3273,7 +3273,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_setupViewport_1315 (arg1); } @@ -3335,7 +3335,7 @@ static void _call_emitter_sourceChanged_1701 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_sourceChanged_1701 (arg1); } @@ -3439,7 +3439,7 @@ static void _call_emitter_undoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_undoAvailable_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextCharFormat.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextCharFormat.cc index ec24ec5b5..b4a4071b8 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextCharFormat.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextCharFormat.cc @@ -377,7 +377,7 @@ static void _call_f_setAnchor_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setAnchor (arg1); } @@ -397,7 +397,7 @@ static void _call_f_setAnchorHref_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setAnchorHref (arg1); } @@ -417,7 +417,7 @@ static void _call_f_setAnchorName_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setAnchorName (arg1); } @@ -437,7 +437,7 @@ static void _call_f_setAnchorNames_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setAnchorNames (arg1); } @@ -457,7 +457,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFont (arg1); } @@ -477,7 +477,7 @@ static void _call_f_setFontCapitalization_2508 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontCapitalization (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -497,7 +497,7 @@ static void _call_f_setFontFamily_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontFamily (arg1); } @@ -517,7 +517,7 @@ static void _call_f_setFontFixedPitch_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontFixedPitch (arg1); } @@ -537,7 +537,7 @@ static void _call_f_setFontItalic_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontItalic (arg1); } @@ -557,7 +557,7 @@ static void _call_f_setFontKerning_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontKerning (arg1); } @@ -577,7 +577,7 @@ static void _call_f_setFontLetterSpacing_1071 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontLetterSpacing (arg1); } @@ -597,7 +597,7 @@ static void _call_f_setFontOverline_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontOverline (arg1); } @@ -617,7 +617,7 @@ static void _call_f_setFontPointSize_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontPointSize (arg1); } @@ -637,7 +637,7 @@ static void _call_f_setFontStrikeOut_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontStrikeOut (arg1); } @@ -659,8 +659,8 @@ static void _call_f_setFontStyleHint_4284 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QFont::PreferDefault)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QFont::PreferDefault), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontStyleHint (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -680,7 +680,7 @@ static void _call_f_setFontStyleStrategy_2420 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontStyleStrategy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -700,7 +700,7 @@ static void _call_f_setFontUnderline_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontUnderline (arg1); } @@ -720,7 +720,7 @@ static void _call_f_setFontWeight_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontWeight (arg1); } @@ -740,7 +740,7 @@ static void _call_f_setFontWordSpacing_1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontWordSpacing (arg1); } @@ -760,7 +760,7 @@ static void _call_f_setTableCellColumnSpan_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setTableCellColumnSpan (arg1); } @@ -780,7 +780,7 @@ static void _call_f_setTableCellRowSpan_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setTableCellRowSpan (arg1); } @@ -800,7 +800,7 @@ static void _call_f_setTextOutline_1685 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setTextOutline (arg1); } @@ -820,7 +820,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setToolTip (arg1); } @@ -840,7 +840,7 @@ static void _call_f_setUnderlineColor_1905 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setUnderlineColor (arg1); } @@ -860,7 +860,7 @@ static void _call_f_setUnderlineStyle_3516 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setUnderlineStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -880,7 +880,7 @@ static void _call_f_setVerticalAlignment_3806 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setVerticalAlignment (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextCursor.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextCursor.cc index 745c76b93..8905ed716 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextCursor.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextCursor.cc @@ -78,7 +78,7 @@ static void _call_ctor_QTextCursor_1955 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextCursor (arg1)); } @@ -97,7 +97,7 @@ static void _call_ctor_QTextCursor_1615 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextFrame *arg1 = args.read (heap); + QTextFrame *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextCursor (arg1)); } @@ -116,7 +116,7 @@ static void _call_ctor_QTextCursor_2306 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextCursor (arg1)); } @@ -135,7 +135,7 @@ static void _call_ctor_QTextCursor_2453 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextCursor (arg1)); } @@ -351,7 +351,7 @@ static void _call_f_createList_2844 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextListFormat &arg1 = args.read (heap); + const QTextListFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextList *)((QTextCursor *)cls)->createList (arg1)); } @@ -370,7 +370,7 @@ static void _call_f_createList_2612 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QTextList *)((QTextCursor *)cls)->createList (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -543,7 +543,7 @@ static void _call_f_insertBlock_2923 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlockFormat &arg1 = args.read (heap); + const QTextBlockFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertBlock (arg1); } @@ -565,8 +565,8 @@ static void _call_f_insertBlock_5629 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlockFormat &arg1 = args.read (heap); - const QTextCharFormat &arg2 = args.read (heap); + const QTextBlockFormat &arg1 = gsi::arg_reader() (args, heap); + const QTextCharFormat &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertBlock (arg1, arg2); } @@ -586,7 +586,7 @@ static void _call_f_insertFragment_3466 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextDocumentFragment &arg1 = args.read (heap); + const QTextDocumentFragment &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertFragment (arg1); } @@ -606,7 +606,7 @@ static void _call_f_insertFrame_2923 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFrameFormat &arg1 = args.read (heap); + const QTextFrameFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextFrame *)((QTextCursor *)cls)->insertFrame (arg1)); } @@ -625,7 +625,7 @@ static void _call_f_insertHtml_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertHtml (arg1); } @@ -647,8 +647,8 @@ static void _call_f_insertImage_5822 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextImageFormat &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QTextImageFormat &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertImage (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -668,7 +668,7 @@ static void _call_f_insertImage_2915 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextImageFormat &arg1 = args.read (heap); + const QTextImageFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertImage (arg1); } @@ -688,7 +688,7 @@ static void _call_f_insertImage_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertImage (arg1); } @@ -710,8 +710,8 @@ static void _call_f_insertImage_3794 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QImage &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertImage (arg1, arg2); } @@ -731,7 +731,7 @@ static void _call_f_insertList_2844 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextListFormat &arg1 = args.read (heap); + const QTextListFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextList *)((QTextCursor *)cls)->insertList (arg1)); } @@ -750,7 +750,7 @@ static void _call_f_insertList_2612 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QTextList *)((QTextCursor *)cls)->insertList (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -773,9 +773,9 @@ static void _call_f_insertTable_4238 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextTableFormat &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextTableFormat &arg3 = gsi::arg_reader() (args, heap); ret.write ((QTextTable *)((QTextCursor *)cls)->insertTable (arg1, arg2, arg3)); } @@ -796,8 +796,8 @@ static void _call_f_insertTable_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QTextTable *)((QTextCursor *)cls)->insertTable (arg1, arg2)); } @@ -816,7 +816,7 @@ static void _call_f_insertText_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertText (arg1); } @@ -838,8 +838,8 @@ static void _call_f_insertText_4731 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QTextCharFormat &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QTextCharFormat &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertText (arg1, arg2); } @@ -859,7 +859,7 @@ static void _call_f_isCopyOf_c2453 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCursor *)cls)->isCopyOf (arg1)); } @@ -909,7 +909,7 @@ static void _call_f_mergeBlockCharFormat_2814 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->mergeBlockCharFormat (arg1); } @@ -929,7 +929,7 @@ static void _call_f_mergeBlockFormat_2923 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlockFormat &arg1 = args.read (heap); + const QTextBlockFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->mergeBlockFormat (arg1); } @@ -949,7 +949,7 @@ static void _call_f_mergeCharFormat_2814 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->mergeCharFormat (arg1); } @@ -973,9 +973,9 @@ static void _call_f_movePosition_6083 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor)); - int arg3 = args ? args.read (heap) : (int)(1); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor), heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write ((bool)((QTextCursor *)cls)->movePosition (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -994,7 +994,7 @@ static void _call_f_operator_excl__eq__c2453 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCursor *)cls)->operator!= (arg1)); } @@ -1013,7 +1013,7 @@ static void _call_f_operator_lt__c2453 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCursor *)cls)->operator< (arg1)); } @@ -1032,7 +1032,7 @@ static void _call_f_operator_lt__eq__c2453 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCursor *)cls)->operator<= (arg1)); } @@ -1051,7 +1051,7 @@ static void _call_f_operator_eq__2453 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCursor &)((QTextCursor *)cls)->operator= (arg1)); } @@ -1070,7 +1070,7 @@ static void _call_f_operator_eq__eq__c2453 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCursor *)cls)->operator== (arg1)); } @@ -1089,7 +1089,7 @@ static void _call_f_operator_gt__c2453 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCursor *)cls)->operator> (arg1)); } @@ -1108,7 +1108,7 @@ static void _call_f_operator_gt__eq__c2453 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCursor *)cls)->operator>= (arg1)); } @@ -1158,7 +1158,7 @@ static void _call_f_select_3044 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->select (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1184,10 +1184,10 @@ static void _call_f_selectedTableCells_c3488 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->selectedTableCells (arg1, arg2, arg3, arg4); } @@ -1267,7 +1267,7 @@ static void _call_f_setBlockCharFormat_2814 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->setBlockCharFormat (arg1); } @@ -1287,7 +1287,7 @@ static void _call_f_setBlockFormat_2923 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlockFormat &arg1 = args.read (heap); + const QTextBlockFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->setBlockFormat (arg1); } @@ -1307,7 +1307,7 @@ static void _call_f_setCharFormat_2814 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->setCharFormat (arg1); } @@ -1329,8 +1329,8 @@ static void _call_f_setPosition_3147 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->setPosition (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1350,7 +1350,7 @@ static void _call_f_setVisualNavigation_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->setVisualNavigation (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextDocument.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextDocument.cc index 182e91c0a..6bce671d4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextDocument.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextDocument.cc @@ -86,9 +86,9 @@ static void _call_f_addResource_4371 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->addResource (arg1, arg2, arg3); } @@ -199,7 +199,7 @@ static void _call_f_characterAt_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QTextDocument *)cls)->characterAt (arg1))); } @@ -249,7 +249,7 @@ static void _call_f_clone_c1302 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QTextDocument *)((QTextDocument *)cls)->clone (arg1)); } @@ -345,8 +345,8 @@ static void _call_f_drawContents_3180 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args ? args.read (heap) : (const QRectF &)(QRectF()); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->drawContents (arg1, arg2); } @@ -385,9 +385,9 @@ static void _call_f_find_c5920 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QTextCursor)((QTextDocument *)cls)->find (arg1, arg2, arg3)); } @@ -410,9 +410,9 @@ static void _call_f_find_c7606 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QTextCursor &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QTextCursor &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QTextCursor)((QTextDocument *)cls)->find (arg1, arg2, arg3)); } @@ -435,9 +435,9 @@ static void _call_f_find_c5876 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QTextCursor)((QTextDocument *)cls)->find (arg1, arg2, arg3)); } @@ -460,9 +460,9 @@ static void _call_f_find_c7562 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); - const QTextCursor &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); + const QTextCursor &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QTextCursor)((QTextDocument *)cls)->find (arg1, arg2, arg3)); } @@ -481,7 +481,7 @@ static void _call_f_findBlock_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextBlock)((QTextDocument *)cls)->findBlock (arg1)); } @@ -500,7 +500,7 @@ static void _call_f_findBlockByLineNumber_c767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextBlock)((QTextDocument *)cls)->findBlockByLineNumber (arg1)); } @@ -519,7 +519,7 @@ static void _call_f_findBlockByNumber_c767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextBlock)((QTextDocument *)cls)->findBlockByNumber (arg1)); } @@ -553,7 +553,7 @@ static void _call_f_frameAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextFrame *)((QTextDocument *)cls)->frameAt (arg1)); } @@ -709,8 +709,8 @@ static void _call_f_markContentsDirty_1426 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->markContentsDirty (arg1, arg2); } @@ -745,7 +745,7 @@ static void _call_f_metaInformation_c3434 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QTextDocument *)cls)->metaInformation (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -764,7 +764,7 @@ static void _call_f_object_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextObject *)((QTextDocument *)cls)->object (arg1)); } @@ -783,7 +783,7 @@ static void _call_f_objectForFormat_c2432 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextObject *)((QTextDocument *)cls)->objectForFormat (arg1)); } @@ -832,7 +832,7 @@ static void _call_f_print_c1443 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); + QPrinter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->print (arg1); } @@ -852,7 +852,7 @@ static void _call_f_redo_1762 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextCursor *arg1 = args.read (heap); + QTextCursor *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->redo (arg1); } @@ -890,8 +890,8 @@ static void _call_f_resource_c2360 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextDocument *)cls)->resource (arg1, arg2)); } @@ -940,7 +940,7 @@ static void _call_f_setDefaultFont_1801 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setDefaultFont (arg1); } @@ -960,7 +960,7 @@ static void _call_f_setDefaultStyleSheet_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setDefaultStyleSheet (arg1); } @@ -980,7 +980,7 @@ static void _call_f_setDefaultTextOption_2448 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextOption &arg1 = args.read (heap); + const QTextOption &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setDefaultTextOption (arg1); } @@ -1000,7 +1000,7 @@ static void _call_f_setDocumentLayout_3413 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractTextDocumentLayout *arg1 = args.read (heap); + QAbstractTextDocumentLayout *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setDocumentLayout (arg1); } @@ -1020,7 +1020,7 @@ static void _call_f_setDocumentMargin_1071 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setDocumentMargin (arg1); } @@ -1040,7 +1040,7 @@ static void _call_f_setHtml_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setHtml (arg1); } @@ -1060,7 +1060,7 @@ static void _call_f_setIndentWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setIndentWidth (arg1); } @@ -1080,7 +1080,7 @@ static void _call_f_setMaximumBlockCount_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setMaximumBlockCount (arg1); } @@ -1102,8 +1102,8 @@ static void _call_f_setMetaInformation_5351 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setMetaInformation (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -1123,7 +1123,7 @@ static void _call_f_setModified_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setModified (arg1); } @@ -1143,7 +1143,7 @@ static void _call_f_setPageSize_1875 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setPageSize (arg1); } @@ -1163,7 +1163,7 @@ static void _call_f_setPlainText_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setPlainText (arg1); } @@ -1183,7 +1183,7 @@ static void _call_f_setTextWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setTextWidth (arg1); } @@ -1203,7 +1203,7 @@ static void _call_f_setUndoRedoEnabled_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setUndoRedoEnabled (arg1); } @@ -1223,7 +1223,7 @@ static void _call_f_setUseDesignMetrics_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setUseDesignMetrics (arg1); } @@ -1273,7 +1273,7 @@ static void _call_f_toHtml_c2309 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QByteArray &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write ((QString)((QTextDocument *)cls)->toHtml (arg1)); } @@ -1307,7 +1307,7 @@ static void _call_f_undo_1762 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextCursor *arg1 = args.read (heap); + QTextCursor *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->undo (arg1); } @@ -1360,8 +1360,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextDocument::tr (arg1, arg2)); } @@ -1384,9 +1384,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextDocument::tr (arg1, arg2, arg3)); } @@ -1407,8 +1407,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextDocument::trUtf8 (arg1, arg2)); } @@ -1431,9 +1431,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextDocument::trUtf8 (arg1, arg2, arg3)); } @@ -1804,7 +1804,7 @@ static void _call_ctor_QTextDocument_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTextDocument_Adaptor (arg1)); } @@ -1824,8 +1824,8 @@ static void _call_ctor_QTextDocument_Adaptor_3219 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTextDocument_Adaptor (arg1, arg2)); } @@ -1843,7 +1843,7 @@ static void _call_emitter_blockCountChanged_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QTextDocument_Adaptor *)cls)->emitter_QTextDocument_blockCountChanged_767 (arg1); } @@ -1909,9 +1909,9 @@ static void _call_emitter_contentsChange_2085 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QTextDocument_Adaptor *)cls)->emitter_QTextDocument_contentsChange_2085 (arg1, arg2, arg3); } @@ -1966,7 +1966,7 @@ static void _call_emitter_cursorPositionChanged_2453 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ((QTextDocument_Adaptor *)cls)->emitter_QTextDocument_cursorPositionChanged_2453 (arg1); } @@ -2008,7 +2008,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextDocument_Adaptor *)cls)->emitter_QTextDocument_destroyed_1302 (arg1); } @@ -2139,7 +2139,7 @@ static void _call_emitter_modificationChanged_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextDocument_Adaptor *)cls)->emitter_QTextDocument_modificationChanged_864 (arg1); } @@ -2157,7 +2157,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextDocument_Adaptor *)cls)->fp_QTextDocument_receivers_c1731 (arg1)); } @@ -2175,7 +2175,7 @@ static void _call_emitter_redoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextDocument_Adaptor *)cls)->emitter_QTextDocument_redoAvailable_864 (arg1); } @@ -2231,7 +2231,7 @@ static void _call_emitter_undoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextDocument_Adaptor *)cls)->emitter_QTextDocument_undoAvailable_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextDocumentFragment.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextDocumentFragment.cc index f54798e65..d8e44b1e8 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextDocumentFragment.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextDocumentFragment.cc @@ -67,7 +67,7 @@ static void _call_ctor_QTextDocumentFragment_2650 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextDocument *arg1 = args.read (heap); + const QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextDocumentFragment (arg1)); } @@ -86,7 +86,7 @@ static void _call_ctor_QTextDocumentFragment_2453 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextDocumentFragment (arg1)); } @@ -105,7 +105,7 @@ static void _call_ctor_QTextDocumentFragment_3466 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextDocumentFragment &arg1 = args.read (heap); + const QTextDocumentFragment &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextDocumentFragment (arg1)); } @@ -139,7 +139,7 @@ static void _call_f_operator_eq__3466 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextDocumentFragment &arg1 = args.read (heap); + const QTextDocumentFragment &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextDocumentFragment &)((QTextDocumentFragment *)cls)->operator= (arg1)); } @@ -173,7 +173,7 @@ static void _call_f_toHtml_c2309 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextDocumentFragment *)cls)->toHtml (arg1)); } @@ -207,7 +207,7 @@ static void _call_f_fromHtml_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextDocumentFragment)QTextDocumentFragment::fromHtml (arg1)); } @@ -228,8 +228,8 @@ static void _call_f_fromHtml_4567 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QTextDocument *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QTextDocument *arg2 = gsi::arg_reader() (args, heap); ret.write ((QTextDocumentFragment)QTextDocumentFragment::fromHtml (arg1, arg2)); } @@ -248,7 +248,7 @@ static void _call_f_fromPlainText_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextDocumentFragment)QTextDocumentFragment::fromPlainText (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextDocumentWriter.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextDocumentWriter.cc index 5dff3682f..144ddf729 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextDocumentWriter.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextDocumentWriter.cc @@ -71,8 +71,8 @@ static void _call_ctor_QTextDocumentWriter_3648 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write (new QTextDocumentWriter (arg1, arg2)); } @@ -93,8 +93,8 @@ static void _call_ctor_QTextDocumentWriter_4226 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QTextDocumentWriter (arg1, arg2)); } @@ -173,7 +173,7 @@ static void _call_f_setCodec_1602 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextCodec *arg1 = args.read (heap); + QTextCodec *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocumentWriter *)cls)->setCodec (arg1); } @@ -193,7 +193,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocumentWriter *)cls)->setDevice (arg1); } @@ -213,7 +213,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocumentWriter *)cls)->setFileName (arg1); } @@ -233,7 +233,7 @@ static void _call_f_setFormat_2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocumentWriter *)cls)->setFormat (arg1); } @@ -253,7 +253,7 @@ static void _call_f_write_2650 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextDocument *arg1 = args.read (heap); + const QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextDocumentWriter *)cls)->write (arg1)); } @@ -272,7 +272,7 @@ static void _call_f_write_3466 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextDocumentFragment &arg1 = args.read (heap); + const QTextDocumentFragment &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextDocumentWriter *)cls)->write (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextEdit.cc index fddda93eb..0928452c4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextEdit.cc @@ -150,7 +150,7 @@ static void _call_f_anchorAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextEdit *)cls)->anchorAt (arg1)); } @@ -169,7 +169,7 @@ static void _call_f_append_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->append (arg1); } @@ -266,7 +266,7 @@ static void _call_f_createStandardContextMenu_1916 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMenu *)((QTextEdit *)cls)->createStandardContextMenu (arg1)); } @@ -315,7 +315,7 @@ static void _call_f_cursorForPosition_c1916 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCursor)((QTextEdit *)cls)->cursorForPosition (arg1)); } @@ -334,7 +334,7 @@ static void _call_f_cursorRect_c2453 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTextEdit *)cls)->cursorRect (arg1)); } @@ -462,8 +462,8 @@ static void _call_f_find_5261 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((bool)((QTextEdit *)cls)->find (arg1, arg2)); } @@ -557,7 +557,7 @@ static void _call_f_insertHtml_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->insertHtml (arg1); } @@ -577,7 +577,7 @@ static void _call_f_insertPlainText_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->insertPlainText (arg1); } @@ -659,8 +659,8 @@ static void _call_f_loadResource_2360 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextEdit *)cls)->loadResource (arg1, arg2)); } @@ -679,7 +679,7 @@ static void _call_f_mergeCurrentCharFormat_2814 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->mergeCurrentCharFormat (arg1); } @@ -701,8 +701,8 @@ static void _call_f_moveCursor_5424 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->moveCursor (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -753,7 +753,7 @@ static void _call_f_print_c1443 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); + QPrinter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->print (arg1); } @@ -789,7 +789,7 @@ static void _call_f_scrollToAnchor_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->scrollToAnchor (arg1); } @@ -825,7 +825,7 @@ static void _call_f_setAcceptRichText_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setAcceptRichText (arg1); } @@ -845,7 +845,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setAlignment (arg1); } @@ -865,7 +865,7 @@ static void _call_f_setAutoFormatting_3978 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setAutoFormatting (arg1); } @@ -885,7 +885,7 @@ static void _call_f_setCurrentCharFormat_2814 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setCurrentCharFormat (arg1); } @@ -905,7 +905,7 @@ static void _call_f_setCurrentFont_1801 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setCurrentFont (arg1); } @@ -925,7 +925,7 @@ static void _call_f_setCursorWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setCursorWidth (arg1); } @@ -945,7 +945,7 @@ static void _call_f_setDocument_1955 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setDocument (arg1); } @@ -965,7 +965,7 @@ static void _call_f_setDocumentTitle_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setDocumentTitle (arg1); } @@ -985,7 +985,7 @@ static void _call_f_setExtraSelections_4386 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setExtraSelections (arg1); } @@ -1005,7 +1005,7 @@ static void _call_f_setFontFamily_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setFontFamily (arg1); } @@ -1025,7 +1025,7 @@ static void _call_f_setFontItalic_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setFontItalic (arg1); } @@ -1045,7 +1045,7 @@ static void _call_f_setFontPointSize_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setFontPointSize (arg1); } @@ -1065,7 +1065,7 @@ static void _call_f_setFontUnderline_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setFontUnderline (arg1); } @@ -1085,7 +1085,7 @@ static void _call_f_setFontWeight_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setFontWeight (arg1); } @@ -1105,7 +1105,7 @@ static void _call_f_setHtml_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setHtml (arg1); } @@ -1125,7 +1125,7 @@ static void _call_f_setLineWrapColumnOrWidth_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setLineWrapColumnOrWidth (arg1); } @@ -1145,7 +1145,7 @@ static void _call_f_setLineWrapMode_2635 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setLineWrapMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1165,7 +1165,7 @@ static void _call_f_setOverwriteMode_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setOverwriteMode (arg1); } @@ -1185,7 +1185,7 @@ static void _call_f_setPlainText_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setPlainText (arg1); } @@ -1205,7 +1205,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setReadOnly (arg1); } @@ -1225,7 +1225,7 @@ static void _call_f_setTabChangesFocus_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setTabChangesFocus (arg1); } @@ -1245,7 +1245,7 @@ static void _call_f_setTabStopWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setTabStopWidth (arg1); } @@ -1265,7 +1265,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setText (arg1); } @@ -1285,7 +1285,7 @@ static void _call_f_setTextBackgroundColor_1905 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setTextBackgroundColor (arg1); } @@ -1305,7 +1305,7 @@ static void _call_f_setTextColor_1905 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setTextColor (arg1); } @@ -1325,7 +1325,7 @@ static void _call_f_setTextCursor_2453 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setTextCursor (arg1); } @@ -1345,7 +1345,7 @@ static void _call_f_setTextInteractionFlags_3396 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setTextInteractionFlags (arg1); } @@ -1365,7 +1365,7 @@ static void _call_f_setUndoRedoEnabled_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setUndoRedoEnabled (arg1); } @@ -1385,7 +1385,7 @@ static void _call_f_setWordWrapMode_2486 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setWordWrapMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1556,7 +1556,7 @@ static void _call_f_zoomIn_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->zoomIn (arg1); } @@ -1576,7 +1576,7 @@ static void _call_f_zoomOut_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->zoomOut (arg1); } @@ -1598,8 +1598,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextEdit::tr (arg1, arg2)); } @@ -1622,9 +1622,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextEdit::tr (arg1, arg2, arg3)); } @@ -1645,8 +1645,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextEdit::trUtf8 (arg1, arg2)); } @@ -1669,9 +1669,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextEdit::trUtf8 (arg1, arg2, arg3)); } @@ -2785,7 +2785,7 @@ static void _call_ctor_QTextEdit_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTextEdit_Adaptor (arg1)); } @@ -2805,8 +2805,8 @@ static void _call_ctor_QTextEdit_Adaptor_3232 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTextEdit_Adaptor (arg1, arg2)); } @@ -2967,7 +2967,7 @@ static void _call_emitter_copyAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextEdit_Adaptor *)cls)->emitter_QTextEdit_copyAvailable_864 (arg1); } @@ -2989,9 +2989,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->fp_QTextEdit_create_2208 (arg1, arg2, arg3); } @@ -3029,7 +3029,7 @@ static void _call_emitter_currentCharFormatChanged_2814 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); ((QTextEdit_Adaptor *)cls)->emitter_QTextEdit_currentCharFormatChanged_2814 (arg1); } @@ -3061,7 +3061,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTextEdit_Adaptor *)cls)->emitter_QTextEdit_customContextMenuRequested_1916 (arg1); } @@ -3105,8 +3105,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->fp_QTextEdit_destroy_1620 (arg1, arg2); } @@ -3125,7 +3125,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextEdit_Adaptor *)cls)->emitter_QTextEdit_destroyed_1302 (arg1); } @@ -3239,7 +3239,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->fp_QTextEdit_drawFrame_1426 (arg1); } @@ -3967,7 +3967,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextEdit_Adaptor *)cls)->fp_QTextEdit_receivers_c1731 (arg1)); } @@ -3985,7 +3985,7 @@ static void _call_emitter_redoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextEdit_Adaptor *)cls)->emitter_QTextEdit_redoAvailable_864 (arg1); } @@ -4103,10 +4103,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->fp_QTextEdit_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -4125,7 +4125,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->fp_QTextEdit_setViewportMargins_2115 (arg1); } @@ -4168,7 +4168,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->fp_QTextEdit_setupViewport_1315 (arg1); } @@ -4316,7 +4316,7 @@ static void _call_emitter_undoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextEdit_Adaptor *)cls)->emitter_QTextEdit_undoAvailable_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextFormat.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextFormat.cc index eb431af0a..07cdabd3c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextFormat.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextFormat.cc @@ -76,7 +76,7 @@ static void _call_ctor_QTextFormat_767 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextFormat (arg1)); } @@ -95,7 +95,7 @@ static void _call_ctor_QTextFormat_2432 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextFormat (arg1)); } @@ -129,7 +129,7 @@ static void _call_f_boolProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFormat *)cls)->boolProperty (arg1)); } @@ -148,7 +148,7 @@ static void _call_f_brushProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QBrush)((QTextFormat *)cls)->brushProperty (arg1)); } @@ -199,7 +199,7 @@ static void _call_f_clearProperty_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->clearProperty (arg1); } @@ -219,7 +219,7 @@ static void _call_f_colorProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor)((QTextFormat *)cls)->colorProperty (arg1)); } @@ -238,7 +238,7 @@ static void _call_f_doubleProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QTextFormat *)cls)->doubleProperty (arg1)); } @@ -272,7 +272,7 @@ static void _call_f_hasProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFormat *)cls)->hasProperty (arg1)); } @@ -291,7 +291,7 @@ static void _call_f_intProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextFormat *)cls)->intProperty (arg1)); } @@ -445,7 +445,7 @@ static void _call_f_lengthProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextLength)((QTextFormat *)cls)->lengthProperty (arg1)); } @@ -464,7 +464,7 @@ static void _call_f_lengthVectorProperty_c767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QVector)((QTextFormat *)cls)->lengthVectorProperty (arg1)); } @@ -483,7 +483,7 @@ static void _call_f_merge_2432 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->merge (arg1); } @@ -533,7 +533,7 @@ static void _call_f_operator_excl__eq__c2432 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFormat *)cls)->operator!= (arg1)); } @@ -552,7 +552,7 @@ static void _call_f_operator_eq__2432 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextFormat &)((QTextFormat *)cls)->operator= (arg1)); } @@ -571,7 +571,7 @@ static void _call_f_operator_eq__eq__c2432 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFormat *)cls)->operator== (arg1)); } @@ -590,7 +590,7 @@ static void _call_f_penProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QPen)((QTextFormat *)cls)->penProperty (arg1)); } @@ -624,7 +624,7 @@ static void _call_f_property_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextFormat *)cls)->property (arg1)); } @@ -658,7 +658,7 @@ static void _call_f_setBackground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->setBackground (arg1); } @@ -678,7 +678,7 @@ static void _call_f_setForeground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->setForeground (arg1); } @@ -698,7 +698,7 @@ static void _call_f_setLayoutDirection_2316 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->setLayoutDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -718,7 +718,7 @@ static void _call_f_setObjectIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->setObjectIndex (arg1); } @@ -738,7 +738,7 @@ static void _call_f_setObjectType_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->setObjectType (arg1); } @@ -760,8 +760,8 @@ static void _call_f_setProperty_2778 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->setProperty (arg1, arg2); } @@ -783,8 +783,8 @@ static void _call_f_setProperty_3914 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVector &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVector &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->setProperty (arg1, arg2); } @@ -804,7 +804,7 @@ static void _call_f_stringProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextFormat *)cls)->stringProperty (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextFragment.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextFragment.cc index 541dbf138..ffdd10273 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextFragment.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextFragment.cc @@ -66,7 +66,7 @@ static void _call_ctor_QTextFragment_2635 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFragment &arg1 = args.read (heap); + const QTextFragment &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextFragment (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_contains_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFragment *)cls)->contains (arg1)); } @@ -164,7 +164,7 @@ static void _call_f_operator_excl__eq__c2635 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFragment &arg1 = args.read (heap); + const QTextFragment &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFragment *)cls)->operator!= (arg1)); } @@ -183,7 +183,7 @@ static void _call_f_operator_lt__c2635 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFragment &arg1 = args.read (heap); + const QTextFragment &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFragment *)cls)->operator< (arg1)); } @@ -202,7 +202,7 @@ static void _call_f_operator_eq__2635 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFragment &arg1 = args.read (heap); + const QTextFragment &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextFragment &)((QTextFragment *)cls)->operator= (arg1)); } @@ -221,7 +221,7 @@ static void _call_f_operator_eq__eq__c2635 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFragment &arg1 = args.read (heap); + const QTextFragment &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFragment *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextFrame.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextFrame.cc index 771045336..858ccceb4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextFrame.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextFrame.cc @@ -177,7 +177,7 @@ static void _call_f_setFrameFormat_2923 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFrameFormat &arg1 = args.read (heap); + const QTextFrameFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame *)cls)->setFrameFormat (arg1); } @@ -199,8 +199,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextFrame::tr (arg1, arg2)); } @@ -223,9 +223,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextFrame::tr (arg1, arg2, arg3)); } @@ -246,8 +246,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextFrame::trUtf8 (arg1, arg2)); } @@ -270,9 +270,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextFrame::trUtf8 (arg1, arg2, arg3)); } @@ -456,7 +456,7 @@ static void _call_ctor_QTextFrame_Adaptor_1955 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextFrame_Adaptor (arg1)); } @@ -522,7 +522,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextFrame_Adaptor *)cls)->emitter_QTextFrame_destroyed_1302 (arg1); } @@ -613,7 +613,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextFrame_Adaptor *)cls)->fp_QTextFrame_receivers_c1731 (arg1)); } @@ -645,7 +645,7 @@ static void _call_fp_setFormat_2432 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame_Adaptor *)cls)->fp_QTextFrame_setFormat_2432 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextFrameFormat.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextFrameFormat.cc index 213f46c18..f4f30a998 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextFrameFormat.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextFrameFormat.cc @@ -256,7 +256,7 @@ static void _call_f_setBorder_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setBorder (arg1); } @@ -276,7 +276,7 @@ static void _call_f_setBorderBrush_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setBorderBrush (arg1); } @@ -296,7 +296,7 @@ static void _call_f_setBorderStyle_3297 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setBorderStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -316,7 +316,7 @@ static void _call_f_setBottomMargin_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setBottomMargin (arg1); } @@ -336,7 +336,7 @@ static void _call_f_setHeight_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setHeight (arg1); } @@ -356,7 +356,7 @@ static void _call_f_setHeight_2425 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextLength &arg1 = args.read (heap); + const QTextLength &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setHeight (arg1); } @@ -376,7 +376,7 @@ static void _call_f_setLeftMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setLeftMargin (arg1); } @@ -396,7 +396,7 @@ static void _call_f_setMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setMargin (arg1); } @@ -416,7 +416,7 @@ static void _call_f_setPadding_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setPadding (arg1); } @@ -436,7 +436,7 @@ static void _call_f_setPageBreakPolicy_3611 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setPageBreakPolicy (arg1); } @@ -456,7 +456,7 @@ static void _call_f_setPosition_3015 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setPosition (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -476,7 +476,7 @@ static void _call_f_setRightMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setRightMargin (arg1); } @@ -496,7 +496,7 @@ static void _call_f_setTopMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setTopMargin (arg1); } @@ -516,7 +516,7 @@ static void _call_f_setWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setWidth (arg1); } @@ -536,7 +536,7 @@ static void _call_f_setWidth_2425 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextLength &arg1 = args.read (heap); + const QTextLength &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setWidth (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextFrame_Iterator.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextFrame_Iterator.cc index c7420b980..e5fea1a96 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextFrame_Iterator.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextFrame_Iterator.cc @@ -67,7 +67,7 @@ static void _call_ctor_QTextFrame_Iterator_3296u1 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFrame::iterator &arg1 = args.read (heap); + const QTextFrame::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextFrame::iterator (arg1)); } @@ -131,7 +131,7 @@ static void _call_f_operator_excl__eq__c3296u1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFrame::iterator &arg1 = args.read (heap); + const QTextFrame::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFrame::iterator *)cls)->operator!= (arg1)); } @@ -165,7 +165,7 @@ static void _call_f_operator_plus__plus__767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextFrame::iterator)((QTextFrame::iterator *)cls)->operator++ (arg1)); } @@ -199,7 +199,7 @@ static void _call_f_operator_minus__minus__767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextFrame::iterator)((QTextFrame::iterator *)cls)->operator-- (arg1)); } @@ -218,7 +218,7 @@ static void _call_f_operator_eq__3296 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFrame::iterator &arg1 = args.read (heap); + const QTextFrame::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextFrame::iterator &)((QTextFrame::iterator *)cls)->operator= (arg1)); } @@ -237,7 +237,7 @@ static void _call_f_operator_eq__eq__c3296u1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFrame::iterator &arg1 = args.read (heap); + const QTextFrame::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFrame::iterator *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextImageFormat.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextImageFormat.cc index af11e1bef..e8f764b7b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextImageFormat.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextImageFormat.cc @@ -122,7 +122,7 @@ static void _call_f_setHeight_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextImageFormat *)cls)->setHeight (arg1); } @@ -142,7 +142,7 @@ static void _call_f_setName_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextImageFormat *)cls)->setName (arg1); } @@ -162,7 +162,7 @@ static void _call_f_setWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextImageFormat *)cls)->setWidth (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextInlineObject.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextInlineObject.cc index dfb07a91a..6c640c954 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextInlineObject.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextInlineObject.cc @@ -172,7 +172,7 @@ static void _call_f_setAscent_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextInlineObject *)cls)->setAscent (arg1); } @@ -192,7 +192,7 @@ static void _call_f_setDescent_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextInlineObject *)cls)->setDescent (arg1); } @@ -212,7 +212,7 @@ static void _call_f_setWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextInlineObject *)cls)->setWidth (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextLayout.cc index e45070ffe..21500382b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextLayout.cc @@ -73,7 +73,7 @@ static void _call_ctor_QTextLayout_2025 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextLayout (arg1)); } @@ -96,9 +96,9 @@ static void _call_ctor_QTextLayout_5413 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QFont &arg2 = args.read (heap); - QPaintDevice *arg3 = args ? args.read (heap) : (QPaintDevice *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QFont &arg2 = gsi::arg_reader() (args, heap); + QPaintDevice *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTextLayout (arg1, arg2, arg3)); } @@ -117,7 +117,7 @@ static void _call_ctor_QTextLayout_2306 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextLayout (arg1)); } @@ -250,10 +250,10 @@ static void _call_f_draw_c9459 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); - const QRectF &arg4 = args ? args.read (heap) : (const QRectF &)(QRectF()); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); + const QRectF &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->draw (arg1, arg2, arg3, arg4); } @@ -277,9 +277,9 @@ static void _call_f_drawCursor_c3963 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - int arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->drawCursor (arg1, arg2, arg3); } @@ -305,10 +305,10 @@ static void _call_f_drawCursor_c4622 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->drawCursor (arg1, arg2, arg3, arg4); } @@ -359,7 +359,7 @@ static void _call_f_isValidCursorPosition_c767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextLayout *)cls)->isValidCursorPosition (arg1)); } @@ -378,7 +378,7 @@ static void _call_f_lineAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextLine)((QTextLayout *)cls)->lineAt (arg1)); } @@ -412,7 +412,7 @@ static void _call_f_lineForTextPosition_c767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextLine)((QTextLayout *)cls)->lineForTextPosition (arg1)); } @@ -463,8 +463,8 @@ static void _call_f_nextCursorPosition_c3378 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextLayout::SkipCharacters)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextLayout::SkipCharacters), heap); ret.write ((int)((QTextLayout *)cls)->nextCursorPosition (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -530,8 +530,8 @@ static void _call_f_previousCursorPosition_c3378 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextLayout::SkipCharacters)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextLayout::SkipCharacters), heap); ret.write ((int)((QTextLayout *)cls)->previousCursorPosition (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -550,7 +550,7 @@ static void _call_f_setAdditionalFormats_4294 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setAdditionalFormats (arg1); } @@ -570,7 +570,7 @@ static void _call_f_setCacheEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setCacheEnabled (arg1); } @@ -590,7 +590,7 @@ static void _call_f_setFlags_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setFlags (arg1); } @@ -610,7 +610,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setFont (arg1); } @@ -630,7 +630,7 @@ static void _call_f_setPosition_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setPosition (arg1); } @@ -652,8 +652,8 @@ static void _call_f_setPreeditArea_2684 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setPreeditArea (arg1, arg2); } @@ -673,7 +673,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setText (arg1); } @@ -693,7 +693,7 @@ static void _call_f_setTextOption_2448 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextOption &arg1 = args.read (heap); + const QTextOption &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setTextOption (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextLength.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextLength.cc index 7bc0e4b80..5c1260790 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextLength.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextLength.cc @@ -67,8 +67,8 @@ static void _call_ctor_QTextLength_3045 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - double arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write (new QTextLength (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -87,7 +87,7 @@ static void _call_f_operator_excl__eq__c2425 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextLength &arg1 = args.read (heap); + const QTextLength &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextLength *)cls)->operator!= (arg1)); } @@ -106,7 +106,7 @@ static void _call_f_operator_eq__eq__c2425 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextLength &arg1 = args.read (heap); + const QTextLength &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextLength *)cls)->operator== (arg1)); } @@ -155,7 +155,7 @@ static void _call_f_value_c1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QTextLength *)cls)->value (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextLine.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextLine.cc index 5b4d48b0a..77fecb8a5 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextLine.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextLine.cc @@ -85,8 +85,8 @@ static void _call_f_cursorToX_c2664 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextLine::Leading)); + int *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextLine::Leading), heap); ret.write ((double)((QTextLine *)cls)->cursorToX (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -107,8 +107,8 @@ static void _call_f_cursorToX_c2478 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextLine::Leading)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextLine::Leading), heap); ret.write ((double)((QTextLine *)cls)->cursorToX (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -146,9 +146,9 @@ static void _call_f_draw_c6879 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - const QTextLayout::FormatRange *arg3 = args ? args.read (heap) : (const QTextLayout::FormatRange *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + const QTextLayout::FormatRange *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLine *)cls)->draw (arg1, arg2, arg3); } @@ -303,7 +303,7 @@ static void _call_f_setLeadingIncluded_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLine *)cls)->setLeadingIncluded (arg1); } @@ -323,7 +323,7 @@ static void _call_f_setLineWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLine *)cls)->setLineWidth (arg1); } @@ -343,7 +343,7 @@ static void _call_f_setNumColumns_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLine *)cls)->setNumColumns (arg1); } @@ -365,8 +365,8 @@ static void _call_f_setNumColumns_1730 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLine *)cls)->setNumColumns (arg1, arg2); } @@ -386,7 +386,7 @@ static void _call_f_setPosition_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLine *)cls)->setPosition (arg1); } @@ -468,8 +468,8 @@ static void _call_f_xToCursor_c3900 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextLine::CursorBetweenCharacters)); + double arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextLine::CursorBetweenCharacters), heap); ret.write ((int)((QTextLine *)cls)->xToCursor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextList.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextList.cc index 0be50383b..cc3fb43ef 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextList.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextList.cc @@ -71,7 +71,7 @@ static void _call_f_add_2306 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList *)cls)->add (arg1); } @@ -136,7 +136,7 @@ static void _call_f_item_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextBlock)((QTextList *)cls)->item (arg1)); } @@ -155,7 +155,7 @@ static void _call_f_itemNumber_c2306 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextList *)cls)->itemNumber (arg1)); } @@ -174,7 +174,7 @@ static void _call_f_itemText_c2306 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextList *)cls)->itemText (arg1)); } @@ -193,7 +193,7 @@ static void _call_f_remove_2306 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList *)cls)->remove (arg1); } @@ -213,7 +213,7 @@ static void _call_f_removeItem_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList *)cls)->removeItem (arg1); } @@ -233,7 +233,7 @@ static void _call_f_setFormat_2844 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextListFormat &arg1 = args.read (heap); + const QTextListFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList *)cls)->setFormat (arg1); } @@ -255,8 +255,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextList::tr (arg1, arg2)); } @@ -279,9 +279,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextList::tr (arg1, arg2, arg3)); } @@ -302,8 +302,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextList::trUtf8 (arg1, arg2)); } @@ -326,9 +326,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextList::trUtf8 (arg1, arg2, arg3)); } @@ -562,7 +562,7 @@ static void _call_ctor_QTextList_Adaptor_1955 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextList_Adaptor (arg1)); } @@ -714,7 +714,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextList_Adaptor *)cls)->emitter_QTextList_destroyed_1302 (arg1); } @@ -805,7 +805,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextList_Adaptor *)cls)->fp_QTextList_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextListFormat.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextListFormat.cc index 6350f4de9..93f6a5422 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextListFormat.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextListFormat.cc @@ -106,7 +106,7 @@ static void _call_f_setIndent_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextListFormat *)cls)->setIndent (arg1); } @@ -126,7 +126,7 @@ static void _call_f_setStyle_2612 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextListFormat *)cls)->setStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextObject.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextObject.cc index b92c84972..5580801fc 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextObject.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextObject.cc @@ -132,8 +132,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextObject::tr (arg1, arg2)); } @@ -156,9 +156,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextObject::tr (arg1, arg2, arg3)); } @@ -179,8 +179,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextObject::trUtf8 (arg1, arg2)); } @@ -203,9 +203,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextObject::trUtf8 (arg1, arg2, arg3)); } @@ -427,7 +427,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextObject_Adaptor *)cls)->emitter_QTextObject_destroyed_1302 (arg1); } @@ -518,7 +518,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextObject_Adaptor *)cls)->fp_QTextObject_receivers_c1731 (arg1)); } @@ -550,7 +550,7 @@ static void _call_fp_setFormat_2432 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObject_Adaptor *)cls)->fp_QTextObject_setFormat_2432 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextObjectInterface.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextObjectInterface.cc index 6247525c2..ab3bc4f6f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextObjectInterface.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextObjectInterface.cc @@ -63,11 +63,11 @@ static void _call_f_drawObject_8010 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); - QTextDocument *arg3 = args.read (heap); - int arg4 = args.read (heap); - const QTextFormat &arg5 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); + QTextDocument *arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QTextFormat &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObjectInterface *)cls)->drawObject (arg1, arg2, arg3, arg4, arg5); } @@ -91,9 +91,9 @@ static void _call_f_intrinsicSize_4938 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); ret.write ((QSizeF)((QTextObjectInterface *)cls)->intrinsicSize (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextOption.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextOption.cc index afbac01fa..8d6379737 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextOption.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextOption.cc @@ -65,7 +65,7 @@ static void _call_ctor_QTextOption_2750 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write (new QTextOption (arg1)); } @@ -84,7 +84,7 @@ static void _call_ctor_QTextOption_2448 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextOption &arg1 = args.read (heap); + const QTextOption &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextOption (arg1)); } @@ -133,7 +133,7 @@ static void _call_f_operator_eq__2448 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextOption &arg1 = args.read (heap); + const QTextOption &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextOption &)((QTextOption *)cls)->operator= (arg1)); } @@ -152,7 +152,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setAlignment (arg1); } @@ -172,7 +172,7 @@ static void _call_f_setFlags_2761 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setFlags (arg1); } @@ -192,7 +192,7 @@ static void _call_f_setTabArray_1584 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QList arg1 = args.read > (heap); + QList arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setTabArray (arg1); } @@ -212,7 +212,7 @@ static void _call_f_setTabStop_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setTabStop (arg1); } @@ -232,7 +232,7 @@ static void _call_f_setTabs_2581 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QList arg1 = args.read > (heap); + QList arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setTabs (arg1); } @@ -252,7 +252,7 @@ static void _call_f_setTextDirection_2316 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setTextDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -272,7 +272,7 @@ static void _call_f_setUseDesignMetrics_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setUseDesignMetrics (arg1); } @@ -292,7 +292,7 @@ static void _call_f_setWrapMode_2486 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setWrapMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextOption_Tab.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextOption_Tab.cc index 336bf7915..4edf5b7e7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextOption_Tab.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextOption_Tab.cc @@ -65,7 +65,7 @@ static void _call_f_operator_excl__eq__c2843 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextOption::Tab &arg1 = args.read (heap); + const QTextOption::Tab &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextOption::Tab *)cls)->operator!= (arg1)); } @@ -84,7 +84,7 @@ static void _call_f_operator_eq__eq__c2843 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextOption::Tab &arg1 = args.read (heap); + const QTextOption::Tab &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextOption::Tab *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextTable.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextTable.cc index 76412f6ba..2b6fa848a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextTable.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextTable.cc @@ -74,7 +74,7 @@ static void _call_f_appendColumns_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->appendColumns (arg1); } @@ -94,7 +94,7 @@ static void _call_f_appendRows_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->appendRows (arg1); } @@ -116,8 +116,8 @@ static void _call_f_cellAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QTextTableCell)((QTextTable *)cls)->cellAt (arg1, arg2)); } @@ -136,7 +136,7 @@ static void _call_f_cellAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextTableCell)((QTextTable *)cls)->cellAt (arg1)); } @@ -155,7 +155,7 @@ static void _call_f_cellAt_c2453 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextTableCell)((QTextTable *)cls)->cellAt (arg1)); } @@ -206,8 +206,8 @@ static void _call_f_insertColumns_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->insertColumns (arg1, arg2); } @@ -229,8 +229,8 @@ static void _call_f_insertRows_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->insertRows (arg1, arg2); } @@ -256,10 +256,10 @@ static void _call_f_mergeCells_2744 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->mergeCells (arg1, arg2, arg3, arg4); } @@ -279,7 +279,7 @@ static void _call_f_mergeCells_2453 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->mergeCells (arg1); } @@ -301,8 +301,8 @@ static void _call_f_removeColumns_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->removeColumns (arg1, arg2); } @@ -324,8 +324,8 @@ static void _call_f_removeRows_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->removeRows (arg1, arg2); } @@ -347,8 +347,8 @@ static void _call_f_resize_1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->resize (arg1, arg2); } @@ -368,7 +368,7 @@ static void _call_f_rowEnd_c2453 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCursor)((QTextTable *)cls)->rowEnd (arg1)); } @@ -387,7 +387,7 @@ static void _call_f_rowStart_c2453 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCursor)((QTextTable *)cls)->rowStart (arg1)); } @@ -421,7 +421,7 @@ static void _call_f_setFormat_2920 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextTableFormat &arg1 = args.read (heap); + const QTextTableFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->setFormat (arg1); } @@ -447,10 +447,10 @@ static void _call_f_splitCell_2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->splitCell (arg1, arg2, arg3, arg4); } @@ -472,8 +472,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextTable::tr (arg1, arg2)); } @@ -496,9 +496,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextTable::tr (arg1, arg2, arg3)); } @@ -519,8 +519,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTextTable::trUtf8 (arg1, arg2)); } @@ -543,9 +543,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTextTable::trUtf8 (arg1, arg2, arg3)); } @@ -735,7 +735,7 @@ static void _call_ctor_QTextTable_Adaptor_1955 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextTable_Adaptor (arg1)); } @@ -801,7 +801,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextTable_Adaptor *)cls)->emitter_QTextTable_destroyed_1302 (arg1); } @@ -892,7 +892,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextTable_Adaptor *)cls)->fp_QTextTable_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextTableCell.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextTableCell.cc index 28b679e8d..437ef2eb2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextTableCell.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextTableCell.cc @@ -67,7 +67,7 @@ static void _call_ctor_QTextTableCell_2687 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextTableCell &arg1 = args.read (heap); + const QTextTableCell &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextTableCell (arg1)); } @@ -206,7 +206,7 @@ static void _call_f_operator_excl__eq__c2687 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextTableCell &arg1 = args.read (heap); + const QTextTableCell &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextTableCell *)cls)->operator!= (arg1)); } @@ -225,7 +225,7 @@ static void _call_f_operator_eq__2687 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextTableCell &arg1 = args.read (heap); + const QTextTableCell &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextTableCell &)((QTextTableCell *)cls)->operator= (arg1)); } @@ -244,7 +244,7 @@ static void _call_f_operator_eq__eq__c2687 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextTableCell &arg1 = args.read (heap); + const QTextTableCell &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextTableCell *)cls)->operator== (arg1)); } @@ -293,7 +293,7 @@ static void _call_f_setFormat_2814 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableCell *)cls)->setFormat (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextTableCellFormat.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextTableCellFormat.cc index f8074f0d3..028cb7fe6 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextTableCellFormat.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextTableCellFormat.cc @@ -137,7 +137,7 @@ static void _call_f_setBottomPadding_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableCellFormat *)cls)->setBottomPadding (arg1); } @@ -157,7 +157,7 @@ static void _call_f_setLeftPadding_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableCellFormat *)cls)->setLeftPadding (arg1); } @@ -177,7 +177,7 @@ static void _call_f_setPadding_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableCellFormat *)cls)->setPadding (arg1); } @@ -197,7 +197,7 @@ static void _call_f_setRightPadding_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableCellFormat *)cls)->setRightPadding (arg1); } @@ -217,7 +217,7 @@ static void _call_f_setTopPadding_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableCellFormat *)cls)->setTopPadding (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTextTableFormat.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTextTableFormat.cc index 121026041..908cd5662 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTextTableFormat.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTextTableFormat.cc @@ -197,7 +197,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableFormat *)cls)->setAlignment (arg1); } @@ -217,7 +217,7 @@ static void _call_f_setCellPadding_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableFormat *)cls)->setCellPadding (arg1); } @@ -237,7 +237,7 @@ static void _call_f_setCellSpacing_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableFormat *)cls)->setCellSpacing (arg1); } @@ -257,7 +257,7 @@ static void _call_f_setColumnWidthConstraints_3255 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableFormat *)cls)->setColumnWidthConstraints (arg1); } @@ -277,7 +277,7 @@ static void _call_f_setColumns_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableFormat *)cls)->setColumns (arg1); } @@ -297,7 +297,7 @@ static void _call_f_setHeaderRowCount_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableFormat *)cls)->setHeaderRowCount (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTimeEdit.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTimeEdit.cc index e2ede9f98..52035b541 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTimeEdit.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTimeEdit.cc @@ -119,8 +119,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTimeEdit::tr (arg1, arg2)); } @@ -143,9 +143,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTimeEdit::tr (arg1, arg2, arg3)); } @@ -166,8 +166,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTimeEdit::trUtf8 (arg1, arg2)); } @@ -190,9 +190,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTimeEdit::trUtf8 (arg1, arg2, arg3)); } @@ -1213,7 +1213,7 @@ static void _call_ctor_QTimeEdit_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTimeEdit_Adaptor (arg1)); } @@ -1233,8 +1233,8 @@ static void _call_ctor_QTimeEdit_Adaptor_3000 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QTime &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTimeEdit_Adaptor (arg1, arg2)); } @@ -1396,9 +1396,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->fp_QTimeEdit_create_2208 (arg1, arg2, arg3); } @@ -1417,7 +1417,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTimeEdit_Adaptor *)cls)->emitter_QTimeEdit_customContextMenuRequested_1916 (arg1); } @@ -1459,7 +1459,7 @@ static void _call_emitter_dateChanged_1776 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ((QTimeEdit_Adaptor *)cls)->emitter_QTimeEdit_dateChanged_1776 (arg1); } @@ -1477,7 +1477,7 @@ static void _call_emitter_dateTimeChanged_2175 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ((QTimeEdit_Adaptor *)cls)->emitter_QTimeEdit_dateTimeChanged_2175 (arg1); } @@ -1520,8 +1520,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->fp_QTimeEdit_destroy_1620 (arg1, arg2); } @@ -1540,7 +1540,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTimeEdit_Adaptor *)cls)->emitter_QTimeEdit_destroyed_1302 (arg1); } @@ -1983,7 +1983,7 @@ static void _call_fp_initStyleOption_c2572 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->fp_QTimeEdit_initStyleOption_c2572 (arg1); } @@ -2384,7 +2384,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTimeEdit_Adaptor *)cls)->fp_QTimeEdit_receivers_c1731 (arg1)); } @@ -2455,7 +2455,7 @@ static void _call_fp_setLineEdit_1485 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLineEdit *arg1 = args.read (heap); + QLineEdit *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->fp_QTimeEdit_setLineEdit_1485 (arg1); } @@ -2655,7 +2655,7 @@ static void _call_emitter_timeChanged_1793 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ((QTimeEdit_Adaptor *)cls)->emitter_QTimeEdit_timeChanged_1793 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQToolBar.cc b/src/gsiqt/qt4/QtGui/gsiDeclQToolBar.cc index 8c63cae86..bef620806 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQToolBar.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQToolBar.cc @@ -112,7 +112,7 @@ static void _call_f_actionAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->actionAt (arg1)); } @@ -133,8 +133,8 @@ static void _call_f_actionAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->actionAt (arg1, arg2)); } @@ -153,7 +153,7 @@ static void _call_f_actionGeometry_c1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QToolBar *)cls)->actionGeometry (arg1)); } @@ -172,7 +172,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar *)cls)->addAction (arg1); } @@ -192,7 +192,7 @@ static void _call_f_addAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->addAction (arg1)); } @@ -213,8 +213,8 @@ static void _call_f_addAction_3704 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->addAction (arg1, arg2)); } @@ -237,9 +237,9 @@ static void _call_f_addAction_5537 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QObject *arg2 = args.read (heap); - const char *arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QObject *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->addAction (arg1, arg2, arg3)); } @@ -264,10 +264,10 @@ static void _call_f_addAction_7216 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - const char *arg4 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + const char *arg4 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->addAction (arg1, arg2, arg3, arg4)); } @@ -301,7 +301,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->addWidget (arg1)); } @@ -366,7 +366,7 @@ static void _call_f_insertSeparator_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->insertSeparator (arg1)); } @@ -387,8 +387,8 @@ static void _call_f_insertWidget_2516 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->insertWidget (arg1, arg2)); } @@ -407,7 +407,7 @@ static void _call_f_isAreaAllowed_c1817 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QToolBar *)cls)->isAreaAllowed (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -486,7 +486,7 @@ static void _call_f_setAllowedAreas_2513 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar *)cls)->setAllowedAreas (arg1); } @@ -506,7 +506,7 @@ static void _call_f_setFloatable_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar *)cls)->setFloatable (arg1); } @@ -526,7 +526,7 @@ static void _call_f_setIconSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar *)cls)->setIconSize (arg1); } @@ -546,7 +546,7 @@ static void _call_f_setMovable_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar *)cls)->setMovable (arg1); } @@ -566,7 +566,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -586,7 +586,7 @@ static void _call_f_setToolButtonStyle_2328 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar *)cls)->setToolButtonStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -636,7 +636,7 @@ static void _call_f_widgetForAction_c1309 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QToolBar *)cls)->widgetForAction (arg1)); } @@ -657,8 +657,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QToolBar::tr (arg1, arg2)); } @@ -681,9 +681,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QToolBar::tr (arg1, arg2, arg3)); } @@ -704,8 +704,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QToolBar::trUtf8 (arg1, arg2)); } @@ -728,9 +728,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QToolBar::trUtf8 (arg1, arg2, arg3)); } @@ -1681,8 +1681,8 @@ static void _call_ctor_QToolBar_Adaptor_3232 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QToolBar_Adaptor (arg1, arg2)); } @@ -1700,7 +1700,7 @@ static void _call_ctor_QToolBar_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QToolBar_Adaptor (arg1)); } @@ -1742,7 +1742,7 @@ static void _call_emitter_actionTriggered_1309 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_actionTriggered_1309 (arg1); } @@ -1760,7 +1760,7 @@ static void _call_emitter_allowedAreasChanged_2513 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_allowedAreasChanged_2513 (arg1); } @@ -1878,9 +1878,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->fp_QToolBar_create_2208 (arg1, arg2, arg3); } @@ -1899,7 +1899,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_customContextMenuRequested_1916 (arg1); } @@ -1943,8 +1943,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->fp_QToolBar_destroy_1620 (arg1, arg2); } @@ -1963,7 +1963,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_destroyed_1302 (arg1); } @@ -2368,7 +2368,7 @@ static void _call_emitter_iconSizeChanged_1805 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_iconSizeChanged_1805 (arg1); } @@ -2386,7 +2386,7 @@ static void _call_fp_initStyleOption_c2556 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionToolBar *arg1 = args.read (heap); + QStyleOptionToolBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->fp_QToolBar_initStyleOption_c2556 (arg1); } @@ -2682,7 +2682,7 @@ static void _call_emitter_movableChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_movableChanged_864 (arg1); } @@ -2724,7 +2724,7 @@ static void _call_emitter_orientationChanged_1913 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_orientationChanged_1913 (arg1); } @@ -2809,7 +2809,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBar_Adaptor *)cls)->fp_QToolBar_receivers_c1731 (arg1)); } @@ -3019,7 +3019,7 @@ static void _call_emitter_toolButtonStyleChanged_2328 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_toolButtonStyleChanged_2328 (arg1); } @@ -3037,7 +3037,7 @@ static void _call_emitter_topLevelChanged_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_topLevelChanged_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQToolBarChangeEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQToolBarChangeEvent.cc index 554b91457..94327d4ee 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQToolBarChangeEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQToolBarChangeEvent.cc @@ -101,7 +101,7 @@ static void _call_ctor_QToolBarChangeEvent_Adaptor_864 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write (new QToolBarChangeEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQToolBox.cc b/src/gsiqt/qt4/QtGui/gsiDeclQToolBox.cc index 45c964e11..537015c10 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQToolBox.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQToolBox.cc @@ -113,8 +113,8 @@ static void _call_f_addItem_3232 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBox *)cls)->addItem (arg1, arg2)); } @@ -137,9 +137,9 @@ static void _call_f_addItem_4911 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBox *)cls)->addItem (arg1, arg2, arg3)); } @@ -203,7 +203,7 @@ static void _call_f_indexOf_c1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBox *)cls)->indexOf (arg1)); } @@ -226,9 +226,9 @@ static void _call_f_insertItem_3891 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBox *)cls)->insertItem (arg1, arg2, arg3)); } @@ -253,10 +253,10 @@ static void _call_f_insertItem_5570 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const QIcon &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + const QIcon &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBox *)cls)->insertItem (arg1, arg2, arg3, arg4)); } @@ -275,7 +275,7 @@ static void _call_f_isItemEnabled_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBox *)cls)->isItemEnabled (arg1)); } @@ -294,7 +294,7 @@ static void _call_f_itemIcon_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QToolBox *)cls)->itemIcon (arg1)); } @@ -313,7 +313,7 @@ static void _call_f_itemText_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QToolBox *)cls)->itemText (arg1)); } @@ -332,7 +332,7 @@ static void _call_f_itemToolTip_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QToolBox *)cls)->itemToolTip (arg1)); } @@ -351,7 +351,7 @@ static void _call_f_removeItem_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox *)cls)->removeItem (arg1); } @@ -371,7 +371,7 @@ static void _call_f_setCurrentIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox *)cls)->setCurrentIndex (arg1); } @@ -391,7 +391,7 @@ static void _call_f_setCurrentWidget_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox *)cls)->setCurrentWidget (arg1); } @@ -413,8 +413,8 @@ static void _call_f_setItemEnabled_1523 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox *)cls)->setItemEnabled (arg1, arg2); } @@ -436,8 +436,8 @@ static void _call_f_setItemIcon_2446 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox *)cls)->setItemIcon (arg1, arg2); } @@ -459,8 +459,8 @@ static void _call_f_setItemText_2684 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox *)cls)->setItemText (arg1, arg2); } @@ -482,8 +482,8 @@ static void _call_f_setItemToolTip_2684 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox *)cls)->setItemToolTip (arg1, arg2); } @@ -503,7 +503,7 @@ static void _call_f_widget_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QToolBox *)cls)->widget (arg1)); } @@ -524,8 +524,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QToolBox::tr (arg1, arg2)); } @@ -548,9 +548,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QToolBox::tr (arg1, arg2, arg3)); } @@ -571,8 +571,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QToolBox::trUtf8 (arg1, arg2)); } @@ -595,9 +595,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QToolBox::trUtf8 (arg1, arg2, arg3)); } @@ -1523,8 +1523,8 @@ static void _call_ctor_QToolBox_Adaptor_3702 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QToolBox_Adaptor (arg1, arg2)); } @@ -1666,9 +1666,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->fp_QToolBox_create_2208 (arg1, arg2, arg3); } @@ -1687,7 +1687,7 @@ static void _call_emitter_currentChanged_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QToolBox_Adaptor *)cls)->emitter_QToolBox_currentChanged_767 (arg1); } @@ -1705,7 +1705,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QToolBox_Adaptor *)cls)->emitter_QToolBox_customContextMenuRequested_1916 (arg1); } @@ -1749,8 +1749,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->fp_QToolBox_destroy_1620 (arg1, arg2); } @@ -1769,7 +1769,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QToolBox_Adaptor *)cls)->emitter_QToolBox_destroyed_1302 (arg1); } @@ -1883,7 +1883,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->fp_QToolBox_drawFrame_1426 (arg1); } @@ -2609,7 +2609,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBox_Adaptor *)cls)->fp_QToolBox_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQToolButton.cc b/src/gsiqt/qt4/QtGui/gsiDeclQToolButton.cc index 46c846e90..bfe12e38f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQToolButton.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQToolButton.cc @@ -204,7 +204,7 @@ static void _call_f_setArrowType_1690 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton *)cls)->setArrowType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -224,7 +224,7 @@ static void _call_f_setAutoRaise_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton *)cls)->setAutoRaise (arg1); } @@ -244,7 +244,7 @@ static void _call_f_setDefaultAction_1309 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton *)cls)->setDefaultAction (arg1); } @@ -264,7 +264,7 @@ static void _call_f_setMenu_1108 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenu *arg1 = args.read (heap); + QMenu *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton *)cls)->setMenu (arg1); } @@ -284,7 +284,7 @@ static void _call_f_setPopupMode_3654 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton *)cls)->setPopupMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -304,7 +304,7 @@ static void _call_f_setToolButtonStyle_2328 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton *)cls)->setToolButtonStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -372,8 +372,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QToolButton::tr (arg1, arg2)); } @@ -396,9 +396,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QToolButton::tr (arg1, arg2, arg3)); } @@ -419,8 +419,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QToolButton::trUtf8 (arg1, arg2)); } @@ -443,9 +443,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QToolButton::trUtf8 (arg1, arg2, arg3)); } @@ -1402,7 +1402,7 @@ static void _call_ctor_QToolButton_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QToolButton_Adaptor (arg1)); } @@ -1512,7 +1512,7 @@ static void _call_emitter_clicked_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QToolButton_Adaptor *)cls)->emitter_QToolButton_clicked_864 (arg1); } @@ -1582,9 +1582,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->fp_QToolButton_create_2208 (arg1, arg2, arg3); } @@ -1603,7 +1603,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QToolButton_Adaptor *)cls)->emitter_QToolButton_customContextMenuRequested_1916 (arg1); } @@ -1647,8 +1647,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->fp_QToolButton_destroy_1620 (arg1, arg2); } @@ -1667,7 +1667,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QToolButton_Adaptor *)cls)->emitter_QToolButton_destroyed_1302 (arg1); } @@ -2095,7 +2095,7 @@ static void _call_fp_initStyleOption_c2915 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionToolButton *arg1 = args.read (heap); + QStyleOptionToolButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->fp_QToolButton_initStyleOption_c2915 (arg1); } @@ -2516,7 +2516,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolButton_Adaptor *)cls)->fp_QToolButton_receivers_c1731 (arg1)); } @@ -2740,7 +2740,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QToolButton_Adaptor *)cls)->emitter_QToolButton_toggled_864 (arg1); } @@ -2758,7 +2758,7 @@ static void _call_emitter_triggered_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QToolButton_Adaptor *)cls)->emitter_QToolButton_triggered_1309 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQToolTip.cc b/src/gsiqt/qt4/QtGui/gsiDeclQToolTip.cc index 2576547d2..5eb694f71 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQToolTip.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQToolTip.cc @@ -116,7 +116,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QToolTip::setFont (arg1); } @@ -136,7 +136,7 @@ static void _call_f_setPalette_2113 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QToolTip::setPalette (arg1); } @@ -160,9 +160,9 @@ static void _call_f_showText_5040 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); QToolTip::showText (arg1, arg2, arg3); } @@ -188,10 +188,10 @@ static void _call_f_showText_6724 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); - const QRect &arg4 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); + const QRect &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QToolTip::showText (arg1, arg2, arg3, arg4); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTouchEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTouchEvent.cc index b1c150e38..83a8f2b9a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTouchEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTouchEvent.cc @@ -66,7 +66,7 @@ static void _call_f_setDeviceType_2672 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent *)cls)->setDeviceType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -86,7 +86,7 @@ static void _call_f_setTouchPointStates_2995 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent *)cls)->setTouchPointStates (arg1); } @@ -106,7 +106,7 @@ static void _call_f_setTouchPoints_4191 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent *)cls)->setTouchPoints (arg1); } @@ -126,7 +126,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent *)cls)->setWidget (arg1); } @@ -266,11 +266,11 @@ static void _call_ctor_QTouchEvent_Adaptor_14068 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTouchEvent::TouchScreen)); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::NoModifier); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(0); - const QList &arg5 = args ? args.read & > (heap) : (const QList &)(QList()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTouchEvent::TouchScreen), heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::NoModifier, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); + const QList &arg5 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); ret.write (new QTouchEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTouchEvent_TouchPoint.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTouchEvent_TouchPoint.cc index 64107d230..d81abd19a 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTouchEvent_TouchPoint.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTouchEvent_TouchPoint.cc @@ -52,7 +52,7 @@ static void _call_ctor_QTouchEvent_TouchPoint_767 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write (new QTouchEvent::TouchPoint (arg1)); } @@ -71,7 +71,7 @@ static void _call_ctor_QTouchEvent_TouchPoint_3576 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTouchEvent::TouchPoint &arg1 = args.read (heap); + const QTouchEvent::TouchPoint &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTouchEvent::TouchPoint (arg1)); } @@ -195,7 +195,7 @@ static void _call_f_operator_eq__3576 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTouchEvent::TouchPoint &arg1 = args.read (heap); + const QTouchEvent::TouchPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTouchEvent::TouchPoint &)((QTouchEvent::TouchPoint *)cls)->operator= (arg1)); } @@ -319,7 +319,7 @@ static void _call_f_setId_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setId (arg1); } @@ -339,7 +339,7 @@ static void _call_f_setLastNormalizedPos_1986 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setLastNormalizedPos (arg1); } @@ -359,7 +359,7 @@ static void _call_f_setLastPos_1986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setLastPos (arg1); } @@ -379,7 +379,7 @@ static void _call_f_setLastScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setLastScenePos (arg1); } @@ -399,7 +399,7 @@ static void _call_f_setLastScreenPos_1986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setLastScreenPos (arg1); } @@ -419,7 +419,7 @@ static void _call_f_setNormalizedPos_1986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setNormalizedPos (arg1); } @@ -439,7 +439,7 @@ static void _call_f_setPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setPos (arg1); } @@ -459,7 +459,7 @@ static void _call_f_setPressure_1071 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setPressure (arg1); } @@ -479,7 +479,7 @@ static void _call_f_setRect_1862 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setRect (arg1); } @@ -499,7 +499,7 @@ static void _call_f_setScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setScenePos (arg1); } @@ -519,7 +519,7 @@ static void _call_f_setSceneRect_1862 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setSceneRect (arg1); } @@ -539,7 +539,7 @@ static void _call_f_setScreenPos_1986 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setScreenPos (arg1); } @@ -559,7 +559,7 @@ static void _call_f_setScreenRect_1862 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setScreenRect (arg1); } @@ -579,7 +579,7 @@ static void _call_f_setStartNormalizedPos_1986 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setStartNormalizedPos (arg1); } @@ -599,7 +599,7 @@ static void _call_f_setStartPos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setStartPos (arg1); } @@ -619,7 +619,7 @@ static void _call_f_setStartScenePos_1986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setStartScenePos (arg1); } @@ -639,7 +639,7 @@ static void _call_f_setStartScreenPos_1986 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setStartScreenPos (arg1); } @@ -659,7 +659,7 @@ static void _call_f_setState_2995 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setState (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTransform.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTransform.cc index 6ac40ed49..42e10d4a8 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTransform.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTransform.cc @@ -61,7 +61,7 @@ static void _call_ctor_QTransform_2229 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QTransform (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -111,15 +111,15 @@ static void _call_ctor_QTransform_8775 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); - double arg7 = args.read (heap); - double arg8 = args.read (heap); - double arg9 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); + double arg7 = gsi::arg_reader() (args, heap); + double arg8 = gsi::arg_reader() (args, heap); + double arg9 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); ret.write (new QTransform (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)); } @@ -148,12 +148,12 @@ static void _call_ctor_QTransform_5886 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); ret.write (new QTransform (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -172,7 +172,7 @@ static void _call_ctor_QTransform_2023 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTransform (arg1)); } @@ -266,7 +266,7 @@ static void _call_f_inverted_c1050 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args ? args.read (heap) : (bool *)(0); + bool *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QTransform)((QTransform *)cls)->inverted (arg1)); } @@ -510,7 +510,7 @@ static void _call_f_map_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QTransform *)cls)->map (arg1)); } @@ -529,7 +529,7 @@ static void _call_f_map_c1986 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QTransform *)cls)->map (arg1)); } @@ -548,7 +548,7 @@ static void _call_f_map_c1786 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLine &arg1 = args.read (heap); + const QLine &arg1 = gsi::arg_reader() (args, heap); ret.write ((QLine)((QTransform *)cls)->map (arg1)); } @@ -567,7 +567,7 @@ static void _call_f_map_c1856 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QLineF)((QTransform *)cls)->map (arg1)); } @@ -586,7 +586,7 @@ static void _call_f_map_c2208 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QTransform *)cls)->map (arg1)); } @@ -605,7 +605,7 @@ static void _call_f_map_c2138 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QTransform *)cls)->map (arg1)); } @@ -624,7 +624,7 @@ static void _call_f_map_c2006 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QTransform *)cls)->map (arg1)); } @@ -643,7 +643,7 @@ static void _call_f_map_c2514 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QTransform *)cls)->map (arg1)); } @@ -668,10 +668,10 @@ static void _call_f_map_c3116 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTransform *)cls)->map (arg1, arg2, arg3, arg4); } @@ -697,10 +697,10 @@ static void _call_f_map_c4332 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTransform *)cls)->map (arg1, arg2, arg3, arg4); } @@ -720,7 +720,7 @@ static void _call_f_mapRect_c1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTransform *)cls)->mapRect (arg1)); } @@ -739,7 +739,7 @@ static void _call_f_mapRect_c1862 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QTransform *)cls)->mapRect (arg1)); } @@ -758,7 +758,7 @@ static void _call_f_mapToPolygon_c1792 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QTransform *)cls)->mapToPolygon (arg1)); } @@ -777,7 +777,7 @@ static void _call_f_operator_excl__eq__c2350 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTransform *)cls)->operator!= (arg1)); } @@ -796,7 +796,7 @@ static void _call_f_operator_star__c2350 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform)((QTransform *)cls)->operator* (arg1)); } @@ -815,7 +815,7 @@ static void _call_f_operator_star__eq__2350 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->operator*= (arg1)); } @@ -834,7 +834,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->operator*= (arg1)); } @@ -853,7 +853,7 @@ static void _call_f_operator_plus__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->operator+= (arg1)); } @@ -872,7 +872,7 @@ static void _call_f_operator_minus__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->operator-= (arg1)); } @@ -891,7 +891,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->operator/= (arg1)); } @@ -910,7 +910,7 @@ static void _call_f_operator_eq__2350 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->operator= (arg1)); } @@ -929,7 +929,7 @@ static void _call_f_operator_eq__eq__c2350 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTransform *)cls)->operator== (arg1)); } @@ -966,8 +966,8 @@ static void _call_f_rotate_2117 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::ZAxis)); + double arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::ZAxis), heap); ret.write ((QTransform &)((QTransform *)cls)->rotate (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -988,8 +988,8 @@ static void _call_f_rotateRadians_2117 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::ZAxis)); + double arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::ZAxis), heap); ret.write ((QTransform &)((QTransform *)cls)->rotateRadians (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1010,8 +1010,8 @@ static void _call_f_scale_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->scale (arg1, arg2)); } @@ -1046,15 +1046,15 @@ static void _call_f_setMatrix_8775 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); - double arg7 = args.read (heap); - double arg8 = args.read (heap); - double arg9 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); + double arg7 = gsi::arg_reader() (args, heap); + double arg8 = gsi::arg_reader() (args, heap); + double arg9 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTransform *)cls)->setMatrix (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); } @@ -1076,8 +1076,8 @@ static void _call_f_shear_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->shear (arg1, arg2)); } @@ -1113,8 +1113,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->translate (arg1, arg2)); } @@ -1165,8 +1165,8 @@ static void _call_f_fromScale_2034 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QTransform)QTransform::fromScale (arg1, arg2)); } @@ -1187,8 +1187,8 @@ static void _call_f_fromTranslate_2034 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QTransform)QTransform::fromTranslate (arg1, arg2)); } @@ -1211,9 +1211,9 @@ static void _call_f_quadToQuad_5855 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); - const QPolygonF &arg2 = args.read (heap); - QTransform &arg3 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); + const QPolygonF &arg2 = gsi::arg_reader() (args, heap); + QTransform &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)QTransform::quadToQuad (arg1, arg2, arg3)); } @@ -1234,8 +1234,8 @@ static void _call_f_quadToSquare_3755 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); - QTransform &arg2 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); + QTransform &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QTransform::quadToSquare (arg1, arg2)); } @@ -1256,8 +1256,8 @@ static void _call_f_squareToQuad_3755 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); - QTransform &arg2 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); + QTransform &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QTransform::squareToQuad (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTreeView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTreeView.cc index 3e02aa28d..51ab314f4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTreeView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTreeView.cc @@ -149,7 +149,7 @@ static void _call_f_collapse_2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->collapse (arg1); } @@ -185,7 +185,7 @@ static void _call_f_columnAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView *)cls)->columnAt (arg1)); } @@ -204,7 +204,7 @@ static void _call_f_columnViewportPosition_c767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView *)cls)->columnViewportPosition (arg1)); } @@ -223,7 +223,7 @@ static void _call_f_columnWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView *)cls)->columnWidth (arg1)); } @@ -244,8 +244,8 @@ static void _call_f_dataChanged_4682 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->dataChanged (arg1, arg2); } @@ -281,7 +281,7 @@ static void _call_f_expand_2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->expand (arg1); } @@ -317,7 +317,7 @@ static void _call_f_expandToDepth_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->expandToDepth (arg1); } @@ -367,7 +367,7 @@ static void _call_f_hideColumn_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->hideColumn (arg1); } @@ -402,7 +402,7 @@ static void _call_f_indexAbove_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTreeView *)cls)->indexAbove (arg1)); } @@ -421,7 +421,7 @@ static void _call_f_indexAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTreeView *)cls)->indexAt (arg1)); } @@ -440,7 +440,7 @@ static void _call_f_indexBelow_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTreeView *)cls)->indexBelow (arg1)); } @@ -474,7 +474,7 @@ static void _call_f_isColumnHidden_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView *)cls)->isColumnHidden (arg1)); } @@ -493,7 +493,7 @@ static void _call_f_isExpanded_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView *)cls)->isExpanded (arg1)); } @@ -514,8 +514,8 @@ static void _call_f_isFirstColumnSpanned_c3054 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView *)cls)->isFirstColumnSpanned (arg1, arg2)); } @@ -551,8 +551,8 @@ static void _call_f_isRowHidden_c3054 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView *)cls)->isRowHidden (arg1, arg2)); } @@ -601,7 +601,7 @@ static void _call_f_keyboardSearch_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->keyboardSearch (arg1); } @@ -637,7 +637,7 @@ static void _call_f_resizeColumnToContents_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->resizeColumnToContents (arg1); } @@ -674,8 +674,8 @@ static void _call_f_scrollTo_5576 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->scrollTo (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -711,7 +711,7 @@ static void _call_f_setAllColumnsShowFocus_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setAllColumnsShowFocus (arg1); } @@ -731,7 +731,7 @@ static void _call_f_setAnimated_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setAnimated (arg1); } @@ -751,7 +751,7 @@ static void _call_f_setAutoExpandDelay_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setAutoExpandDelay (arg1); } @@ -773,8 +773,8 @@ static void _call_f_setColumnHidden_1523 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setColumnHidden (arg1, arg2); } @@ -796,8 +796,8 @@ static void _call_f_setColumnWidth_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setColumnWidth (arg1, arg2); } @@ -819,8 +819,8 @@ static void _call_f_setExpanded_3151 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setExpanded (arg1, arg2); } @@ -840,7 +840,7 @@ static void _call_f_setExpandsOnDoubleClick_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setExpandsOnDoubleClick (arg1); } @@ -864,9 +864,9 @@ static void _call_f_setFirstColumnSpanned_3810 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - bool arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + bool arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setFirstColumnSpanned (arg1, arg2, arg3); } @@ -886,7 +886,7 @@ static void _call_f_setHeader_1699 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHeaderView *arg1 = args.read (heap); + QHeaderView *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setHeader (arg1); } @@ -906,7 +906,7 @@ static void _call_f_setHeaderHidden_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setHeaderHidden (arg1); } @@ -926,7 +926,7 @@ static void _call_f_setIndentation_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setIndentation (arg1); } @@ -946,7 +946,7 @@ static void _call_f_setItemsExpandable_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setItemsExpandable (arg1); } @@ -966,7 +966,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setModel (arg1); } @@ -986,7 +986,7 @@ static void _call_f_setRootIndex_2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setRootIndex (arg1); } @@ -1006,7 +1006,7 @@ static void _call_f_setRootIsDecorated_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setRootIsDecorated (arg1); } @@ -1030,9 +1030,9 @@ static void _call_f_setRowHidden_3810 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - bool arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + bool arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setRowHidden (arg1, arg2, arg3); } @@ -1052,7 +1052,7 @@ static void _call_f_setSelectionModel_2533 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setSelectionModel (arg1); } @@ -1072,7 +1072,7 @@ static void _call_f_setSortingEnabled_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setSortingEnabled (arg1); } @@ -1092,7 +1092,7 @@ static void _call_f_setUniformRowHeights_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setUniformRowHeights (arg1); } @@ -1112,7 +1112,7 @@ static void _call_f_setWordWrap_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setWordWrap (arg1); } @@ -1132,7 +1132,7 @@ static void _call_f_showColumn_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->showColumn (arg1); } @@ -1154,8 +1154,8 @@ static void _call_f_sortByColumn_2340 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->sortByColumn (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1175,7 +1175,7 @@ static void _call_f_sortByColumn_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->sortByColumn (arg1); } @@ -1210,7 +1210,7 @@ static void _call_f_visualRect_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTreeView *)cls)->visualRect (arg1)); } @@ -1246,8 +1246,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTreeView::tr (arg1, arg2)); } @@ -1270,9 +1270,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTreeView::tr (arg1, arg2, arg3)); } @@ -1293,8 +1293,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTreeView::trUtf8 (arg1, arg2)); } @@ -1317,9 +1317,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTreeView::trUtf8 (arg1, arg2, arg3)); } @@ -3095,7 +3095,7 @@ static void _call_ctor_QTreeView_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTreeView_Adaptor (arg1)); } @@ -3137,7 +3137,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_activated_2395 (arg1); } @@ -3203,7 +3203,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_clicked_2395 (arg1); } @@ -3272,7 +3272,7 @@ static void _call_emitter_collapsed_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_collapsed_2395 (arg1); } @@ -3292,8 +3292,8 @@ static void _call_fp_columnCountChanged_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_columnCountChanged_1426 (arg1, arg2); } @@ -3331,9 +3331,9 @@ static void _call_fp_columnResized_2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_columnResized_2085 (arg1, arg2, arg3); } @@ -3404,9 +3404,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_create_2208 (arg1, arg2, arg3); } @@ -3452,7 +3452,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_customContextMenuRequested_1916 (arg1); } @@ -3523,8 +3523,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_destroy_1620 (arg1, arg2); } @@ -3543,7 +3543,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_destroyed_1302 (arg1); } @@ -3634,7 +3634,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_doubleClicked_2395 (arg1); } @@ -3754,7 +3754,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_drawFrame_1426 (arg1); } @@ -3805,8 +3805,8 @@ static void _call_fp_drawTree_c3324 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRegion &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRegion &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_drawTree_c3324 (arg1, arg2); } @@ -3964,7 +3964,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_entered_2395 (arg1); } @@ -4046,7 +4046,7 @@ static void _call_emitter_expanded_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_expanded_2395 (arg1); } @@ -4338,7 +4338,7 @@ static void _call_fp_indexRowSizeHint_c2395 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->fp_QTreeView_indexRowSizeHint_c2395 (arg1)); } @@ -4797,7 +4797,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_pressed_2395 (arg1); } @@ -4815,7 +4815,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->fp_QTreeView_receivers_c1731 (arg1)); } @@ -4907,7 +4907,7 @@ static void _call_fp_rowHeight_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->fp_QTreeView_rowHeight_c2395 (arg1)); } @@ -4989,9 +4989,9 @@ static void _call_fp_rowsRemoved_3713 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_rowsRemoved_3713 (arg1, arg2, arg3); } @@ -5054,8 +5054,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_scrollDirtyRegion_1426 (arg1, arg2); } @@ -5207,7 +5207,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_setDirtyRegion_2006 (arg1); } @@ -5226,7 +5226,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_setHorizontalStepsPerItem_767 (arg1); } @@ -5344,7 +5344,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_setState_2776 (arg1); } @@ -5363,7 +5363,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_setVerticalStepsPerItem_767 (arg1); } @@ -5388,10 +5388,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -5410,7 +5410,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_setViewportMargins_2115 (arg1); } @@ -5453,7 +5453,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_setupViewport_1315 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidget.cc index 8002b1f35..2063687cc 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidget.cc @@ -121,7 +121,7 @@ static void _call_f_addTopLevelItem_2114 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->addTopLevelItem (arg1); @@ -142,7 +142,7 @@ static void _call_f_addTopLevelItems_3462 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->addTopLevelItems (arg1); @@ -181,8 +181,8 @@ static void _call_f_closePersistentEditor_2773 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->closePersistentEditor (arg1, arg2); } @@ -202,7 +202,7 @@ static void _call_f_collapseItem_2809 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->collapseItem (arg1); } @@ -269,8 +269,8 @@ static void _call_f_editItem_2773 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->editItem (arg1, arg2); } @@ -290,7 +290,7 @@ static void _call_f_expandItem_2809 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->expandItem (arg1); } @@ -314,9 +314,9 @@ static void _call_f_findItems_c4892 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); - int arg3 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QTreeWidget *)cls)->findItems (arg1, arg2, arg3)); } @@ -350,7 +350,7 @@ static void _call_f_indexOfTopLevelItem_2114 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget *)cls)->indexOfTopLevelItem (arg1)); } @@ -369,7 +369,7 @@ static void _call_f_indexOfTopLevelItem_c2114 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget *)cls)->indexOfTopLevelItem (arg1)); } @@ -390,8 +390,8 @@ static void _call_f_insertTopLevelItem_2773 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QTreeWidgetItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QTreeWidgetItem *arg2 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->insertTopLevelItem (arg1, arg2); @@ -414,8 +414,8 @@ static void _call_f_insertTopLevelItems_4121 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->insertTopLevelItems (arg1, arg2); @@ -451,7 +451,7 @@ static void _call_f_isFirstItemColumnSpanned_c2809 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget *)cls)->isFirstItemColumnSpanned (arg1)); } @@ -470,7 +470,7 @@ static void _call_f_isItemExpanded_c2809 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget *)cls)->isItemExpanded (arg1)); } @@ -489,7 +489,7 @@ static void _call_f_isItemHidden_c2809 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget *)cls)->isItemHidden (arg1)); } @@ -508,7 +508,7 @@ static void _call_f_isItemSelected_c2809 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget *)cls)->isItemSelected (arg1)); } @@ -542,7 +542,7 @@ static void _call_f_itemAbove_c2809 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidget *)cls)->itemAbove (arg1)); } @@ -561,7 +561,7 @@ static void _call_f_itemAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidget *)cls)->itemAt (arg1)); } @@ -582,8 +582,8 @@ static void _call_f_itemAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidget *)cls)->itemAt (arg1, arg2)); } @@ -602,7 +602,7 @@ static void _call_f_itemBelow_c2809 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidget *)cls)->itemBelow (arg1)); } @@ -623,8 +623,8 @@ static void _call_f_itemWidget_c2773 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QTreeWidget *)cls)->itemWidget (arg1, arg2)); } @@ -645,8 +645,8 @@ static void _call_f_openPersistentEditor_2773 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->openPersistentEditor (arg1, arg2); } @@ -668,8 +668,8 @@ static void _call_f_removeItemWidget_2773 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->removeItemWidget (arg1, arg2); } @@ -691,8 +691,8 @@ static void _call_f_scrollToItem_5990 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->scrollToItem (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -727,7 +727,7 @@ static void _call_f_setColumnCount_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setColumnCount (arg1); } @@ -747,7 +747,7 @@ static void _call_f_setCurrentItem_2114 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setCurrentItem (arg1); } @@ -769,8 +769,8 @@ static void _call_f_setCurrentItem_2773 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setCurrentItem (arg1, arg2); } @@ -794,9 +794,9 @@ static void _call_f_setCurrentItem_7136 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setCurrentItem (arg1, arg2, arg3); } @@ -818,8 +818,8 @@ static void _call_f_setFirstItemColumnSpanned_3565 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setFirstItemColumnSpanned (arg1, arg2); } @@ -839,7 +839,7 @@ static void _call_f_setHeaderItem_2114 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setHeaderItem (arg1); } @@ -859,7 +859,7 @@ static void _call_f_setHeaderLabel_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setHeaderLabel (arg1); } @@ -879,7 +879,7 @@ static void _call_f_setHeaderLabels_2437 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setHeaderLabels (arg1); } @@ -901,8 +901,8 @@ static void _call_f_setItemExpanded_3565 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setItemExpanded (arg1, arg2); } @@ -924,8 +924,8 @@ static void _call_f_setItemHidden_3565 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setItemHidden (arg1, arg2); } @@ -947,8 +947,8 @@ static void _call_f_setItemSelected_3565 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setItemSelected (arg1, arg2); } @@ -972,9 +972,9 @@ static void _call_f_setItemWidget_3980 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setItemWidget (arg1, arg2, arg3); } @@ -994,7 +994,7 @@ static void _call_f_setSelectionModel_2533 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setSelectionModel (arg1); } @@ -1014,7 +1014,7 @@ static void _call_f_setSortingEnabled_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setSortingEnabled (arg1); } @@ -1051,8 +1051,8 @@ static void _call_f_sortItems_2340 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->sortItems (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1072,7 +1072,7 @@ static void _call_f_takeTopLevelItem_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidget *)cls)->takeTopLevelItem (arg1)); } @@ -1091,7 +1091,7 @@ static void _call_f_topLevelItem_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidget *)cls)->topLevelItem (arg1)); } @@ -1125,7 +1125,7 @@ static void _call_f_visualItemRect_c2809 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTreeWidget *)cls)->visualItemRect (arg1)); } @@ -1146,8 +1146,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTreeWidget::tr (arg1, arg2)); } @@ -1170,9 +1170,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTreeWidget::tr (arg1, arg2, arg3)); } @@ -1193,8 +1193,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTreeWidget::trUtf8 (arg1, arg2)); } @@ -1217,9 +1217,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTreeWidget::trUtf8 (arg1, arg2, arg3)); } @@ -3120,7 +3120,7 @@ static void _call_ctor_QTreeWidget_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTreeWidget_Adaptor (arg1)); } @@ -3162,7 +3162,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_activated_2395 (arg1); } @@ -3228,7 +3228,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_clicked_2395 (arg1); } @@ -3297,7 +3297,7 @@ static void _call_emitter_collapsed_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_collapsed_2395 (arg1); } @@ -3317,8 +3317,8 @@ static void _call_fp_columnCountChanged_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_columnCountChanged_1426 (arg1, arg2); } @@ -3356,9 +3356,9 @@ static void _call_fp_columnResized_2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_columnResized_2085 (arg1, arg2, arg3); } @@ -3429,9 +3429,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_create_2208 (arg1, arg2, arg3); } @@ -3479,8 +3479,8 @@ static void _call_emitter_currentItemChanged_4120 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - QTreeWidgetItem *arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QTreeWidgetItem *arg2 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_currentItemChanged_4120 (arg1, arg2); } @@ -3498,7 +3498,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_customContextMenuRequested_1916 (arg1); } @@ -3569,8 +3569,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_destroy_1620 (arg1, arg2); } @@ -3589,7 +3589,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_destroyed_1302 (arg1); } @@ -3680,7 +3680,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_doubleClicked_2395 (arg1); } @@ -3800,7 +3800,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_drawFrame_1426 (arg1); } @@ -3851,8 +3851,8 @@ static void _call_fp_drawTree_c3324 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRegion &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRegion &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_drawTree_c3324 (arg1, arg2); } @@ -4042,7 +4042,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_entered_2395 (arg1); } @@ -4124,7 +4124,7 @@ static void _call_emitter_expanded_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_expanded_2395 (arg1); } @@ -4418,8 +4418,8 @@ static void _call_fp_indexFromItem_c2773 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_indexFromItem_c2773 (arg1, arg2)); } @@ -4437,7 +4437,7 @@ static void _call_fp_indexRowSizeHint_c2395 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_indexRowSizeHint_c2395 (arg1)); } @@ -4527,8 +4527,8 @@ static void _call_emitter_itemActivated_2773 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemActivated_2773 (arg1, arg2); } @@ -4548,8 +4548,8 @@ static void _call_emitter_itemChanged_2773 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemChanged_2773 (arg1, arg2); } @@ -4569,8 +4569,8 @@ static void _call_emitter_itemClicked_2773 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemClicked_2773 (arg1, arg2); } @@ -4588,7 +4588,7 @@ static void _call_emitter_itemCollapsed_2114 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemCollapsed_2114 (arg1); } @@ -4608,8 +4608,8 @@ static void _call_emitter_itemDoubleClicked_2773 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemDoubleClicked_2773 (arg1, arg2); } @@ -4629,8 +4629,8 @@ static void _call_emitter_itemEntered_2773 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemEntered_2773 (arg1, arg2); } @@ -4648,7 +4648,7 @@ static void _call_emitter_itemExpanded_2114 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemExpanded_2114 (arg1); } @@ -4666,7 +4666,7 @@ static void _call_fp_itemFromIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_itemFromIndex_c2395 (arg1)); } @@ -4686,8 +4686,8 @@ static void _call_emitter_itemPressed_2773 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemPressed_2773 (arg1, arg2); } @@ -4719,7 +4719,7 @@ static void _call_fp_items_c2168 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_items_c2168 (arg1)); } @@ -5150,7 +5150,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_pressed_2395 (arg1); } @@ -5168,7 +5168,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_receivers_c1731 (arg1)); } @@ -5260,7 +5260,7 @@ static void _call_fp_rowHeight_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_rowHeight_c2395 (arg1)); } @@ -5342,9 +5342,9 @@ static void _call_fp_rowsRemoved_3713 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_rowsRemoved_3713 (arg1, arg2, arg3); } @@ -5407,8 +5407,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_scrollDirtyRegion_1426 (arg1, arg2); } @@ -5560,7 +5560,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_setDirtyRegion_2006 (arg1); } @@ -5579,7 +5579,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_setHorizontalStepsPerItem_767 (arg1); } @@ -5673,7 +5673,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_setState_2776 (arg1); } @@ -5692,7 +5692,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_setVerticalStepsPerItem_767 (arg1); } @@ -5717,10 +5717,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -5739,7 +5739,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_setViewportMargins_2115 (arg1); } @@ -5782,7 +5782,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_setupViewport_1315 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidgetItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidgetItem.cc index d24ca76e5..57a0124c0 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidgetItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidgetItem.cc @@ -57,7 +57,7 @@ static void _call_f_addChild_2114 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->addChild (arg1); @@ -78,7 +78,7 @@ static void _call_f_addChildren_3462 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->addChildren (arg1); @@ -99,7 +99,7 @@ static void _call_f_background_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QBrush)((QTreeWidgetItem *)cls)->background (arg1)); } @@ -118,7 +118,7 @@ static void _call_f_backgroundColor_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor)((QTreeWidgetItem *)cls)->backgroundColor (arg1)); } @@ -137,7 +137,7 @@ static void _call_f_checkState_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QTreeWidgetItem *)cls)->checkState (arg1))); } @@ -156,7 +156,7 @@ static void _call_f_child_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidgetItem *)cls)->child (arg1)); } @@ -237,8 +237,8 @@ static void _call_f_data_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTreeWidgetItem *)cls)->data (arg1, arg2)); } @@ -272,7 +272,7 @@ static void _call_f_font_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QFont)((QTreeWidgetItem *)cls)->font (arg1)); } @@ -291,7 +291,7 @@ static void _call_f_foreground_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QBrush)((QTreeWidgetItem *)cls)->foreground (arg1)); } @@ -310,7 +310,7 @@ static void _call_f_icon_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QTreeWidgetItem *)cls)->icon (arg1)); } @@ -329,7 +329,7 @@ static void _call_f_indexOfChild_c2114 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidgetItem *)cls)->indexOfChild (arg1)); } @@ -350,8 +350,8 @@ static void _call_f_insertChild_2773 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QTreeWidgetItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QTreeWidgetItem *arg2 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->insertChild (arg1, arg2); @@ -374,8 +374,8 @@ static void _call_f_insertChildren_4121 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->insertChildren (arg1, arg2); @@ -471,7 +471,7 @@ static void _call_f_operator_lt__c2805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem &arg1 = args.read (heap); + const QTreeWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidgetItem *)cls)->operator< (arg1)); } @@ -490,7 +490,7 @@ static void _call_f_operator_eq__2805 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem &arg1 = args.read (heap); + const QTreeWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem &)((QTreeWidgetItem *)cls)->operator= (arg1)); } @@ -524,7 +524,7 @@ static void _call_f_read_1697 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->read (arg1); } @@ -544,7 +544,7 @@ static void _call_f_removeChild_2114 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->removeChild (arg1); } @@ -566,8 +566,8 @@ static void _call_f_setBackground_2569 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QBrush &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setBackground (arg1, arg2); } @@ -589,8 +589,8 @@ static void _call_f_setBackgroundColor_2564 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setBackgroundColor (arg1, arg2); } @@ -612,8 +612,8 @@ static void _call_f_setCheckState_2399 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setCheckState (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -633,7 +633,7 @@ static void _call_f_setChildIndicatorPolicy_4077 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setChildIndicatorPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -657,9 +657,9 @@ static void _call_f_setData_3437 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setData (arg1, arg2, arg3); } @@ -679,7 +679,7 @@ static void _call_f_setDisabled_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setDisabled (arg1); } @@ -699,7 +699,7 @@ static void _call_f_setExpanded_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setExpanded (arg1); } @@ -719,7 +719,7 @@ static void _call_f_setFirstColumnSpanned_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setFirstColumnSpanned (arg1); } @@ -739,7 +739,7 @@ static void _call_f_setFlags_2222 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setFlags (arg1); } @@ -761,8 +761,8 @@ static void _call_f_setFont_2460 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QFont &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QFont &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setFont (arg1, arg2); } @@ -784,8 +784,8 @@ static void _call_f_setForeground_2569 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QBrush &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setForeground (arg1, arg2); } @@ -805,7 +805,7 @@ static void _call_f_setHidden_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setHidden (arg1); } @@ -827,8 +827,8 @@ static void _call_f_setIcon_2446 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setIcon (arg1, arg2); } @@ -848,7 +848,7 @@ static void _call_f_setSelected_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setSelected (arg1); } @@ -870,8 +870,8 @@ static void _call_f_setSizeHint_2464 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setSizeHint (arg1, arg2); } @@ -893,8 +893,8 @@ static void _call_f_setStatusTip_2684 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setStatusTip (arg1, arg2); } @@ -916,8 +916,8 @@ static void _call_f_setText_2684 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setText (arg1, arg2); } @@ -939,8 +939,8 @@ static void _call_f_setTextAlignment_1426 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setTextAlignment (arg1, arg2); } @@ -962,8 +962,8 @@ static void _call_f_setTextColor_2564 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setTextColor (arg1, arg2); } @@ -985,8 +985,8 @@ static void _call_f_setToolTip_2684 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setToolTip (arg1, arg2); } @@ -1008,8 +1008,8 @@ static void _call_f_setWhatsThis_2684 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setWhatsThis (arg1, arg2); } @@ -1029,7 +1029,7 @@ static void _call_f_sizeHint_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QTreeWidgetItem *)cls)->sizeHint (arg1)); } @@ -1050,8 +1050,8 @@ static void _call_f_sortChildren_2340 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->sortChildren (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1071,7 +1071,7 @@ static void _call_f_statusTip_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTreeWidgetItem *)cls)->statusTip (arg1)); } @@ -1090,7 +1090,7 @@ static void _call_f_takeChild_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidgetItem *)cls)->takeChild (arg1)); } @@ -1124,7 +1124,7 @@ static void _call_f_text_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTreeWidgetItem *)cls)->text (arg1)); } @@ -1143,7 +1143,7 @@ static void _call_f_textAlignment_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidgetItem *)cls)->textAlignment (arg1)); } @@ -1162,7 +1162,7 @@ static void _call_f_textColor_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor)((QTreeWidgetItem *)cls)->textColor (arg1)); } @@ -1181,7 +1181,7 @@ static void _call_f_toolTip_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTreeWidgetItem *)cls)->toolTip (arg1)); } @@ -1230,7 +1230,7 @@ static void _call_f_whatsThis_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTreeWidgetItem *)cls)->whatsThis (arg1)); } @@ -1249,7 +1249,7 @@ static void _call_f_write_c1697 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->write (arg1); } @@ -1554,7 +1554,7 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_767 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); ret.write (new QTreeWidgetItem_Adaptor (arg1)); } @@ -1574,8 +1574,8 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_3096 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); ret.write (new QTreeWidgetItem_Adaptor (arg1, arg2)); } @@ -1595,8 +1595,8 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_2374 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidget *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + QTreeWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); QTreeWidgetItem_Adaptor *obj = new QTreeWidgetItem_Adaptor (arg1, arg2); if (arg1) { qt_gsi::qt_keep (obj); @@ -1622,9 +1622,9 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_4703 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidget *arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + QTreeWidget *arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); QTreeWidgetItem_Adaptor *obj = new QTreeWidgetItem_Adaptor (arg1, arg2, arg3); if (arg1) { qt_gsi::qt_keep (obj); @@ -1650,9 +1650,9 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_4380 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidget *arg1 = args.read (heap); - QTreeWidgetItem *arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + QTreeWidget *arg1 = gsi::arg_reader() (args, heap); + QTreeWidgetItem *arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); QTreeWidgetItem_Adaptor *obj = new QTreeWidgetItem_Adaptor (arg1, arg2, arg3); if (arg1) { qt_gsi::qt_keep (obj); @@ -1676,8 +1676,8 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_2773 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); QTreeWidgetItem_Adaptor *obj = new QTreeWidgetItem_Adaptor (arg1, arg2); if (arg1) { qt_gsi::qt_keep (obj); @@ -1703,9 +1703,9 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_5102 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); QTreeWidgetItem_Adaptor *obj = new QTreeWidgetItem_Adaptor (arg1, arg2, arg3); if (arg1) { qt_gsi::qt_keep (obj); @@ -1731,9 +1731,9 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_4779 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - QTreeWidgetItem *arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QTreeWidgetItem *arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); QTreeWidgetItem_Adaptor *obj = new QTreeWidgetItem_Adaptor (arg1, arg2, arg3); if (arg1) { qt_gsi::qt_keep (obj); diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidgetItemIterator.cc b/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidgetItemIterator.cc index 545609377..aa9fdbd95 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidgetItemIterator.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQTreeWidgetItemIterator.cc @@ -52,7 +52,7 @@ static void _call_ctor_QTreeWidgetItemIterator_3647 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItemIterator &arg1 = args.read (heap); + const QTreeWidgetItemIterator &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTreeWidgetItemIterator (arg1)); } @@ -73,8 +73,8 @@ static void _call_ctor_QTreeWidgetItemIterator_6409 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidget *arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QTreeWidgetItemIterator::All); + QTreeWidget *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QTreeWidgetItemIterator::All, heap); ret.write (new QTreeWidgetItemIterator (arg1, arg2)); } @@ -95,8 +95,8 @@ static void _call_ctor_QTreeWidgetItemIterator_6808 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QTreeWidgetItemIterator::All); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QTreeWidgetItemIterator::All, heap); ret.write (new QTreeWidgetItemIterator (arg1, arg2)); } @@ -145,7 +145,7 @@ static void _call_f_operator_plus__plus__767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const QTreeWidgetItemIterator)((QTreeWidgetItemIterator *)cls)->operator++ (arg1)); } @@ -164,7 +164,7 @@ static void _call_f_operator_plus__eq__767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItemIterator &)((QTreeWidgetItemIterator *)cls)->operator+= (arg1)); } @@ -198,7 +198,7 @@ static void _call_f_operator_minus__minus__767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const QTreeWidgetItemIterator)((QTreeWidgetItemIterator *)cls)->operator-- (arg1)); } @@ -217,7 +217,7 @@ static void _call_f_operator_minus__eq__767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItemIterator &)((QTreeWidgetItemIterator *)cls)->operator-= (arg1)); } @@ -236,7 +236,7 @@ static void _call_f_operator_eq__3647 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItemIterator &arg1 = args.read (heap); + const QTreeWidgetItemIterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItemIterator &)((QTreeWidgetItemIterator *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQUndoCommand.cc b/src/gsiqt/qt4/QtGui/gsiDeclQUndoCommand.cc index 88e66bcd9..5e31261b7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQUndoCommand.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQUndoCommand.cc @@ -50,7 +50,7 @@ static void _call_f_child_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const QUndoCommand *)((QUndoCommand *)cls)->child (arg1)); } @@ -99,7 +99,7 @@ static void _call_f_mergeWith_2507 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUndoCommand *arg1 = args.read (heap); + const QUndoCommand *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoCommand *)cls)->mergeWith (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoCommand *)cls)->setText (arg1); } @@ -307,7 +307,7 @@ static void _call_ctor_QUndoCommand_Adaptor_1812 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoCommand *arg1 = args ? args.read (heap) : (QUndoCommand *)(0); + QUndoCommand *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUndoCommand_Adaptor (arg1)); } @@ -327,8 +327,8 @@ static void _call_ctor_QUndoCommand_Adaptor_3729 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QUndoCommand *arg2 = args ? args.read (heap) : (QUndoCommand *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QUndoCommand *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUndoCommand_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQUndoGroup.cc b/src/gsiqt/qt4/QtGui/gsiDeclQUndoGroup.cc index 576d59058..e1858ee0f 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQUndoGroup.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQUndoGroup.cc @@ -85,7 +85,7 @@ static void _call_f_addStack_1611 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoStack *arg1 = args.read (heap); + QUndoStack *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup *)cls)->addStack (arg1); } @@ -137,8 +137,8 @@ static void _call_f_createRedoAction_c3219 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QAction *)((QUndoGroup *)cls)->createRedoAction (arg1, arg2)); } @@ -159,8 +159,8 @@ static void _call_f_createUndoAction_c3219 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QAction *)((QUndoGroup *)cls)->createUndoAction (arg1, arg2)); } @@ -225,7 +225,7 @@ static void _call_f_removeStack_1611 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoStack *arg1 = args.read (heap); + QUndoStack *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup *)cls)->removeStack (arg1); } @@ -245,7 +245,7 @@ static void _call_f_setActiveStack_1611 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoStack *arg1 = args.read (heap); + QUndoStack *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup *)cls)->setActiveStack (arg1); } @@ -313,8 +313,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QUndoGroup::tr (arg1, arg2)); } @@ -337,9 +337,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QUndoGroup::tr (arg1, arg2, arg3)); } @@ -360,8 +360,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QUndoGroup::trUtf8 (arg1, arg2)); } @@ -384,9 +384,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QUndoGroup::trUtf8 (arg1, arg2, arg3)); } @@ -626,7 +626,7 @@ static void _call_ctor_QUndoGroup_Adaptor_1302 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUndoGroup_Adaptor (arg1)); } @@ -644,7 +644,7 @@ static void _call_emitter_activeStackChanged_1611 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoStack *arg1 = args.read (heap); + QUndoStack *arg1 = gsi::arg_reader() (args, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_activeStackChanged_1611 (arg1); } @@ -662,7 +662,7 @@ static void _call_emitter_canRedoChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_canRedoChanged_864 (arg1); } @@ -680,7 +680,7 @@ static void _call_emitter_canUndoChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_canUndoChanged_864 (arg1); } @@ -722,7 +722,7 @@ static void _call_emitter_cleanChanged_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_cleanChanged_864 (arg1); } @@ -764,7 +764,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_destroyed_1302 (arg1); } @@ -855,7 +855,7 @@ static void _call_emitter_indexChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_indexChanged_767 (arg1); } @@ -873,7 +873,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUndoGroup_Adaptor *)cls)->fp_QUndoGroup_receivers_c1731 (arg1)); } @@ -891,7 +891,7 @@ static void _call_emitter_redoTextChanged_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_redoTextChanged_2025 (arg1); } @@ -947,7 +947,7 @@ static void _call_emitter_undoTextChanged_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_undoTextChanged_2025 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQUndoStack.cc b/src/gsiqt/qt4/QtGui/gsiDeclQUndoStack.cc index 84445f553..099c122b3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQUndoStack.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQUndoStack.cc @@ -70,7 +70,7 @@ static void _call_f_beginMacro_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack *)cls)->beginMacro (arg1); } @@ -151,7 +151,7 @@ static void _call_f_command_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const QUndoCommand *)((QUndoStack *)cls)->command (arg1)); } @@ -187,8 +187,8 @@ static void _call_f_createRedoAction_c3219 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QAction *)((QUndoStack *)cls)->createRedoAction (arg1, arg2)); } @@ -209,8 +209,8 @@ static void _call_f_createUndoAction_c3219 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QAction *)((QUndoStack *)cls)->createUndoAction (arg1, arg2)); } @@ -290,7 +290,7 @@ static void _call_f_push_1812 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoCommand *arg1 = args.read (heap); + QUndoCommand *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack *)cls)->push (arg1); } @@ -341,7 +341,7 @@ static void _call_f_setActive_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack *)cls)->setActive (arg1); } @@ -377,7 +377,7 @@ static void _call_f_setIndex_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack *)cls)->setIndex (arg1); } @@ -397,7 +397,7 @@ static void _call_f_setUndoLimit_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack *)cls)->setUndoLimit (arg1); } @@ -417,7 +417,7 @@ static void _call_f_text_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QUndoStack *)cls)->text (arg1)); } @@ -484,8 +484,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QUndoStack::tr (arg1, arg2)); } @@ -508,9 +508,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QUndoStack::tr (arg1, arg2, arg3)); } @@ -531,8 +531,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QUndoStack::trUtf8 (arg1, arg2)); } @@ -555,9 +555,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QUndoStack::trUtf8 (arg1, arg2, arg3)); } @@ -800,7 +800,7 @@ static void _call_ctor_QUndoStack_Adaptor_1302 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUndoStack_Adaptor (arg1)); } @@ -818,7 +818,7 @@ static void _call_emitter_canRedoChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QUndoStack_Adaptor *)cls)->emitter_QUndoStack_canRedoChanged_864 (arg1); } @@ -836,7 +836,7 @@ static void _call_emitter_canUndoChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QUndoStack_Adaptor *)cls)->emitter_QUndoStack_canUndoChanged_864 (arg1); } @@ -878,7 +878,7 @@ static void _call_emitter_cleanChanged_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QUndoStack_Adaptor *)cls)->emitter_QUndoStack_cleanChanged_864 (arg1); } @@ -920,7 +920,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QUndoStack_Adaptor *)cls)->emitter_QUndoStack_destroyed_1302 (arg1); } @@ -1011,7 +1011,7 @@ static void _call_emitter_indexChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QUndoStack_Adaptor *)cls)->emitter_QUndoStack_indexChanged_767 (arg1); } @@ -1029,7 +1029,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUndoStack_Adaptor *)cls)->fp_QUndoStack_receivers_c1731 (arg1)); } @@ -1047,7 +1047,7 @@ static void _call_emitter_redoTextChanged_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QUndoStack_Adaptor *)cls)->emitter_QUndoStack_redoTextChanged_2025 (arg1); } @@ -1103,7 +1103,7 @@ static void _call_emitter_undoTextChanged_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QUndoStack_Adaptor *)cls)->emitter_QUndoStack_undoTextChanged_2025 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQUndoView.cc b/src/gsiqt/qt4/QtGui/gsiDeclQUndoView.cc index 2c03582b2..ce4a07524 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQUndoView.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQUndoView.cc @@ -165,7 +165,7 @@ static void _call_f_setCleanIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView *)cls)->setCleanIcon (arg1); } @@ -185,7 +185,7 @@ static void _call_f_setEmptyLabel_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView *)cls)->setEmptyLabel (arg1); } @@ -205,7 +205,7 @@ static void _call_f_setGroup_1634 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoGroup *arg1 = args.read (heap); + QUndoGroup *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView *)cls)->setGroup (arg1); } @@ -225,7 +225,7 @@ static void _call_f_setStack_1611 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoStack *arg1 = args.read (heap); + QUndoStack *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView *)cls)->setStack (arg1); } @@ -262,8 +262,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QUndoView::tr (arg1, arg2)); } @@ -286,9 +286,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QUndoView::tr (arg1, arg2, arg3)); } @@ -309,8 +309,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QUndoView::trUtf8 (arg1, arg2)); } @@ -333,9 +333,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QUndoView::trUtf8 (arg1, arg2, arg3)); } @@ -2035,7 +2035,7 @@ static void _call_ctor_QUndoView_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUndoView_Adaptor (arg1)); } @@ -2055,8 +2055,8 @@ static void _call_ctor_QUndoView_Adaptor_2818 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoStack *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QUndoStack *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUndoView_Adaptor (arg1, arg2)); } @@ -2076,8 +2076,8 @@ static void _call_ctor_QUndoView_Adaptor_2841 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoGroup *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QUndoGroup *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUndoView_Adaptor (arg1, arg2)); } @@ -2119,7 +2119,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_activated_2395 (arg1); } @@ -2185,7 +2185,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_clicked_2395 (arg1); } @@ -2320,9 +2320,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_create_2208 (arg1, arg2, arg3); } @@ -2368,7 +2368,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_customContextMenuRequested_1916 (arg1); } @@ -2439,8 +2439,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_destroy_1620 (arg1, arg2); } @@ -2459,7 +2459,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_destroyed_1302 (arg1); } @@ -2550,7 +2550,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_doubleClicked_2395 (arg1); } @@ -2640,7 +2640,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_drawFrame_1426 (arg1); } @@ -2798,7 +2798,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_entered_2395 (arg1); } @@ -3154,7 +3154,7 @@ static void _call_emitter_indexesMoved_3010 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_indexesMoved_3010 (arg1); } @@ -3219,7 +3219,7 @@ static void _call_fp_internalDrag_2456 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_internalDrag_2456 (arg1); } @@ -3238,7 +3238,7 @@ static void _call_fp_internalDrop_1622 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_internalDrop_1622 (arg1); } @@ -3651,7 +3651,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_pressed_2395 (arg1); } @@ -3669,7 +3669,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUndoView_Adaptor *)cls)->fp_QUndoView_receivers_c1731 (arg1)); } @@ -3687,7 +3687,7 @@ static void _call_fp_rectForIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QUndoView_Adaptor *)cls)->fp_QUndoView_rectForIndex_c2395 (arg1)); } @@ -3742,8 +3742,8 @@ static void _call_fp_resizeContents_1426 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_resizeContents_1426 (arg1, arg2); } @@ -3890,8 +3890,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_scrollDirtyRegion_1426 (arg1, arg2); } @@ -4043,7 +4043,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_setDirtyRegion_2006 (arg1); } @@ -4062,7 +4062,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_setHorizontalStepsPerItem_767 (arg1); } @@ -4107,8 +4107,8 @@ static void _call_fp_setPositionForIndex_4203 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_setPositionForIndex_4203 (arg1, arg2); } @@ -4202,7 +4202,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_setState_2776 (arg1); } @@ -4221,7 +4221,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_setVerticalStepsPerItem_767 (arg1); } @@ -4246,10 +4246,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -4268,7 +4268,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_setViewportMargins_2115 (arg1); } @@ -4311,7 +4311,7 @@ static void _call_fp_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_setupViewport_1315 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQUnixPrintWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQUnixPrintWidget.cc index 0e584d9f5..8e056c34b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQUnixPrintWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQUnixPrintWidget.cc @@ -130,8 +130,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QUnixPrintWidget::tr (arg1, arg2)); } @@ -154,9 +154,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QUnixPrintWidget::tr (arg1, arg2, arg3)); } @@ -177,8 +177,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QUnixPrintWidget::trUtf8 (arg1, arg2)); } @@ -201,9 +201,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QUnixPrintWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1056,8 +1056,8 @@ static void _call_ctor_QUnixPrintWidget_Adaptor_2650 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QPrinter *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUnixPrintWidget_Adaptor (arg1, arg2)); } @@ -1199,9 +1199,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->fp_QUnixPrintWidget_create_2208 (arg1, arg2, arg3); } @@ -1220,7 +1220,7 @@ static void _call_fp_customContextMenuRequested_1916 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->fp_QUnixPrintWidget_customContextMenuRequested_1916 (arg1); } @@ -1265,8 +1265,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->fp_QUnixPrintWidget_destroy_1620 (arg1, arg2); } @@ -1285,7 +1285,7 @@ static void _call_fp_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUnixPrintWidget_Adaptor *)cls)->fp_QUnixPrintWidget_destroyed_1302 (arg1); } @@ -2059,7 +2059,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUnixPrintWidget_Adaptor *)cls)->fp_QUnixPrintWidget_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQVBoxLayout.cc b/src/gsiqt/qt4/QtGui/gsiDeclQVBoxLayout.cc index c28e54017..74f369911 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQVBoxLayout.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQVBoxLayout.cc @@ -77,8 +77,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QVBoxLayout::tr (arg1, arg2)); } @@ -101,9 +101,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QVBoxLayout::tr (arg1, arg2, arg3)); } @@ -124,8 +124,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QVBoxLayout::trUtf8 (arg1, arg2)); } @@ -148,9 +148,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QVBoxLayout::trUtf8 (arg1, arg2, arg3)); } @@ -670,7 +670,7 @@ static void _call_ctor_QVBoxLayout_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QVBoxLayout_Adaptor (arg1)); } @@ -688,7 +688,7 @@ static void _call_fp_addChildLayout_1341 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->fp_QVBoxLayout_addChildLayout_1341 (arg1); @@ -708,7 +708,7 @@ static void _call_fp_addChildWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->fp_QVBoxLayout_addChildWidget_1315 (arg1); } @@ -751,7 +751,7 @@ static void _call_fp_alignmentRect_c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QVBoxLayout_Adaptor *)cls)->fp_QVBoxLayout_alignmentRect_c1792 (arg1)); } @@ -836,7 +836,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QVBoxLayout_Adaptor *)cls)->emitter_QVBoxLayout_destroyed_1302 (arg1); } @@ -1032,8 +1032,8 @@ static void _call_fp_insertItem_2399 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QLayoutItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QLayoutItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->fp_QVBoxLayout_insertItem_2399 (arg1, arg2); } @@ -1194,7 +1194,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVBoxLayout_Adaptor *)cls)->fp_QVBoxLayout_receivers_c1731 (arg1)); } @@ -1354,7 +1354,7 @@ static void _call_fp_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->fp_QVBoxLayout_widgetEvent_1217 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQValidator.cc b/src/gsiqt/qt4/QtGui/gsiDeclQValidator.cc index f718cb487..3462dbea9 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQValidator.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQValidator.cc @@ -69,7 +69,7 @@ static void _call_f_fixup_c1330 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator *)cls)->fixup (arg1); } @@ -104,7 +104,7 @@ static void _call_f_setLocale_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator *)cls)->setLocale (arg1); } @@ -126,8 +126,8 @@ static void _call_f_validate_c2171 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QValidator *)cls)->validate (arg1, arg2))); } @@ -148,8 +148,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QValidator::tr (arg1, arg2)); } @@ -172,9 +172,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QValidator::tr (arg1, arg2, arg3)); } @@ -195,8 +195,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QValidator::trUtf8 (arg1, arg2)); } @@ -219,9 +219,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QValidator::trUtf8 (arg1, arg2, arg3)); } @@ -436,7 +436,7 @@ static void _call_ctor_QValidator_Adaptor_1302 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QValidator_Adaptor (arg1)); } @@ -502,7 +502,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QValidator_Adaptor *)cls)->emitter_QValidator_destroyed_1302 (arg1); } @@ -617,7 +617,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QValidator_Adaptor *)cls)->fp_QValidator_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQVector2D.cc b/src/gsiqt/qt4/QtGui/gsiDeclQVector2D.cc index 5ebae12dd..4c4c31b1c 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQVector2D.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQVector2D.cc @@ -71,8 +71,8 @@ static void _call_ctor_QVector2D_2034 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write (new QVector2D (arg1, arg2)); } @@ -91,7 +91,7 @@ static void _call_ctor_QVector2D_1916 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector2D (arg1)); } @@ -110,7 +110,7 @@ static void _call_ctor_QVector2D_1986 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector2D (arg1)); } @@ -129,7 +129,7 @@ static void _call_ctor_QVector2D_2140 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector2D (arg1)); } @@ -148,7 +148,7 @@ static void _call_ctor_QVector2D_2141 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector2D (arg1)); } @@ -243,7 +243,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector2D &)((QVector2D *)cls)->operator*= (arg1)); } @@ -262,7 +262,7 @@ static void _call_f_operator_star__eq__2139 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector2D &)((QVector2D *)cls)->operator*= (arg1)); } @@ -281,7 +281,7 @@ static void _call_f_operator_plus__eq__2139 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector2D &)((QVector2D *)cls)->operator+= (arg1)); } @@ -300,7 +300,7 @@ static void _call_f_operator_minus__eq__2139 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector2D &)((QVector2D *)cls)->operator-= (arg1)); } @@ -319,7 +319,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector2D &)((QVector2D *)cls)->operator/= (arg1)); } @@ -338,7 +338,7 @@ static void _call_f_setX_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector2D *)cls)->setX (arg1); } @@ -358,7 +358,7 @@ static void _call_f_setY_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector2D *)cls)->setY (arg1); } @@ -470,8 +470,8 @@ static void _call_f_dotProduct_4170 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); - const QVector2D &arg2 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); + const QVector2D &arg2 = gsi::arg_reader() (args, heap); ret.write ((double)QVector2D::dotProduct (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQVector3D.cc b/src/gsiqt/qt4/QtGui/gsiDeclQVector3D.cc index d2268c974..db61b24ac 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQVector3D.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQVector3D.cc @@ -71,9 +71,9 @@ static void _call_ctor_QVector3D_2997 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write (new QVector3D (arg1, arg2, arg3)); } @@ -92,7 +92,7 @@ static void _call_ctor_QVector3D_1916 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector3D (arg1)); } @@ -111,7 +111,7 @@ static void _call_ctor_QVector3D_1986 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector3D (arg1)); } @@ -130,7 +130,7 @@ static void _call_ctor_QVector3D_2139 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector3D (arg1)); } @@ -151,8 +151,8 @@ static void _call_ctor_QVector3D_3102 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); - double arg2 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write (new QVector3D (arg1, arg2)); } @@ -171,7 +171,7 @@ static void _call_ctor_QVector3D_2141 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector3D (arg1)); } @@ -192,8 +192,8 @@ static void _call_f_distanceToLine_c4172 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); ret.write ((double)((QVector3D *)cls)->distanceToLine (arg1, arg2)); } @@ -214,8 +214,8 @@ static void _call_f_distanceToPlane_c4172 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); ret.write ((double)((QVector3D *)cls)->distanceToPlane (arg1, arg2)); } @@ -238,9 +238,9 @@ static void _call_f_distanceToPlane_c6204 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); - const QVector3D &arg3 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); + const QVector3D &arg3 = gsi::arg_reader() (args, heap); ret.write ((double)((QVector3D *)cls)->distanceToPlane (arg1, arg2, arg3)); } @@ -335,7 +335,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D &)((QVector3D *)cls)->operator*= (arg1)); } @@ -354,7 +354,7 @@ static void _call_f_operator_star__eq__2140 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D &)((QVector3D *)cls)->operator*= (arg1)); } @@ -373,7 +373,7 @@ static void _call_f_operator_plus__eq__2140 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D &)((QVector3D *)cls)->operator+= (arg1)); } @@ -392,7 +392,7 @@ static void _call_f_operator_minus__eq__2140 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D &)((QVector3D *)cls)->operator-= (arg1)); } @@ -411,7 +411,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D &)((QVector3D *)cls)->operator/= (arg1)); } @@ -430,7 +430,7 @@ static void _call_f_setX_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector3D *)cls)->setX (arg1); } @@ -450,7 +450,7 @@ static void _call_f_setY_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector3D *)cls)->setY (arg1); } @@ -470,7 +470,7 @@ static void _call_f_setZ_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector3D *)cls)->setZ (arg1); } @@ -597,8 +597,8 @@ static void _call_f_crossProduct_4172 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVector3D)QVector3D::crossProduct (arg1, arg2)); } @@ -619,8 +619,8 @@ static void _call_f_dotProduct_4172 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); ret.write ((double)QVector3D::dotProduct (arg1, arg2)); } @@ -641,8 +641,8 @@ static void _call_f_normal_4172 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVector3D)QVector3D::normal (arg1, arg2)); } @@ -665,9 +665,9 @@ static void _call_f_normal_6204 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); - const QVector3D &arg3 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); + const QVector3D &arg3 = gsi::arg_reader() (args, heap); ret.write ((QVector3D)QVector3D::normal (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQVector4D.cc b/src/gsiqt/qt4/QtGui/gsiDeclQVector4D.cc index 4c8f38838..1c283e0df 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQVector4D.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQVector4D.cc @@ -73,10 +73,10 @@ static void _call_ctor_QVector4D_3960 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write (new QVector4D (arg1, arg2, arg3, arg4)); } @@ -95,7 +95,7 @@ static void _call_ctor_QVector4D_1916 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector4D (arg1)); } @@ -114,7 +114,7 @@ static void _call_ctor_QVector4D_1986 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector4D (arg1)); } @@ -133,7 +133,7 @@ static void _call_ctor_QVector4D_2139 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector4D (arg1)); } @@ -156,9 +156,9 @@ static void _call_ctor_QVector4D_4065 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write (new QVector4D (arg1, arg2, arg3)); } @@ -177,7 +177,7 @@ static void _call_ctor_QVector4D_2140 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector4D (arg1)); } @@ -198,8 +198,8 @@ static void _call_ctor_QVector4D_3103 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - double arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write (new QVector4D (arg1, arg2)); } @@ -294,7 +294,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D &)((QVector4D *)cls)->operator*= (arg1)); } @@ -313,7 +313,7 @@ static void _call_f_operator_star__eq__2141 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D &)((QVector4D *)cls)->operator*= (arg1)); } @@ -332,7 +332,7 @@ static void _call_f_operator_plus__eq__2141 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D &)((QVector4D *)cls)->operator+= (arg1)); } @@ -351,7 +351,7 @@ static void _call_f_operator_minus__eq__2141 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D &)((QVector4D *)cls)->operator-= (arg1)); } @@ -370,7 +370,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D &)((QVector4D *)cls)->operator/= (arg1)); } @@ -389,7 +389,7 @@ static void _call_f_setW_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector4D *)cls)->setW (arg1); } @@ -409,7 +409,7 @@ static void _call_f_setX_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector4D *)cls)->setX (arg1); } @@ -429,7 +429,7 @@ static void _call_f_setY_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector4D *)cls)->setY (arg1); } @@ -449,7 +449,7 @@ static void _call_f_setZ_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector4D *)cls)->setZ (arg1); } @@ -621,8 +621,8 @@ static void _call_f_dotProduct_4174 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); - const QVector4D &arg2 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); + const QVector4D &arg2 = gsi::arg_reader() (args, heap); ret.write ((double)QVector4D::dotProduct (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWhatsThis.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWhatsThis.cc index d8fead706..deb99112b 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWhatsThis.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWhatsThis.cc @@ -54,7 +54,7 @@ static void _call_f_createAction_1302 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QAction *)QWhatsThis::createAction (arg1)); } @@ -140,9 +140,9 @@ static void _call_f_showText_5040 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); QWhatsThis::showText (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWhatsThisClickedEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWhatsThisClickedEvent.cc index 150bb78de..8cf03dfce 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWhatsThisClickedEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWhatsThisClickedEvent.cc @@ -101,7 +101,7 @@ static void _call_ctor_QWhatsThisClickedEvent_Adaptor_2025 (const qt_gsi::Generi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QWhatsThisClickedEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWheelEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWheelEvent.cc index a23590de2..7976e41c2 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWheelEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWheelEvent.cc @@ -256,11 +256,11 @@ static void _call_ctor_QWheelEvent_Adaptor_9843 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - int arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); - QFlags arg4 = args.read > (heap); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::Vertical)); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); + QFlags arg4 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::Vertical), heap); ret.write (new QWheelEvent_Adaptor (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -288,12 +288,12 @@ static void _call_ctor_QWheelEvent_Adaptor_11651 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); - int arg3 = args.read (heap); - QFlags arg4 = args.read > (heap); - QFlags arg5 = args.read > (heap); - const qt_gsi::Converter::target_type & arg6 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::Vertical)); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = gsi::arg_reader >() (args, heap); + QFlags arg5 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg6 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::Vertical), heap); ret.write (new QWheelEvent_Adaptor (arg1, arg2, arg3, arg4, arg5, qt_gsi::QtToCppAdaptor(arg6).cref())); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWidget.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWidget.cc index 907025b4d..8aecfafa7 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWidget.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWidget.cc @@ -186,7 +186,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->addAction (arg1); } @@ -206,7 +206,7 @@ static void _call_f_addActions_1780 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QList arg1 = args.read > (heap); + QList arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->addActions (arg1); } @@ -289,8 +289,8 @@ static void _call_f_childAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QWidget *)cls)->childAt (arg1, arg2)); } @@ -309,7 +309,7 @@ static void _call_f_childAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QWidget *)cls)->childAt (arg1)); } @@ -668,10 +668,10 @@ static void _call_f_getContentsMargins_c3488 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->getContentsMargins (arg1, arg2, arg3, arg4); } @@ -693,8 +693,8 @@ static void _call_f_grabGesture_4352 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::GestureFlags()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::GestureFlags(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->grabGesture (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -746,7 +746,7 @@ static void _call_f_grabMouse_2032 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCursor &arg1 = args.read (heap); + const QCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->grabMouse (arg1); } @@ -768,8 +768,8 @@ static void _call_f_grabShortcut_4758 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::WindowShortcut)); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::WindowShortcut), heap); ret.write ((int)((QWidget *)cls)->grabShortcut (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -863,7 +863,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidget *)cls)->heightForWidth (arg1)); } @@ -928,7 +928,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QWidget *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -949,8 +949,8 @@ static void _call_f_insertAction_2510 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - QAction *arg2 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + QAction *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->insertAction (arg1, arg2); } @@ -972,8 +972,8 @@ static void _call_f_insertActions_2981 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - QList arg2 = args.read > (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + QList arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->insertActions (arg1, arg2); } @@ -1023,7 +1023,7 @@ static void _call_f_isAncestorOf_c2010 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget *)cls)->isAncestorOf (arg1)); } @@ -1057,7 +1057,7 @@ static void _call_f_isEnabledTo_c1315 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget *)cls)->isEnabledTo (arg1)); } @@ -1226,7 +1226,7 @@ static void _call_f_isVisibleTo_c1315 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget *)cls)->isVisibleTo (arg1)); } @@ -1338,8 +1338,8 @@ static void _call_f_mapFrom_c3123 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QWidget *)cls)->mapFrom (arg1, arg2)); } @@ -1358,7 +1358,7 @@ static void _call_f_mapFromGlobal_c1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QWidget *)cls)->mapFromGlobal (arg1)); } @@ -1377,7 +1377,7 @@ static void _call_f_mapFromParent_c1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QWidget *)cls)->mapFromParent (arg1)); } @@ -1398,8 +1398,8 @@ static void _call_f_mapTo_c3123 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QWidget *)cls)->mapTo (arg1, arg2)); } @@ -1418,7 +1418,7 @@ static void _call_f_mapToGlobal_c1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QWidget *)cls)->mapToGlobal (arg1)); } @@ -1437,7 +1437,7 @@ static void _call_f_mapToParent_c1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QWidget *)cls)->mapToParent (arg1)); } @@ -1578,8 +1578,8 @@ static void _call_f_move_1426 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->move (arg1, arg2); } @@ -1599,7 +1599,7 @@ static void _call_f_move_1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->move (arg1); } @@ -1664,7 +1664,7 @@ static void _call_f_overrideWindowFlags_2495 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->overrideWindowFlags (arg1); } @@ -1684,7 +1684,7 @@ static void _call_f_overrideWindowState_2590 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->overrideWindowState (arg1); } @@ -1842,7 +1842,7 @@ static void _call_f_releaseShortcut_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->releaseShortcut (arg1); } @@ -1862,7 +1862,7 @@ static void _call_f_removeAction_1309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->removeAction (arg1); } @@ -1888,10 +1888,10 @@ static void _call_f_render_8328 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); - const QPoint &arg2 = args ? args.read (heap) : (const QPoint &)(QPoint()); - const QRegion &arg3 = args ? args.read (heap) : (const QRegion &)(QRegion()); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QWidget::RenderFlags(QWidget::DrawWindowBackground | QWidget::DrawChildren)); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPoint(), heap); + const QRegion &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRegion(), heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QWidget::RenderFlags(QWidget::DrawWindowBackground | QWidget::DrawChildren), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->render (arg1, arg2, arg3, arg4); } @@ -1917,10 +1917,10 @@ static void _call_f_render_7951 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QPoint &arg2 = args ? args.read (heap) : (const QPoint &)(QPoint()); - const QRegion &arg3 = args ? args.read (heap) : (const QRegion &)(QRegion()); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QWidget::RenderFlags(QWidget::DrawWindowBackground | QWidget::DrawChildren)); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPoint(), heap); + const QRegion &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRegion(), heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QWidget::RenderFlags(QWidget::DrawWindowBackground | QWidget::DrawChildren), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->render (arg1, arg2, arg3, arg4); } @@ -1962,10 +1962,10 @@ static void _call_f_repaint_2744 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->repaint (arg1, arg2, arg3, arg4); } @@ -1985,7 +1985,7 @@ static void _call_f_repaint_1792 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->repaint (arg1); } @@ -2005,7 +2005,7 @@ static void _call_f_repaint_2006 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->repaint (arg1); } @@ -2027,8 +2027,8 @@ static void _call_f_resize_1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->resize (arg1, arg2); } @@ -2048,7 +2048,7 @@ static void _call_f_resize_1805 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->resize (arg1); } @@ -2068,7 +2068,7 @@ static void _call_f_restoreGeometry_2309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget *)cls)->restoreGeometry (arg1)); } @@ -2104,8 +2104,8 @@ static void _call_f_scroll_1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->scroll (arg1, arg2); } @@ -2129,9 +2129,9 @@ static void _call_f_scroll_3110 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->scroll (arg1, arg2, arg3); } @@ -2151,7 +2151,7 @@ static void _call_f_setAcceptDrops_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setAcceptDrops (arg1); } @@ -2171,7 +2171,7 @@ static void _call_f_setAccessibleDescription_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setAccessibleDescription (arg1); } @@ -2191,7 +2191,7 @@ static void _call_f_setAccessibleName_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setAccessibleName (arg1); } @@ -2213,8 +2213,8 @@ static void _call_f_setAttribute_3065 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setAttribute (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -2234,7 +2234,7 @@ static void _call_f_setAutoFillBackground_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setAutoFillBackground (arg1); } @@ -2254,7 +2254,7 @@ static void _call_f_setBackgroundRole_2265 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setBackgroundRole (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -2274,7 +2274,7 @@ static void _call_f_setBaseSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setBaseSize (arg1); } @@ -2296,8 +2296,8 @@ static void _call_f_setBaseSize_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setBaseSize (arg1, arg2); } @@ -2323,10 +2323,10 @@ static void _call_f_setContentsMargins_2744 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setContentsMargins (arg1, arg2, arg3, arg4); } @@ -2346,7 +2346,7 @@ static void _call_f_setContentsMargins_2115 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setContentsMargins (arg1); } @@ -2366,7 +2366,7 @@ static void _call_f_setContextMenuPolicy_2519 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setContextMenuPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -2386,7 +2386,7 @@ static void _call_f_setCursor_2032 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCursor &arg1 = args.read (heap); + const QCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setCursor (arg1); } @@ -2406,7 +2406,7 @@ static void _call_f_setDisabled_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setDisabled (arg1); } @@ -2426,7 +2426,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setEnabled (arg1); } @@ -2446,7 +2446,7 @@ static void _call_f_setFixedHeight_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFixedHeight (arg1); } @@ -2466,7 +2466,7 @@ static void _call_f_setFixedSize_1805 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFixedSize (arg1); } @@ -2488,8 +2488,8 @@ static void _call_f_setFixedSize_1426 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFixedSize (arg1, arg2); } @@ -2509,7 +2509,7 @@ static void _call_f_setFixedWidth_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFixedWidth (arg1); } @@ -2545,7 +2545,7 @@ static void _call_f_setFocus_1877 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFocus (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -2565,7 +2565,7 @@ static void _call_f_setFocusPolicy_1885 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFocusPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -2585,7 +2585,7 @@ static void _call_f_setFocusProxy_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFocusProxy (arg1); } @@ -2605,7 +2605,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFont (arg1); } @@ -2625,7 +2625,7 @@ static void _call_f_setForegroundRole_2265 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setForegroundRole (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -2651,10 +2651,10 @@ static void _call_f_setGeometry_2744 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setGeometry (arg1, arg2, arg3, arg4); } @@ -2674,7 +2674,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setGeometry (arg1); } @@ -2694,7 +2694,7 @@ static void _call_f_setGraphicsEffect_2109 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsEffect *arg1 = args.read (heap); + QGraphicsEffect *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setGraphicsEffect (arg1); } @@ -2714,7 +2714,7 @@ static void _call_f_setHidden_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setHidden (arg1); } @@ -2734,7 +2734,7 @@ static void _call_f_setInputContext_1972 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QInputContext *arg1 = args.read (heap); + QInputContext *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setInputContext (arg1); } @@ -2754,7 +2754,7 @@ static void _call_f_setInputMethodHints_2985 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setInputMethodHints (arg1); } @@ -2774,7 +2774,7 @@ static void _call_f_setLayout_1341 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setLayout (arg1); } @@ -2794,7 +2794,7 @@ static void _call_f_setLayoutDirection_2316 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setLayoutDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -2814,7 +2814,7 @@ static void _call_f_setLocale_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setLocale (arg1); } @@ -2834,7 +2834,7 @@ static void _call_f_setMask_1999 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBitmap &arg1 = args.read (heap); + const QBitmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMask (arg1); } @@ -2854,7 +2854,7 @@ static void _call_f_setMask_2006 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMask (arg1); } @@ -2874,7 +2874,7 @@ static void _call_f_setMaximumHeight_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMaximumHeight (arg1); } @@ -2894,7 +2894,7 @@ static void _call_f_setMaximumSize_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMaximumSize (arg1); } @@ -2916,8 +2916,8 @@ static void _call_f_setMaximumSize_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMaximumSize (arg1, arg2); } @@ -2937,7 +2937,7 @@ static void _call_f_setMaximumWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMaximumWidth (arg1); } @@ -2957,7 +2957,7 @@ static void _call_f_setMinimumHeight_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMinimumHeight (arg1); } @@ -2977,7 +2977,7 @@ static void _call_f_setMinimumSize_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMinimumSize (arg1); } @@ -2999,8 +2999,8 @@ static void _call_f_setMinimumSize_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMinimumSize (arg1, arg2); } @@ -3020,7 +3020,7 @@ static void _call_f_setMinimumWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMinimumWidth (arg1); } @@ -3040,7 +3040,7 @@ static void _call_f_setMouseTracking_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMouseTracking (arg1); } @@ -3060,7 +3060,7 @@ static void _call_f_setPalette_2113 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setPalette (arg1); } @@ -3080,7 +3080,7 @@ static void _call_f_setParent_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setParent (arg1); } @@ -3102,8 +3102,8 @@ static void _call_f_setParent_3702 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setParent (arg1, arg2); } @@ -3125,8 +3125,8 @@ static void _call_f_setShortcutAutoRepeat_1523 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setShortcutAutoRepeat (arg1, arg2); } @@ -3148,8 +3148,8 @@ static void _call_f_setShortcutEnabled_1523 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setShortcutEnabled (arg1, arg2); } @@ -3169,7 +3169,7 @@ static void _call_f_setShown_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setShown (arg1); } @@ -3189,7 +3189,7 @@ static void _call_f_setSizeIncrement_1805 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setSizeIncrement (arg1); } @@ -3211,8 +3211,8 @@ static void _call_f_setSizeIncrement_1426 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setSizeIncrement (arg1, arg2); } @@ -3232,7 +3232,7 @@ static void _call_f_setSizePolicy_1552 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSizePolicy arg1 = args.read (heap); + QSizePolicy arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setSizePolicy (arg1); } @@ -3254,8 +3254,8 @@ static void _call_f_setSizePolicy_4476 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setSizePolicy (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -3275,7 +3275,7 @@ static void _call_f_setStatusTip_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setStatusTip (arg1); } @@ -3295,7 +3295,7 @@ static void _call_f_setStyle_1232 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle *arg1 = args.read (heap); + QStyle *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setStyle (arg1); } @@ -3315,7 +3315,7 @@ static void _call_f_setStyleSheet_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setStyleSheet (arg1); } @@ -3335,7 +3335,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setToolTip (arg1); } @@ -3355,7 +3355,7 @@ static void _call_f_setUpdatesEnabled_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setUpdatesEnabled (arg1); } @@ -3375,7 +3375,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setVisible (arg1); } @@ -3395,7 +3395,7 @@ static void _call_f_setWhatsThis_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWhatsThis (arg1); } @@ -3415,7 +3415,7 @@ static void _call_f_setWindowFilePath_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowFilePath (arg1); } @@ -3435,7 +3435,7 @@ static void _call_f_setWindowFlags_2495 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowFlags (arg1); } @@ -3455,7 +3455,7 @@ static void _call_f_setWindowIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowIcon (arg1); } @@ -3475,7 +3475,7 @@ static void _call_f_setWindowIconText_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowIconText (arg1); } @@ -3495,7 +3495,7 @@ static void _call_f_setWindowModality_2216 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowModality (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -3515,7 +3515,7 @@ static void _call_f_setWindowModified_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowModified (arg1); } @@ -3535,7 +3535,7 @@ static void _call_f_setWindowOpacity_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowOpacity (arg1); } @@ -3555,7 +3555,7 @@ static void _call_f_setWindowRole_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowRole (arg1); } @@ -3575,7 +3575,7 @@ static void _call_f_setWindowState_2590 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowState (arg1); } @@ -3595,7 +3595,7 @@ static void _call_f_setWindowTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowTitle (arg1); } @@ -3755,7 +3755,7 @@ static void _call_f_stackUnder_1315 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->stackUnder (arg1); } @@ -3820,7 +3820,7 @@ static void _call_f_testAttribute_c2309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QWidget *)cls)->testAttribute (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -3884,7 +3884,7 @@ static void _call_f_ungrabGesture_1902 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->ungrabGesture (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -3974,10 +3974,10 @@ static void _call_f_update_2744 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->update (arg1, arg2, arg3, arg4); } @@ -3997,7 +3997,7 @@ static void _call_f_update_1792 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->update (arg1); } @@ -4017,7 +4017,7 @@ static void _call_f_update_2006 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->update (arg1); } @@ -4323,7 +4323,7 @@ static void _call_f_find_696 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QWidget *)QWidget::find (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -4374,8 +4374,8 @@ static void _call_f_setTabOrder_2522 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QWidget::setTabOrder (arg1, arg2); } @@ -4397,8 +4397,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QWidget::tr (arg1, arg2)); } @@ -4421,9 +4421,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QWidget::tr (arg1, arg2, arg3)); } @@ -4444,8 +4444,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QWidget::trUtf8 (arg1, arg2)); } @@ -4468,9 +4468,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QWidget::trUtf8 (arg1, arg2, arg3)); } @@ -5619,8 +5619,8 @@ static void _call_ctor_QWidget_Adaptor_3702 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QWidget_Adaptor (arg1, arg2)); } @@ -5762,9 +5762,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->fp_QWidget_create_2208 (arg1, arg2, arg3); } @@ -5783,7 +5783,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QWidget_Adaptor *)cls)->emitter_QWidget_customContextMenuRequested_1916 (arg1); } @@ -5827,8 +5827,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->fp_QWidget_destroy_1620 (arg1, arg2); } @@ -5847,7 +5847,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QWidget_Adaptor *)cls)->emitter_QWidget_destroyed_1302 (arg1); } @@ -6620,7 +6620,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidget_Adaptor *)cls)->fp_QWidget_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWidgetAction.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWidgetAction.cc index 6ee16768c..70d962654 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWidgetAction.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWidgetAction.cc @@ -89,7 +89,7 @@ static void _call_f_releaseWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction *)cls)->releaseWidget (arg1); } @@ -109,7 +109,7 @@ static void _call_f_requestWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QWidgetAction *)cls)->requestWidget (arg1)); } @@ -128,7 +128,7 @@ static void _call_f_setDefaultWidget_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction *)cls)->setDefaultWidget (arg1); } @@ -150,8 +150,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QWidgetAction::tr (arg1, arg2)); } @@ -174,9 +174,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QWidgetAction::tr (arg1, arg2, arg3)); } @@ -197,8 +197,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QWidgetAction::trUtf8 (arg1, arg2)); } @@ -221,9 +221,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QWidgetAction::trUtf8 (arg1, arg2, arg3)); } @@ -463,7 +463,7 @@ static void _call_ctor_QWidgetAction_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QWidgetAction_Adaptor (arg1)); } @@ -604,7 +604,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QWidgetAction_Adaptor *)cls)->emitter_QWidgetAction_destroyed_1302 (arg1); } @@ -709,7 +709,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidgetAction_Adaptor *)cls)->fp_QWidgetAction_receivers_c1731 (arg1)); } @@ -765,7 +765,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QWidgetAction_Adaptor *)cls)->emitter_QWidgetAction_toggled_864 (arg1); } @@ -783,7 +783,7 @@ static void _call_emitter_triggered_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QWidgetAction_Adaptor *)cls)->emitter_QWidgetAction_triggered_864 (arg1); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWidgetItem.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWidgetItem.cc index 4c7b06599..a6ffbf3e3 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWidgetItem.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWidgetItem.cc @@ -100,7 +100,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidgetItem *)cls)->heightForWidth (arg1)); } @@ -164,7 +164,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetItem *)cls)->setGeometry (arg1); } @@ -482,7 +482,7 @@ static void _call_ctor_QWidgetItem_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QWidgetItem_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWindowStateChangeEvent.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWindowStateChangeEvent.cc index a2d0498ed..408a67283 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWindowStateChangeEvent.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWindowStateChangeEvent.cc @@ -123,7 +123,7 @@ static void _call_ctor_QWindowStateChangeEvent_Adaptor_2590 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write (new QWindowStateChangeEvent_Adaptor (arg1)); } @@ -143,8 +143,8 @@ static void _call_ctor_QWindowStateChangeEvent_Adaptor_3346 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - bool arg2 = args.read (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); ret.write (new QWindowStateChangeEvent_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWindowsStyle.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWindowsStyle.cc index 44e262dd0..fc38276f4 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWindowsStyle.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWindowsStyle.cc @@ -88,10 +88,10 @@ static void _call_f_drawComplexControl_c9027 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle *)cls)->drawComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -117,10 +117,10 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle *)cls)->drawControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -146,10 +146,10 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle *)cls)->drawPrimitive (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -173,9 +173,9 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QWindowsStyle *)cls)->pixelMetric (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -194,7 +194,7 @@ static void _call_f_polish_1843 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle *)cls)->polish (arg1); } @@ -214,7 +214,7 @@ static void _call_f_polish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle *)cls)->polish (arg1); } @@ -234,7 +234,7 @@ static void _call_f_polish_1418 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle *)cls)->polish (arg1); } @@ -260,10 +260,10 @@ static void _call_f_sizeFromContents_c8477 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QSize)((QWindowsStyle *)cls)->sizeFromContents (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -286,9 +286,9 @@ static void _call_f_standardPixmap_c6956 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPixmap)((QWindowsStyle *)cls)->standardPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -313,10 +313,10 @@ static void _call_f_styleHint_c8615 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); - QStyleHintReturn *arg4 = args ? args.read (heap) : (QStyleHintReturn *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QWindowsStyle *)cls)->styleHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -339,9 +339,9 @@ static void _call_f_subElementRect_c6528 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QWindowsStyle *)cls)->subElementRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -360,7 +360,7 @@ static void _call_f_unpolish_1843 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle *)cls)->unpolish (arg1); } @@ -380,7 +380,7 @@ static void _call_f_unpolish_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindowsStyle *)cls)->unpolish (arg1); } @@ -402,8 +402,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QWindowsStyle::tr (arg1, arg2)); } @@ -426,9 +426,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QWindowsStyle::tr (arg1, arg2, arg3)); } @@ -449,8 +449,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QWindowsStyle::trUtf8 (arg1, arg2)); } @@ -473,9 +473,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QWindowsStyle::trUtf8 (arg1, arg2, arg3)); } @@ -1067,7 +1067,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QWindowsStyle_Adaptor *)cls)->emitter_QWindowsStyle_destroyed_1302 (arg1); } @@ -1465,11 +1465,11 @@ static void _call_fp_layoutSpacingImplementation_c11697 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QStyleOption *arg4 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg5 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QWindowsStyle_Adaptor *)cls)->fp_QWindowsStyle_layoutSpacingImplementation_c11697 (arg1, arg2, arg3, arg4, arg5)); } @@ -1588,7 +1588,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWindowsStyle_Adaptor *)cls)->fp_QWindowsStyle_receivers_c1731 (arg1)); } @@ -1656,9 +1656,9 @@ static void _call_fp_standardIconImplementation_c6956 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QIcon)((QWindowsStyle_Adaptor *)cls)->fp_QWindowsStyle_standardIconImplementation_c6956 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWizard.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWizard.cc index 86468b9d6..a30d66b74 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWizard.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWizard.cc @@ -114,7 +114,7 @@ static void _call_f_addPage_1709 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWizardPage *arg1 = args.read (heap); + QWizardPage *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWizard *)cls)->addPage (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_button_c2519 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QAbstractButton *)((QWizard *)cls)->button (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -168,7 +168,7 @@ static void _call_f_buttonText_c2519 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QWizard *)cls)->buttonText (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -217,7 +217,7 @@ static void _call_f_field_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QWizard *)cls)->field (arg1)); } @@ -236,7 +236,7 @@ static void _call_f_hasVisitedPage_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizard *)cls)->hasVisitedPage (arg1)); } @@ -301,7 +301,7 @@ static void _call_f_page_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QWizardPage *)((QWizard *)cls)->page (arg1)); } @@ -335,7 +335,7 @@ static void _call_f_pixmap_c2506 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPixmap)((QWizard *)cls)->pixmap (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -354,7 +354,7 @@ static void _call_f_removePage_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->removePage (arg1); } @@ -392,8 +392,8 @@ static void _call_f_setButton_4570 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QAbstractButton *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QAbstractButton *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setButton (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -413,7 +413,7 @@ static void _call_f_setButtonLayout_4011 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setButtonLayout (arg1); } @@ -435,8 +435,8 @@ static void _call_f_setButtonText_4436 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setButtonText (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -460,9 +460,9 @@ static void _call_f_setDefaultProperty_4977 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const char *arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setDefaultProperty (arg1, arg2, arg3); } @@ -484,8 +484,8 @@ static void _call_f_setField_4036 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setField (arg1, arg2); } @@ -507,8 +507,8 @@ static void _call_f_setOption_3272 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -528,7 +528,7 @@ static void _call_f_setOptions_3212 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setOptions (arg1); } @@ -550,8 +550,8 @@ static void _call_f_setPage_2368 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWizardPage *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWizardPage *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setPage (arg1, arg2); } @@ -573,8 +573,8 @@ static void _call_f_setPixmap_4415 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -594,7 +594,7 @@ static void _call_f_setStartId_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setStartId (arg1); } @@ -614,7 +614,7 @@ static void _call_f_setSubTitleFormat_1787 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setSubTitleFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -634,7 +634,7 @@ static void _call_f_setTitleFormat_1787 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setTitleFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -654,7 +654,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setVisible (arg1); } @@ -674,7 +674,7 @@ static void _call_f_setWizardStyle_2412 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setWizardStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -739,7 +739,7 @@ static void _call_f_testOption_c2516 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QWizard *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -820,8 +820,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QWizard::tr (arg1, arg2)); } @@ -844,9 +844,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QWizard::tr (arg1, arg2, arg3)); } @@ -867,8 +867,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QWizard::trUtf8 (arg1, arg2)); } @@ -891,9 +891,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QWizard::trUtf8 (arg1, arg2, arg3)); } @@ -1952,8 +1952,8 @@ static void _call_ctor_QWizard_Adaptor_3702 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QWizard_Adaptor (arg1, arg2)); } @@ -2029,7 +2029,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->fp_QWizard_adjustPosition_1315 (arg1); } @@ -2172,9 +2172,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->fp_QWizard_create_2208 (arg1, arg2, arg3); } @@ -2193,7 +2193,7 @@ static void _call_emitter_currentIdChanged_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWizard_Adaptor *)cls)->emitter_QWizard_currentIdChanged_767 (arg1); } @@ -2211,7 +2211,7 @@ static void _call_emitter_customButtonClicked_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWizard_Adaptor *)cls)->emitter_QWizard_customButtonClicked_767 (arg1); } @@ -2229,7 +2229,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QWizard_Adaptor *)cls)->emitter_QWizard_customContextMenuRequested_1916 (arg1); } @@ -2273,8 +2273,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->fp_QWizard_destroy_1620 (arg1, arg2); } @@ -2293,7 +2293,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QWizard_Adaptor *)cls)->emitter_QWizard_destroyed_1302 (arg1); } @@ -2552,7 +2552,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWizard_Adaptor *)cls)->emitter_QWizard_finished_767 (arg1); } @@ -3165,7 +3165,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWizard_Adaptor *)cls)->fp_QWizard_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtGui/gsiDeclQWizardPage.cc b/src/gsiqt/qt4/QtGui/gsiDeclQWizardPage.cc index e3a95abb4..f9200cbed 100644 --- a/src/gsiqt/qt4/QtGui/gsiDeclQWizardPage.cc +++ b/src/gsiqt/qt4/QtGui/gsiDeclQWizardPage.cc @@ -113,7 +113,7 @@ static void _call_f_buttonText_c2519 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QWizardPage *)cls)->buttonText (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -224,7 +224,7 @@ static void _call_f_pixmap_c2506 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPixmap)((QWizardPage *)cls)->pixmap (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -245,8 +245,8 @@ static void _call_f_setButtonText_4436 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage *)cls)->setButtonText (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -266,7 +266,7 @@ static void _call_f_setCommitPage_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage *)cls)->setCommitPage (arg1); } @@ -286,7 +286,7 @@ static void _call_f_setFinalPage_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage *)cls)->setFinalPage (arg1); } @@ -308,8 +308,8 @@ static void _call_f_setPixmap_4415 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage *)cls)->setPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -329,7 +329,7 @@ static void _call_f_setSubTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage *)cls)->setSubTitle (arg1); } @@ -349,7 +349,7 @@ static void _call_f_setTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage *)cls)->setTitle (arg1); } @@ -416,8 +416,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QWizardPage::tr (arg1, arg2)); } @@ -440,9 +440,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QWizardPage::tr (arg1, arg2, arg3)); } @@ -463,8 +463,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QWizardPage::trUtf8 (arg1, arg2)); } @@ -487,9 +487,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QWizardPage::trUtf8 (arg1, arg2, arg3)); } @@ -1467,7 +1467,7 @@ static void _call_ctor_QWizardPage_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QWizardPage_Adaptor (arg1)); } @@ -1643,9 +1643,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->fp_QWizardPage_create_2208 (arg1, arg2, arg3); } @@ -1664,7 +1664,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QWizardPage_Adaptor *)cls)->emitter_QWizardPage_customContextMenuRequested_1916 (arg1); } @@ -1708,8 +1708,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->fp_QWizardPage_destroy_1620 (arg1, arg2); } @@ -1728,7 +1728,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QWizardPage_Adaptor *)cls)->emitter_QWizardPage_destroyed_1302 (arg1); } @@ -1963,7 +1963,7 @@ static void _call_fp_field_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QWizardPage_Adaptor *)cls)->fp_QWizardPage_field_c2025 (arg1)); } @@ -2577,7 +2577,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWizardPage_Adaptor *)cls)->fp_QWizardPage_receivers_c1731 (arg1)); } @@ -2601,10 +2601,10 @@ static void _call_fp_registerField_6478 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const char *arg3 = args ? args.read (heap) : (const char *)(0); - const char *arg4 = args ? args.read (heap) : (const char *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const char *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->fp_QWizardPage_registerField_6478 (arg1, arg2, arg3, arg4); } @@ -2678,8 +2678,8 @@ static void _call_fp_setField_4036 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->fp_QWizardPage_setField_4036 (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractNetworkCache.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractNetworkCache.cc index 4d0bd5db6..34bea058b 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractNetworkCache.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractNetworkCache.cc @@ -102,7 +102,7 @@ static void _call_f_data_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QAbstractNetworkCache *)cls)->data (arg1)); } @@ -121,7 +121,7 @@ static void _call_f_insert_1447 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache *)cls)->insert (arg1); } @@ -141,7 +141,7 @@ static void _call_f_metaData_1701 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCacheMetaData)((QAbstractNetworkCache *)cls)->metaData (arg1)); } @@ -160,7 +160,7 @@ static void _call_f_prepare_3377 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QAbstractNetworkCache *)cls)->prepare (arg1)); } @@ -179,7 +179,7 @@ static void _call_f_remove_1701 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractNetworkCache *)cls)->remove (arg1)); } @@ -198,7 +198,7 @@ static void _call_f_updateMetaData_3377 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache *)cls)->updateMetaData (arg1); } @@ -220,8 +220,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractNetworkCache::tr (arg1, arg2)); } @@ -244,9 +244,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractNetworkCache::tr (arg1, arg2, arg3)); } @@ -267,8 +267,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractNetworkCache::trUtf8 (arg1, arg2)); } @@ -291,9 +291,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractNetworkCache::trUtf8 (arg1, arg2, arg3)); } @@ -730,7 +730,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractNetworkCache_Adaptor *)cls)->emitter_QAbstractNetworkCache_destroyed_1302 (arg1); } @@ -891,7 +891,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractNetworkCache_Adaptor *)cls)->fp_QAbstractNetworkCache_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractSocket.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractSocket.cc index 8b251c17c..97d92ad17 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractSocket.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQAbstractSocket.cc @@ -71,8 +71,8 @@ static void _call_ctor_QAbstractSocket_4299 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QObject *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); ret.write (new QAbstractSocket (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -187,9 +187,9 @@ static void _call_f_connectToHost_6151 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + const QString &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSocket *)cls)->connectToHost (arg1, arg2, arg3); } @@ -213,9 +213,9 @@ static void _call_f_connectToHost_6644 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSocket *)cls)->connectToHost (arg1, arg2, arg3); } @@ -416,7 +416,7 @@ static void _call_f_setProxy_2686 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSocket *)cls)->setProxy (arg1); } @@ -436,7 +436,7 @@ static void _call_f_setReadBufferSize_986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSocket *)cls)->setReadBufferSize (arg1); } @@ -460,9 +460,9 @@ static void _call_f_setSocketDescriptor_6993 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::ConnectedState)); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::ConnectedState), heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); ret.write ((bool)((QAbstractSocket *)cls)->setSocketDescriptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -483,8 +483,8 @@ static void _call_f_setSocketOption_5331 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSocket *)cls)->setSocketOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -519,7 +519,7 @@ static void _call_f_socketOption_3320 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractSocket *)cls)->socketOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -568,7 +568,7 @@ static void _call_f_waitForBytesWritten_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QAbstractSocket *)cls)->waitForBytesWritten (arg1)); } @@ -587,7 +587,7 @@ static void _call_f_waitForConnected_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QAbstractSocket *)cls)->waitForConnected (arg1)); } @@ -606,7 +606,7 @@ static void _call_f_waitForDisconnected_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QAbstractSocket *)cls)->waitForDisconnected (arg1)); } @@ -625,7 +625,7 @@ static void _call_f_waitForReadyRead_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QAbstractSocket *)cls)->waitForReadyRead (arg1)); } @@ -646,8 +646,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractSocket::tr (arg1, arg2)); } @@ -670,9 +670,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractSocket::tr (arg1, arg2, arg3)); } @@ -693,8 +693,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QAbstractSocket::trUtf8 (arg1, arg2)); } @@ -717,9 +717,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractSocket::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQAuthenticator.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQAuthenticator.cc index 0e4cad3e3..9b69e8680 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQAuthenticator.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQAuthenticator.cc @@ -65,7 +65,7 @@ static void _call_ctor_QAuthenticator_2765 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAuthenticator &arg1 = args.read (heap); + const QAuthenticator &arg1 = gsi::arg_reader() (args, heap); ret.write (new QAuthenticator (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_excl__eq__c2765 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAuthenticator &arg1 = args.read (heap); + const QAuthenticator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAuthenticator *)cls)->operator!= (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_operator_eq__2765 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAuthenticator &arg1 = args.read (heap); + const QAuthenticator &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAuthenticator &)((QAuthenticator *)cls)->operator= (arg1)); } @@ -153,7 +153,7 @@ static void _call_f_operator_eq__eq__c2765 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAuthenticator &arg1 = args.read (heap); + const QAuthenticator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAuthenticator *)cls)->operator== (arg1)); } @@ -202,7 +202,7 @@ static void _call_f_setPassword_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAuthenticator *)cls)->setPassword (arg1); } @@ -222,7 +222,7 @@ static void _call_f_setUser_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAuthenticator *)cls)->setUser (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQFtp.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQFtp.cc index 1f6a725e8..a1cde34a8 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQFtp.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQFtp.cc @@ -101,7 +101,7 @@ static void _call_f_cd_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFtp *)cls)->cd (arg1)); } @@ -153,8 +153,8 @@ static void _call_f_connectToHost_3017 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args ? args.read (heap) : (quint16)(21); + const QString &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (21, heap); ret.write ((int)((QFtp *)cls)->connectToHost (arg1, arg2)); } @@ -252,9 +252,9 @@ static void _call_f_get_5442 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QIODevice *arg2 = args ? args.read (heap) : (QIODevice *)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QFtp::Binary)); + const QString &arg1 = gsi::arg_reader() (args, heap); + QIODevice *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QFtp::Binary), heap); ret.write ((int)((QFtp *)cls)->get (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -288,7 +288,7 @@ static void _call_f_list_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((int)((QFtp *)cls)->list (arg1)); } @@ -309,8 +309,8 @@ static void _call_f_login_3942 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((int)((QFtp *)cls)->login (arg1, arg2)); } @@ -329,7 +329,7 @@ static void _call_f_mkdir_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFtp *)cls)->mkdir (arg1)); } @@ -352,9 +352,9 @@ static void _call_f_put_6304 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QFtp::Binary)); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QFtp::Binary), heap); ret.write ((int)((QFtp *)cls)->put (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -377,9 +377,9 @@ static void _call_f_put_5442 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QFtp::Binary)); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QFtp::Binary), heap); ret.write ((int)((QFtp *)cls)->put (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -398,7 +398,7 @@ static void _call_f_rawCommand_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFtp *)cls)->rawCommand (arg1)); } @@ -432,7 +432,7 @@ static void _call_f_remove_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFtp *)cls)->remove (arg1)); } @@ -453,8 +453,8 @@ static void _call_f_rename_3942 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QFtp *)cls)->rename (arg1, arg2)); } @@ -473,7 +473,7 @@ static void _call_f_rmdir_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFtp *)cls)->rmdir (arg1)); } @@ -494,8 +494,8 @@ static void _call_f_setProxy_3017 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QFtp *)cls)->setProxy (arg1, arg2)); } @@ -514,7 +514,7 @@ static void _call_f_setTransferMode_2157 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFtp *)cls)->setTransferMode (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -550,8 +550,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFtp::tr (arg1, arg2)); } @@ -574,9 +574,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFtp::tr (arg1, arg2, arg3)); } @@ -597,8 +597,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QFtp::trUtf8 (arg1, arg2)); } @@ -621,9 +621,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QFtp::trUtf8 (arg1, arg2, arg3)); } @@ -882,7 +882,7 @@ static void _call_ctor_QFtp_Adaptor_1302 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFtp_Adaptor (arg1)); } @@ -926,8 +926,8 @@ static void _call_emitter_commandFinished_1523 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); ((QFtp_Adaptor *)cls)->emitter_QFtp_commandFinished_1523 (arg1, arg2); } @@ -945,7 +945,7 @@ static void _call_emitter_commandStarted_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QFtp_Adaptor *)cls)->emitter_QFtp_commandStarted_767 (arg1); } @@ -989,8 +989,8 @@ static void _call_emitter_dataTransferProgress_1864 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); - qint64 arg2 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); ((QFtp_Adaptor *)cls)->emitter_QFtp_dataTransferProgress_1864 (arg1, arg2); } @@ -1008,7 +1008,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFtp_Adaptor *)cls)->emitter_QFtp_destroyed_1302 (arg1); } @@ -1050,7 +1050,7 @@ static void _call_emitter_done_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QFtp_Adaptor *)cls)->emitter_QFtp_done_864 (arg1); } @@ -1117,7 +1117,7 @@ static void _call_emitter_listInfo_2097 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrlInfo &arg1 = args.read (heap); + const QUrlInfo &arg1 = gsi::arg_reader() (args, heap); ((QFtp_Adaptor *)cls)->emitter_QFtp_listInfo_2097 (arg1); } @@ -1137,8 +1137,8 @@ static void _call_emitter_rawCommandReply_2684 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ((QFtp_Adaptor *)cls)->emitter_QFtp_rawCommandReply_2684 (arg1, arg2); } @@ -1170,7 +1170,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFtp_Adaptor *)cls)->fp_QFtp_receivers_c1731 (arg1)); } @@ -1202,7 +1202,7 @@ static void _call_emitter_stateChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QFtp_Adaptor *)cls)->emitter_QFtp_stateChanged_767 (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQHostAddress.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQHostAddress.cc index eb1fe0e96..2e37c8023 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQHostAddress.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQHostAddress.cc @@ -65,7 +65,7 @@ static void _call_ctor_QHostAddress_1098 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint32 arg1 = args.read (heap); + quint32 arg1 = gsi::arg_reader() (args, heap); ret.write (new QHostAddress (arg1)); } @@ -84,7 +84,7 @@ static void _call_ctor_QHostAddress_2025 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QHostAddress (arg1)); } @@ -103,7 +103,7 @@ static void _call_ctor_QHostAddress_2518 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); ret.write (new QHostAddress (arg1)); } @@ -122,7 +122,7 @@ static void _call_ctor_QHostAddress_3172 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QHostAddress (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -159,8 +159,8 @@ static void _call_f_isInSubnet_c3177 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHostAddress *)cls)->isInSubnet (arg1, arg2)); } @@ -179,7 +179,7 @@ static void _call_f_isInSubnet_c3636 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPair &arg1 = args.read & > (heap); + const QPair &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QHostAddress *)cls)->isInSubnet (arg1)); } @@ -213,7 +213,7 @@ static void _call_f_operator_excl__eq__c2518 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHostAddress *)cls)->operator != (arg1)); } @@ -232,7 +232,7 @@ static void _call_f_operator_excl__eq__c3172 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QHostAddress *)cls)->operator != (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -251,7 +251,7 @@ static void _call_f_operator_eq__eq__c2518 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHostAddress *)cls)->operator == (arg1)); } @@ -270,7 +270,7 @@ static void _call_f_operator_eq__eq__c3172 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QHostAddress *)cls)->operator == (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -289,7 +289,7 @@ static void _call_f_operator_eq__2518 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); ret.write ((QHostAddress &)((QHostAddress *)cls)->operator= (arg1)); } @@ -308,7 +308,7 @@ static void _call_f_operator_eq__2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QHostAddress &)((QHostAddress *)cls)->operator= (arg1)); } @@ -357,7 +357,7 @@ static void _call_f_setAddress_1098 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint32 arg1 = args.read (heap); + quint32 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHostAddress *)cls)->setAddress (arg1); } @@ -377,7 +377,7 @@ static void _call_f_setAddress_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHostAddress *)cls)->setAddress (arg1)); } @@ -396,7 +396,7 @@ static void _call_f_setScopeId_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHostAddress *)cls)->setScopeId (arg1); } @@ -446,7 +446,7 @@ static void _call_f_parseSubnet_2025 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QPair)QHostAddress::parseSubnet (arg1)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQHostInfo.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQHostInfo.cc index ce30c91a7..7eb9cb78b 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQHostInfo.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQHostInfo.cc @@ -52,7 +52,7 @@ static void _call_ctor_QHostInfo_767 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write (new QHostInfo (arg1)); } @@ -71,7 +71,7 @@ static void _call_ctor_QHostInfo_2204 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostInfo &arg1 = args.read (heap); + const QHostInfo &arg1 = gsi::arg_reader() (args, heap); ret.write (new QHostInfo (arg1)); } @@ -165,7 +165,7 @@ static void _call_f_operator_eq__2204 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostInfo &arg1 = args.read (heap); + const QHostInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QHostInfo &)((QHostInfo *)cls)->operator= (arg1)); } @@ -184,7 +184,7 @@ static void _call_f_setAddresses_3133 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHostInfo *)cls)->setAddresses (arg1); } @@ -204,7 +204,7 @@ static void _call_f_setError_2775 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHostInfo *)cls)->setError (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -224,7 +224,7 @@ static void _call_f_setErrorString_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHostInfo *)cls)->setErrorString (arg1); } @@ -244,7 +244,7 @@ static void _call_f_setHostName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHostInfo *)cls)->setHostName (arg1); } @@ -264,7 +264,7 @@ static void _call_f_setLookupId_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHostInfo *)cls)->setLookupId (arg1); } @@ -284,7 +284,7 @@ static void _call_f_abortHostLookup_767 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QHostInfo::abortHostLookup (arg1); } @@ -304,7 +304,7 @@ static void _call_f_fromName_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QHostInfo)QHostInfo::fromName (arg1)); } @@ -357,9 +357,9 @@ static void _call_f_lookupHost_4842 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); - const char *arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); ret.write ((int)QHostInfo::lookupHost (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQIPv6Address.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQIPv6Address.cc index ae71e4a56..c9ed8e1a3 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQIPv6Address.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQIPv6Address.cc @@ -65,7 +65,7 @@ static void _call_f_operator_index__767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((quint8 &)((QIPv6Address *)cls)->operator [] (arg1)); } @@ -84,7 +84,7 @@ static void _call_f_operator_index__c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((quint8)((QIPv6Address *)cls)->operator [] (arg1)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalServer.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalServer.cc index df4ca93c0..895635f9b 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalServer.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalServer.cc @@ -145,7 +145,7 @@ static void _call_f_listen_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLocalServer *)cls)->listen (arg1)); } @@ -224,7 +224,7 @@ static void _call_f_setMaxPendingConnections_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer *)cls)->setMaxPendingConnections (arg1); } @@ -246,8 +246,8 @@ static void _call_f_waitForNewConnection_1709 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QLocalServer *)cls)->waitForNewConnection (arg1, arg2)); } @@ -266,7 +266,7 @@ static void _call_f_removeServer_2025 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QLocalServer::removeServer (arg1)); } @@ -287,8 +287,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QLocalServer::tr (arg1, arg2)); } @@ -311,9 +311,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QLocalServer::tr (arg1, arg2, arg3)); } @@ -334,8 +334,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QLocalServer::trUtf8 (arg1, arg2)); } @@ -358,9 +358,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QLocalServer::trUtf8 (arg1, arg2, arg3)); } @@ -605,7 +605,7 @@ static void _call_ctor_QLocalServer_Adaptor_1302 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLocalServer_Adaptor (arg1)); } @@ -671,7 +671,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QLocalServer_Adaptor *)cls)->emitter_QLocalServer_destroyed_1302 (arg1); } @@ -838,7 +838,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLocalServer_Adaptor *)cls)->fp_QLocalServer_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalSocket.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalSocket.cc index 949c3e9c6..a30441d3e 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalSocket.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQLocalSocket.cc @@ -66,7 +66,7 @@ static void _call_ctor_QLocalSocket_1302 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLocalSocket (arg1)); } @@ -164,8 +164,8 @@ static void _call_f_connectToServer_5159 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalSocket *)cls)->connectToServer (arg1, arg2); } @@ -306,7 +306,7 @@ static void _call_f_setReadBufferSize_986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalSocket *)cls)->setReadBufferSize (arg1); } @@ -330,9 +330,9 @@ static void _call_f_setSocketDescriptor_7727 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quintptr arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocalSocket::ConnectedState)); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + quintptr arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocalSocket::ConnectedState), heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); ret.write ((bool)((QLocalSocket *)cls)->setSocketDescriptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -381,7 +381,7 @@ static void _call_f_waitForBytesWritten_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QLocalSocket *)cls)->waitForBytesWritten (arg1)); } @@ -400,7 +400,7 @@ static void _call_f_waitForConnected_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QLocalSocket *)cls)->waitForConnected (arg1)); } @@ -419,7 +419,7 @@ static void _call_f_waitForDisconnected_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QLocalSocket *)cls)->waitForDisconnected (arg1)); } @@ -438,7 +438,7 @@ static void _call_f_waitForReadyRead_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QLocalSocket *)cls)->waitForReadyRead (arg1)); } @@ -459,8 +459,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QLocalSocket::tr (arg1, arg2)); } @@ -483,9 +483,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QLocalSocket::tr (arg1, arg2, arg3)); } @@ -506,8 +506,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QLocalSocket::trUtf8 (arg1, arg2)); } @@ -530,9 +530,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QLocalSocket::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkAccessManager.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkAccessManager.cc index d9f9dd3bb..b57c7396e 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkAccessManager.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkAccessManager.cc @@ -107,7 +107,7 @@ static void _call_f_deleteResource_2885 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->deleteResource (arg1)); } @@ -126,7 +126,7 @@ static void _call_f_get_2885 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->get (arg1)); } @@ -145,7 +145,7 @@ static void _call_f_head_2885 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->head (arg1)); } @@ -166,8 +166,8 @@ static void _call_f_post_4224 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - QIODevice *arg2 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); + QIODevice *arg2 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->post (arg1, arg2)); } @@ -188,8 +188,8 @@ static void _call_f_post_5086 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->post (arg1, arg2)); } @@ -240,8 +240,8 @@ static void _call_f_put_4224 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - QIODevice *arg2 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); + QIODevice *arg2 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->put (arg1, arg2)); } @@ -262,8 +262,8 @@ static void _call_f_put_5086 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->put (arg1, arg2)); } @@ -282,7 +282,7 @@ static void _call_f_setCache_2737 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractNetworkCache *arg1 = args.read (heap); + QAbstractNetworkCache *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager *)cls)->setCache (arg1); } @@ -302,7 +302,7 @@ static void _call_f_setCookieJar_2336 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkCookieJar *arg1 = args.read (heap); + QNetworkCookieJar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager *)cls)->setCookieJar (arg1); } @@ -322,7 +322,7 @@ static void _call_f_setProxy_2686 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager *)cls)->setProxy (arg1); } @@ -342,7 +342,7 @@ static void _call_f_setProxyFactory_2723 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkProxyFactory *arg1 = args.read (heap); + QNetworkProxyFactory *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager *)cls)->setProxyFactory (arg1); } @@ -364,8 +364,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QNetworkAccessManager::tr (arg1, arg2)); } @@ -388,9 +388,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QNetworkAccessManager::tr (arg1, arg2, arg3)); } @@ -411,8 +411,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QNetworkAccessManager::trUtf8 (arg1, arg2)); } @@ -435,9 +435,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QNetworkAccessManager::trUtf8 (arg1, arg2, arg3)); } @@ -673,7 +673,7 @@ static void _call_ctor_QNetworkAccessManager_Adaptor_1302 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QNetworkAccessManager_Adaptor (arg1)); } @@ -693,8 +693,8 @@ static void _call_emitter_authenticationRequired_3939 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkReply *arg1 = args.read (heap); - QAuthenticator *arg2 = args.read (heap); + QNetworkReply *arg1 = gsi::arg_reader() (args, heap); + QAuthenticator *arg2 = gsi::arg_reader() (args, heap); ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_authenticationRequired_3939 (arg1, arg2); } @@ -789,7 +789,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_destroyed_1302 (arg1); } @@ -880,7 +880,7 @@ static void _call_emitter_finished_1973 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkReply *arg1 = args.read (heap); + QNetworkReply *arg1 = gsi::arg_reader() (args, heap); ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_finished_1973 (arg1); } @@ -900,8 +900,8 @@ static void _call_emitter_proxyAuthenticationRequired_4652 (const qt_gsi::Generi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); - QAuthenticator *arg2 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); + QAuthenticator *arg2 = gsi::arg_reader() (args, heap); ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_proxyAuthenticationRequired_4652 (arg1, arg2); } @@ -919,7 +919,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QNetworkAccessManager_Adaptor *)cls)->fp_QNetworkAccessManager_receivers_c1731 (arg1)); } @@ -953,8 +953,8 @@ static void _call_emitter_sslErrors_4702 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkReply *arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + QNetworkReply *arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_sslErrors_4702 (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkAddressEntry.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkAddressEntry.cc index e45ed1f59..bfa1c0946 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkAddressEntry.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkAddressEntry.cc @@ -66,7 +66,7 @@ static void _call_ctor_QNetworkAddressEntry_3380 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkAddressEntry &arg1 = args.read (heap); + const QNetworkAddressEntry &arg1 = gsi::arg_reader() (args, heap); ret.write (new QNetworkAddressEntry (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_operator_excl__eq__c3380 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkAddressEntry &arg1 = args.read (heap); + const QNetworkAddressEntry &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkAddressEntry *)cls)->operator!= (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_operator_eq__3380 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkAddressEntry &arg1 = args.read (heap); + const QNetworkAddressEntry &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkAddressEntry &)((QNetworkAddressEntry *)cls)->operator= (arg1)); } @@ -168,7 +168,7 @@ static void _call_f_operator_eq__eq__c3380 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkAddressEntry &arg1 = args.read (heap); + const QNetworkAddressEntry &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkAddressEntry *)cls)->operator== (arg1)); } @@ -202,7 +202,7 @@ static void _call_f_setBroadcast_2518 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAddressEntry *)cls)->setBroadcast (arg1); } @@ -222,7 +222,7 @@ static void _call_f_setIp_2518 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAddressEntry *)cls)->setIp (arg1); } @@ -242,7 +242,7 @@ static void _call_f_setNetmask_2518 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAddressEntry *)cls)->setNetmask (arg1); } @@ -262,7 +262,7 @@ static void _call_f_setPrefixLength_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAddressEntry *)cls)->setPrefixLength (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCacheMetaData.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCacheMetaData.cc index 2898cbb27..9959fc235 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCacheMetaData.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCacheMetaData.cc @@ -67,7 +67,7 @@ static void _call_ctor_QNetworkCacheMetaData_3377 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write (new QNetworkCacheMetaData (arg1)); } @@ -131,7 +131,7 @@ static void _call_f_operator_excl__eq__c3377 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCacheMetaData *)cls)->operator!= (arg1)); } @@ -150,7 +150,7 @@ static void _call_f_operator_eq__3377 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCacheMetaData &)((QNetworkCacheMetaData *)cls)->operator= (arg1)); } @@ -169,7 +169,7 @@ static void _call_f_operator_eq__eq__c3377 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCacheMetaData *)cls)->operator== (arg1)); } @@ -218,7 +218,7 @@ static void _call_f_setExpirationDate_2175 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCacheMetaData *)cls)->setExpirationDate (arg1); } @@ -238,7 +238,7 @@ static void _call_f_setLastModified_2175 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCacheMetaData *)cls)->setLastModified (arg1); } @@ -258,7 +258,7 @@ static void _call_f_setRawHeaders_4991 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCacheMetaData *)cls)->setRawHeaders (arg1); } @@ -278,7 +278,7 @@ static void _call_f_setSaveToDisk_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCacheMetaData *)cls)->setSaveToDisk (arg1); } @@ -298,7 +298,7 @@ static void _call_f_setUrl_1701 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCacheMetaData *)cls)->setUrl (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCookie.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCookie.cc index 331ae89a1..32271bd77 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCookie.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCookie.cc @@ -53,8 +53,8 @@ static void _call_ctor_QNetworkCookie_4510 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QByteArray &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QNetworkCookie (arg1, arg2)); } @@ -73,7 +73,7 @@ static void _call_ctor_QNetworkCookie_2742 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write (new QNetworkCookie (arg1)); } @@ -182,7 +182,7 @@ static void _call_f_operator_excl__eq__c2742 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookie *)cls)->operator!= (arg1)); } @@ -201,7 +201,7 @@ static void _call_f_operator_eq__2742 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCookie &)((QNetworkCookie *)cls)->operator= (arg1)); } @@ -220,7 +220,7 @@ static void _call_f_operator_eq__eq__c2742 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookie *)cls)->operator== (arg1)); } @@ -254,7 +254,7 @@ static void _call_f_setDomain_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->setDomain (arg1); } @@ -274,7 +274,7 @@ static void _call_f_setExpirationDate_2175 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->setExpirationDate (arg1); } @@ -294,7 +294,7 @@ static void _call_f_setHttpOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->setHttpOnly (arg1); } @@ -314,7 +314,7 @@ static void _call_f_setName_2309 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->setName (arg1); } @@ -334,7 +334,7 @@ static void _call_f_setPath_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->setPath (arg1); } @@ -354,7 +354,7 @@ static void _call_f_setSecure_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->setSecure (arg1); } @@ -374,7 +374,7 @@ static void _call_f_setValue_2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->setValue (arg1); } @@ -394,7 +394,7 @@ static void _call_f_toRawForm_c2683 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkCookie::Full)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QNetworkCookie::Full), heap); ret.write ((QByteArray)((QNetworkCookie *)cls)->toRawForm (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -428,7 +428,7 @@ static void _call_f_parseCookies_2309 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)QNetworkCookie::parseCookies (arg1)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCookieJar.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCookieJar.cc index eb4ae20db..be7efc469 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCookieJar.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkCookieJar.cc @@ -70,7 +70,7 @@ static void _call_f_cookiesForUrl_c1701 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QNetworkCookieJar *)cls)->cookiesForUrl (arg1)); } @@ -91,8 +91,8 @@ static void _call_f_setCookiesFromUrl_4950 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QUrl &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar *)cls)->setCookiesFromUrl (arg1, arg2)); } @@ -113,8 +113,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QNetworkCookieJar::tr (arg1, arg2)); } @@ -137,9 +137,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QNetworkCookieJar::tr (arg1, arg2, arg3)); } @@ -160,8 +160,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QNetworkCookieJar::trUtf8 (arg1, arg2)); } @@ -184,9 +184,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QNetworkCookieJar::trUtf8 (arg1, arg2, arg3)); } @@ -407,7 +407,7 @@ static void _call_ctor_QNetworkCookieJar_Adaptor_1302 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QNetworkCookieJar_Adaptor (arg1)); } @@ -510,7 +510,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QNetworkCookieJar_Adaptor *)cls)->emitter_QNetworkCookieJar_destroyed_1302 (arg1); } @@ -601,7 +601,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QNetworkCookieJar_Adaptor *)cls)->fp_QNetworkCookieJar_receivers_c1731 (arg1)); } @@ -633,7 +633,7 @@ static void _call_fp_setAllCookies_3357 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookieJar_Adaptor *)cls)->fp_QNetworkCookieJar_setAllCookies_3357 (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkDiskCache.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkDiskCache.cc index a4ababe3f..a50d4bfb4 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkDiskCache.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkDiskCache.cc @@ -117,7 +117,7 @@ static void _call_f_data_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QNetworkDiskCache *)cls)->data (arg1)); } @@ -136,7 +136,7 @@ static void _call_f_fileMetaData_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCacheMetaData)((QNetworkDiskCache *)cls)->fileMetaData (arg1)); } @@ -155,7 +155,7 @@ static void _call_f_insert_1447 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache *)cls)->insert (arg1); } @@ -190,7 +190,7 @@ static void _call_f_metaData_1701 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCacheMetaData)((QNetworkDiskCache *)cls)->metaData (arg1)); } @@ -209,7 +209,7 @@ static void _call_f_prepare_3377 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QNetworkDiskCache *)cls)->prepare (arg1)); } @@ -228,7 +228,7 @@ static void _call_f_remove_1701 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkDiskCache *)cls)->remove (arg1)); } @@ -247,7 +247,7 @@ static void _call_f_setCacheDirectory_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache *)cls)->setCacheDirectory (arg1); } @@ -267,7 +267,7 @@ static void _call_f_setMaximumCacheSize_986 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache *)cls)->setMaximumCacheSize (arg1); } @@ -287,7 +287,7 @@ static void _call_f_updateMetaData_3377 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache *)cls)->updateMetaData (arg1); } @@ -309,8 +309,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QNetworkDiskCache::tr (arg1, arg2)); } @@ -333,9 +333,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QNetworkDiskCache::tr (arg1, arg2, arg3)); } @@ -356,8 +356,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QNetworkDiskCache::trUtf8 (arg1, arg2)); } @@ -380,9 +380,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QNetworkDiskCache::trUtf8 (arg1, arg2, arg3)); } @@ -716,7 +716,7 @@ static void _call_ctor_QNetworkDiskCache_Adaptor_1302 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QNetworkDiskCache_Adaptor (arg1)); } @@ -844,7 +844,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QNetworkDiskCache_Adaptor *)cls)->emitter_QNetworkDiskCache_destroyed_1302 (arg1); } @@ -1024,7 +1024,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QNetworkDiskCache_Adaptor *)cls)->fp_QNetworkDiskCache_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkInterface.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkInterface.cc index b84e975b5..af4bcb842 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkInterface.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkInterface.cc @@ -67,7 +67,7 @@ static void _call_ctor_QNetworkInterface_3053 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkInterface &arg1 = args.read (heap); + const QNetworkInterface &arg1 = gsi::arg_reader() (args, heap); ret.write (new QNetworkInterface (arg1)); } @@ -191,7 +191,7 @@ static void _call_f_operator_eq__3053 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkInterface &arg1 = args.read (heap); + const QNetworkInterface &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkInterface &)((QNetworkInterface *)cls)->operator= (arg1)); } @@ -240,7 +240,7 @@ static void _call_f_interfaceFromIndex_767 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkInterface)QNetworkInterface::interfaceFromIndex (arg1)); } @@ -259,7 +259,7 @@ static void _call_f_interfaceFromName_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkInterface)QNetworkInterface::interfaceFromName (arg1)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxy.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxy.cc index e8f77fa08..4fb4ae220 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxy.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxy.cc @@ -73,11 +73,11 @@ static void _call_ctor_QNetworkProxy_9632 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - quint16 arg3 = args ? args.read (heap) : (quint16)(0); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg5 = args ? args.read (heap) : (const QString &)(QString()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + quint16 arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QNetworkProxy (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5)); } @@ -96,7 +96,7 @@ static void _call_ctor_QNetworkProxy_2686 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); ret.write (new QNetworkProxy (arg1)); } @@ -175,7 +175,7 @@ static void _call_f_operator_excl__eq__c2686 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkProxy *)cls)->operator!= (arg1)); } @@ -194,7 +194,7 @@ static void _call_f_operator_eq__2686 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkProxy &)((QNetworkProxy *)cls)->operator= (arg1)); } @@ -213,7 +213,7 @@ static void _call_f_operator_eq__eq__c2686 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkProxy *)cls)->operator== (arg1)); } @@ -262,7 +262,7 @@ static void _call_f_setCapabilities_3647 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxy *)cls)->setCapabilities (arg1); } @@ -282,7 +282,7 @@ static void _call_f_setHostName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxy *)cls)->setHostName (arg1); } @@ -302,7 +302,7 @@ static void _call_f_setPassword_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxy *)cls)->setPassword (arg1); } @@ -322,7 +322,7 @@ static void _call_f_setPort_1100 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint16 arg1 = args.read (heap); + quint16 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxy *)cls)->setPort (arg1); } @@ -342,7 +342,7 @@ static void _call_f_setType_2889 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxy *)cls)->setType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -362,7 +362,7 @@ static void _call_f_setUser_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxy *)cls)->setUser (arg1); } @@ -427,7 +427,7 @@ static void _call_f_setApplicationProxy_2686 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QNetworkProxy::setApplicationProxy (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxyFactory.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxyFactory.cc index f9da09601..6c6b27869 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxyFactory.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxyFactory.cc @@ -52,7 +52,7 @@ static void _call_f_queryProxy_3220 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args ? args.read (heap) : (const QNetworkProxyQuery &)(QNetworkProxyQuery()); + const QNetworkProxyQuery &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QNetworkProxyQuery(), heap); ret.write > ((QList)((QNetworkProxyFactory *)cls)->queryProxy (arg1)); } @@ -71,7 +71,7 @@ static void _call_f_proxyForQuery_3220 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); + const QNetworkProxyQuery &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)QNetworkProxyFactory::proxyForQuery (arg1)); } @@ -90,7 +90,7 @@ static void _call_f_setApplicationProxyFactory_2723 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkProxyFactory *arg1 = args.read (heap); + QNetworkProxyFactory *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QNetworkProxyFactory::setApplicationProxyFactory (arg1); } @@ -110,7 +110,7 @@ static void _call_f_setUseSystemConfiguration_864 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QNetworkProxyFactory::setUseSystemConfiguration (arg1); } @@ -130,7 +130,7 @@ static void _call_f_systemProxyForQuery_3220 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args ? args.read (heap) : (const QNetworkProxyQuery &)(QNetworkProxyQuery()); + const QNetworkProxyQuery &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QNetworkProxyQuery(), heap); ret.write > ((QList)QNetworkProxyFactory::systemProxyForQuery (arg1)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxyQuery.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxyQuery.cc index c5ba25e63..9844df1f1 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxyQuery.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkProxyQuery.cc @@ -68,8 +68,8 @@ static void _call_ctor_QNetworkProxyQuery_5004 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::UrlRequest)); + const QUrl &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::UrlRequest), heap); ret.write (new QNetworkProxyQuery (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -94,10 +94,10 @@ static void _call_ctor_QNetworkProxyQuery_7904 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpSocket)); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpSocket), heap); ret.write (new QNetworkProxyQuery (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -120,9 +120,9 @@ static void _call_ctor_QNetworkProxyQuery_6320 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint16 arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpServer)); + quint16 arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpServer), heap); ret.write (new QNetworkProxyQuery (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -141,7 +141,7 @@ static void _call_ctor_QNetworkProxyQuery_3220 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); + const QNetworkProxyQuery &arg1 = gsi::arg_reader() (args, heap); ret.write (new QNetworkProxyQuery (arg1)); } @@ -175,7 +175,7 @@ static void _call_f_operator_excl__eq__c3220 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); + const QNetworkProxyQuery &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkProxyQuery *)cls)->operator!= (arg1)); } @@ -194,7 +194,7 @@ static void _call_f_operator_eq__3220 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); + const QNetworkProxyQuery &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkProxyQuery &)((QNetworkProxyQuery *)cls)->operator= (arg1)); } @@ -213,7 +213,7 @@ static void _call_f_operator_eq__eq__c3220 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); + const QNetworkProxyQuery &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkProxyQuery *)cls)->operator== (arg1)); } @@ -292,7 +292,7 @@ static void _call_f_setLocalPort_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxyQuery *)cls)->setLocalPort (arg1); } @@ -312,7 +312,7 @@ static void _call_f_setPeerHostName_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxyQuery *)cls)->setPeerHostName (arg1); } @@ -332,7 +332,7 @@ static void _call_f_setPeerPort_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxyQuery *)cls)->setPeerPort (arg1); } @@ -352,7 +352,7 @@ static void _call_f_setProtocolTag_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxyQuery *)cls)->setProtocolTag (arg1); } @@ -372,7 +372,7 @@ static void _call_f_setQueryType_3411 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxyQuery *)cls)->setQueryType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -392,7 +392,7 @@ static void _call_f_setUrl_1701 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxyQuery *)cls)->setUrl (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkReply.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkReply.cc index 5bbc3b8b5..20ac5978e 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkReply.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkReply.cc @@ -87,7 +87,7 @@ static void _call_f_attribute_c3072 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QNetworkReply *)cls)->attribute (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -137,7 +137,7 @@ static void _call_f_hasRawHeader_c2309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkReply *)cls)->hasRawHeader (arg1)); } @@ -156,7 +156,7 @@ static void _call_f_header_c3349 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QNetworkReply *)cls)->header (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -175,7 +175,7 @@ static void _call_f_ignoreSslErrors_2837 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkReply *)cls)->ignoreSslErrors (arg1); } @@ -286,7 +286,7 @@ static void _call_f_rawHeader_c2309 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QNetworkReply *)cls)->rawHeader (arg1)); } @@ -350,7 +350,7 @@ static void _call_f_setReadBufferSize_986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkReply *)cls)->setReadBufferSize (arg1); } @@ -370,7 +370,7 @@ static void _call_f_setSslConfiguration_3068 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkReply *)cls)->setSslConfiguration (arg1); } @@ -422,8 +422,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QNetworkReply::tr (arg1, arg2)); } @@ -446,9 +446,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QNetworkReply::tr (arg1, arg2, arg3)); } @@ -469,8 +469,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QNetworkReply::trUtf8 (arg1, arg2)); } @@ -493,9 +493,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QNetworkReply::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkRequest.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkRequest.cc index 7ac415486..2c787275f 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkRequest.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQNetworkRequest.cc @@ -53,7 +53,7 @@ static void _call_ctor_QNetworkRequest_1701 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args ? args.read (heap) : (const QUrl &)(QUrl()); + const QUrl &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QUrl(), heap); ret.write (new QNetworkRequest (arg1)); } @@ -72,7 +72,7 @@ static void _call_ctor_QNetworkRequest_2885 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); ret.write (new QNetworkRequest (arg1)); } @@ -93,8 +93,8 @@ static void _call_f_attribute_c5083 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args ? args.read (heap) : (const QVariant &)(QVariant()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QVariant(), heap); ret.write ((QVariant)((QNetworkRequest *)cls)->attribute (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -113,7 +113,7 @@ static void _call_f_hasRawHeader_c2309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkRequest *)cls)->hasRawHeader (arg1)); } @@ -132,7 +132,7 @@ static void _call_f_header_c3349 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QNetworkRequest *)cls)->header (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -151,7 +151,7 @@ static void _call_f_operator_excl__eq__c2885 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkRequest *)cls)->operator!= (arg1)); } @@ -170,7 +170,7 @@ static void _call_f_operator_eq__2885 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkRequest &)((QNetworkRequest *)cls)->operator= (arg1)); } @@ -189,7 +189,7 @@ static void _call_f_operator_eq__eq__c2885 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkRequest *)cls)->operator== (arg1)); } @@ -223,7 +223,7 @@ static void _call_f_rawHeader_c2309 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QNetworkRequest *)cls)->rawHeader (arg1)); } @@ -259,8 +259,8 @@ static void _call_f_setAttribute_5083 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkRequest *)cls)->setAttribute (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -282,8 +282,8 @@ static void _call_f_setHeader_5360 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkRequest *)cls)->setHeader (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -303,7 +303,7 @@ static void _call_f_setOriginatingObject_1302 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkRequest *)cls)->setOriginatingObject (arg1); } @@ -325,8 +325,8 @@ static void _call_f_setRawHeader_4510 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkRequest *)cls)->setRawHeader (arg1, arg2); } @@ -346,7 +346,7 @@ static void _call_f_setSslConfiguration_3068 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkRequest *)cls)->setSslConfiguration (arg1); } @@ -366,7 +366,7 @@ static void _call_f_setUrl_1701 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkRequest *)cls)->setUrl (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQSslCertificate.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQSslCertificate.cc index ffa7d9b18..9843015ee 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQSslCertificate.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQSslCertificate.cc @@ -55,8 +55,8 @@ static void _call_ctor_QSslCertificate_3702 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); ret.write (new QSslCertificate (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -77,8 +77,8 @@ static void _call_ctor_QSslCertificate_4564 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); + const QByteArray &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); ret.write (new QSslCertificate (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -97,7 +97,7 @@ static void _call_ctor_QSslCertificate_2823 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSslCertificate (arg1)); } @@ -132,7 +132,7 @@ static void _call_f_digest_c3331 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QCryptographicHash::Md5)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QCryptographicHash::Md5), heap); ret.write ((QByteArray)((QSslCertificate *)cls)->digest (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -226,7 +226,7 @@ static void _call_f_issuerInfo_c3178 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QSslCertificate *)cls)->issuerInfo (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -245,7 +245,7 @@ static void _call_f_issuerInfo_c2309 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QSslCertificate *)cls)->issuerInfo (arg1)); } @@ -264,7 +264,7 @@ static void _call_f_operator_excl__eq__c2823 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslCertificate *)cls)->operator!= (arg1)); } @@ -283,7 +283,7 @@ static void _call_f_operator_eq__2823 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSslCertificate &)((QSslCertificate *)cls)->operator= (arg1)); } @@ -302,7 +302,7 @@ static void _call_f_operator_eq__eq__c2823 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslCertificate *)cls)->operator== (arg1)); } @@ -351,7 +351,7 @@ static void _call_f_subjectInfo_c3178 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QSslCertificate *)cls)->subjectInfo (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -370,7 +370,7 @@ static void _call_f_subjectInfo_c2309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QSslCertificate *)cls)->subjectInfo (arg1)); } @@ -436,8 +436,8 @@ static void _call_f_fromData_4564 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); ret.write > ((QList)QSslCertificate::fromData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -458,8 +458,8 @@ static void _call_f_fromDevice_3702 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); ret.write > ((QList)QSslCertificate::fromDevice (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -482,9 +482,9 @@ static void _call_f_fromPath_6773 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegExp::FixedString)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegExp::FixedString), heap); ret.write > ((QList)QSslCertificate::fromPath (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQSslCipher.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQSslCipher.cc index bf80ccd21..fa2dfea26 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQSslCipher.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQSslCipher.cc @@ -67,8 +67,8 @@ static void _call_ctor_QSslCipher_4012 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QSslCipher (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -87,7 +87,7 @@ static void _call_ctor_QSslCipher_2303 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCipher &arg1 = args.read (heap); + const QSslCipher &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSslCipher (arg1)); } @@ -181,7 +181,7 @@ static void _call_f_operator_excl__eq__c2303 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCipher &arg1 = args.read (heap); + const QSslCipher &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslCipher *)cls)->operator!= (arg1)); } @@ -200,7 +200,7 @@ static void _call_f_operator_eq__2303 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCipher &arg1 = args.read (heap); + const QSslCipher &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSslCipher &)((QSslCipher *)cls)->operator= (arg1)); } @@ -219,7 +219,7 @@ static void _call_f_operator_eq__eq__c2303 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCipher &arg1 = args.read (heap); + const QSslCipher &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslCipher *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQSslConfiguration.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQSslConfiguration.cc index 372a2cde1..42abc2801 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQSslConfiguration.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQSslConfiguration.cc @@ -68,7 +68,7 @@ static void _call_ctor_QSslConfiguration_3068 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSslConfiguration (arg1)); } @@ -147,7 +147,7 @@ static void _call_f_operator_excl__eq__c3068 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslConfiguration *)cls)->operator!= (arg1)); } @@ -166,7 +166,7 @@ static void _call_f_operator_eq__3068 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSslConfiguration &)((QSslConfiguration *)cls)->operator= (arg1)); } @@ -185,7 +185,7 @@ static void _call_f_operator_eq__eq__c3068 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslConfiguration *)cls)->operator== (arg1)); } @@ -309,7 +309,7 @@ static void _call_f_setCaCertificates_3438 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setCaCertificates (arg1); } @@ -329,7 +329,7 @@ static void _call_f_setCiphers_2918 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setCiphers (arg1); } @@ -349,7 +349,7 @@ static void _call_f_setLocalCertificate_2823 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setLocalCertificate (arg1); } @@ -369,7 +369,7 @@ static void _call_f_setPeerVerifyDepth_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setPeerVerifyDepth (arg1); } @@ -389,7 +389,7 @@ static void _call_f_setPeerVerifyMode_2970 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setPeerVerifyMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -409,7 +409,7 @@ static void _call_f_setPrivateKey_1997 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslKey &arg1 = args.read (heap); + const QSslKey &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setPrivateKey (arg1); } @@ -429,7 +429,7 @@ static void _call_f_setProtocol_2095 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setProtocol (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -464,7 +464,7 @@ static void _call_f_setDefaultConfiguration_3068 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSslConfiguration::setDefaultConfiguration (arg1); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQSslError.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQSslError.cc index d4d93a355..0710244c9 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQSslError.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQSslError.cc @@ -66,7 +66,7 @@ static void _call_ctor_QSslError_2289 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QSslError (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -87,8 +87,8 @@ static void _call_ctor_QSslError_5004 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSslCertificate &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSslCertificate &arg2 = gsi::arg_reader() (args, heap); ret.write (new QSslError (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -107,7 +107,7 @@ static void _call_ctor_QSslError_2222 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslError &arg1 = args.read (heap); + const QSslError &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSslError (arg1)); } @@ -171,7 +171,7 @@ static void _call_f_operator_excl__eq__c2222 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslError &arg1 = args.read (heap); + const QSslError &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslError *)cls)->operator!= (arg1)); } @@ -190,7 +190,7 @@ static void _call_f_operator_eq__2222 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslError &arg1 = args.read (heap); + const QSslError &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSslError &)((QSslError *)cls)->operator= (arg1)); } @@ -209,7 +209,7 @@ static void _call_f_operator_eq__eq__c2222 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslError &arg1 = args.read (heap); + const QSslError &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslError *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQSslKey.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQSslKey.cc index 409c70a4f..9cdd4fb9d 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQSslKey.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQSslKey.cc @@ -74,11 +74,11 @@ static void _call_ctor_QSslKey_10374 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::PrivateKey)); - const QByteArray &arg5 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::PrivateKey), heap); + const QByteArray &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QSslKey (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref(), arg5)); } @@ -105,11 +105,11 @@ static void _call_ctor_QSslKey_9512 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::PrivateKey)); - const QByteArray &arg5 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::PrivateKey), heap); + const QByteArray &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QSslKey (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref(), arg5)); } @@ -128,7 +128,7 @@ static void _call_ctor_QSslKey_1997 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslKey &arg1 = args.read (heap); + const QSslKey &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSslKey (arg1)); } @@ -223,7 +223,7 @@ static void _call_f_operator_excl__eq__c1997 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslKey &arg1 = args.read (heap); + const QSslKey &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslKey *)cls)->operator!= (arg1)); } @@ -242,7 +242,7 @@ static void _call_f_operator_eq__1997 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslKey &arg1 = args.read (heap); + const QSslKey &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSslKey &)((QSslKey *)cls)->operator= (arg1)); } @@ -261,7 +261,7 @@ static void _call_f_operator_eq__eq__c1997 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslKey &arg1 = args.read (heap); + const QSslKey &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslKey *)cls)->operator== (arg1)); } @@ -280,7 +280,7 @@ static void _call_f_toDer_c2309 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QByteArray &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write ((QByteArray)((QSslKey *)cls)->toDer (arg1)); } @@ -299,7 +299,7 @@ static void _call_f_toPem_c2309 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QByteArray &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write ((QByteArray)((QSslKey *)cls)->toPem (arg1)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQSslSocket.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQSslSocket.cc index 8a880b4f3..6e3af45d0 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQSslSocket.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQSslSocket.cc @@ -74,7 +74,7 @@ static void _call_ctor_QSslSocket_1302 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSslSocket (arg1)); } @@ -109,7 +109,7 @@ static void _call_f_addCaCertificate_2823 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->addCaCertificate (arg1); } @@ -133,9 +133,9 @@ static void _call_f_addCaCertificates_6773 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegExp::FixedString)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegExp::FixedString), heap); ret.write ((bool)((QSslSocket *)cls)->addCaCertificates (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -154,7 +154,7 @@ static void _call_f_addCaCertificates_3438 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->addCaCertificates (arg1); } @@ -284,9 +284,9 @@ static void _call_f_connectToHostEncrypted_6151 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + const QString &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->connectToHostEncrypted (arg1, arg2, arg3); } @@ -312,10 +312,10 @@ static void _call_f_connectToHostEncrypted_8068 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + const QString &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->connectToHostEncrypted (arg1, arg2, arg3, arg4); } @@ -380,7 +380,7 @@ static void _call_f_ignoreSslErrors_2837 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->ignoreSslErrors (arg1); } @@ -566,7 +566,7 @@ static void _call_f_setCaCertificates_3438 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setCaCertificates (arg1); } @@ -586,7 +586,7 @@ static void _call_f_setCiphers_2918 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setCiphers (arg1); } @@ -606,7 +606,7 @@ static void _call_f_setCiphers_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setCiphers (arg1); } @@ -626,7 +626,7 @@ static void _call_f_setLocalCertificate_2823 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setLocalCertificate (arg1); } @@ -648,8 +648,8 @@ static void _call_f_setLocalCertificate_4280 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setLocalCertificate (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -669,7 +669,7 @@ static void _call_f_setPeerVerifyDepth_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setPeerVerifyDepth (arg1); } @@ -689,7 +689,7 @@ static void _call_f_setPeerVerifyMode_2970 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setPeerVerifyMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -709,7 +709,7 @@ static void _call_f_setPrivateKey_1997 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslKey &arg1 = args.read (heap); + const QSslKey &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setPrivateKey (arg1); } @@ -735,10 +735,10 @@ static void _call_f_setPrivateKey_8544 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Rsa)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const QByteArray &arg4 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Rsa), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); + const QByteArray &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setPrivateKey (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), arg4); } @@ -758,7 +758,7 @@ static void _call_f_setProtocol_2095 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setProtocol (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -778,7 +778,7 @@ static void _call_f_setReadBufferSize_986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setReadBufferSize (arg1); } @@ -802,9 +802,9 @@ static void _call_f_setSocketDescriptor_6993 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::ConnectedState)); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::ConnectedState), heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); ret.write ((bool)((QSslSocket *)cls)->setSocketDescriptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -825,8 +825,8 @@ static void _call_f_setSocketOption_5331 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setSocketOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -846,7 +846,7 @@ static void _call_f_setSslConfiguration_3068 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setSslConfiguration (arg1); } @@ -866,7 +866,7 @@ static void _call_f_socketOption_3320 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSslSocket *)cls)->socketOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -947,7 +947,7 @@ static void _call_f_waitForBytesWritten_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QSslSocket *)cls)->waitForBytesWritten (arg1)); } @@ -966,7 +966,7 @@ static void _call_f_waitForConnected_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QSslSocket *)cls)->waitForConnected (arg1)); } @@ -985,7 +985,7 @@ static void _call_f_waitForDisconnected_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QSslSocket *)cls)->waitForDisconnected (arg1)); } @@ -1004,7 +1004,7 @@ static void _call_f_waitForEncrypted_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QSslSocket *)cls)->waitForEncrypted (arg1)); } @@ -1023,7 +1023,7 @@ static void _call_f_waitForReadyRead_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QSslSocket *)cls)->waitForReadyRead (arg1)); } @@ -1042,7 +1042,7 @@ static void _call_f_addDefaultCaCertificate_2823 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSslSocket::addDefaultCaCertificate (arg1); } @@ -1066,9 +1066,9 @@ static void _call_f_addDefaultCaCertificates_6773 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegExp::FixedString)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegExp::FixedString), heap); ret.write ((bool)QSslSocket::addDefaultCaCertificates (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -1087,7 +1087,7 @@ static void _call_f_addDefaultCaCertificates_3438 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSslSocket::addDefaultCaCertificates (arg1); } @@ -1137,7 +1137,7 @@ static void _call_f_setDefaultCaCertificates_3438 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSslSocket::setDefaultCaCertificates (arg1); } @@ -1157,7 +1157,7 @@ static void _call_f_setDefaultCiphers_2918 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSslSocket::setDefaultCiphers (arg1); } @@ -1224,8 +1224,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSslSocket::tr (arg1, arg2)); } @@ -1248,9 +1248,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSslSocket::tr (arg1, arg2, arg3)); } @@ -1271,8 +1271,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSslSocket::trUtf8 (arg1, arg2)); } @@ -1295,9 +1295,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSslSocket::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQTcpServer.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQTcpServer.cc index ccf182d6f..4f523ca8d 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQTcpServer.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQTcpServer.cc @@ -134,8 +134,8 @@ static void _call_f_listen_3510 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args ? args.read (heap) : (const QHostAddress &)(QHostAddress::Any); - quint16 arg2 = args ? args.read (heap) : (quint16)(0); + const QHostAddress &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QHostAddress::Any, heap); + quint16 arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QTcpServer *)cls)->listen (arg1, arg2)); } @@ -244,7 +244,7 @@ static void _call_f_setMaxPendingConnections_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer *)cls)->setMaxPendingConnections (arg1); } @@ -264,7 +264,7 @@ static void _call_f_setProxy_2686 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer *)cls)->setProxy (arg1); } @@ -284,7 +284,7 @@ static void _call_f_setSocketDescriptor_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTcpServer *)cls)->setSocketDescriptor (arg1)); } @@ -320,8 +320,8 @@ static void _call_f_waitForNewConnection_1709 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QTcpServer *)cls)->waitForNewConnection (arg1, arg2)); } @@ -342,8 +342,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTcpServer::tr (arg1, arg2)); } @@ -366,9 +366,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTcpServer::tr (arg1, arg2, arg3)); } @@ -389,8 +389,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTcpServer::trUtf8 (arg1, arg2)); } @@ -413,9 +413,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTcpServer::trUtf8 (arg1, arg2, arg3)); } @@ -663,7 +663,7 @@ static void _call_ctor_QTcpServer_Adaptor_1302 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTcpServer_Adaptor (arg1)); } @@ -729,7 +729,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTcpServer_Adaptor *)cls)->emitter_QTcpServer_destroyed_1302 (arg1); } @@ -896,7 +896,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTcpServer_Adaptor *)cls)->fp_QTcpServer_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQTcpSocket.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQTcpSocket.cc index 5b60f4326..e6dd827b0 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQTcpSocket.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQTcpSocket.cc @@ -69,7 +69,7 @@ static void _call_ctor_QTcpSocket_1302 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTcpSocket (arg1)); } @@ -90,8 +90,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTcpSocket::tr (arg1, arg2)); } @@ -114,9 +114,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTcpSocket::tr (arg1, arg2, arg3)); } @@ -137,8 +137,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QTcpSocket::trUtf8 (arg1, arg2)); } @@ -161,9 +161,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QTcpSocket::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQUdpSocket.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQUdpSocket.cc index ca20cf7ba..9d04cd357 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQUdpSocket.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQUdpSocket.cc @@ -69,7 +69,7 @@ static void _call_ctor_QUdpSocket_1302 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUdpSocket (arg1)); } @@ -90,8 +90,8 @@ static void _call_f_bind_3510 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUdpSocket *)cls)->bind (arg1, arg2)); } @@ -110,7 +110,7 @@ static void _call_f_bind_1100 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint16 arg1 = args ? args.read (heap) : (quint16)(0); + quint16 arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QUdpSocket *)cls)->bind (arg1)); } @@ -133,9 +133,9 @@ static void _call_f_bind_6404 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QUdpSocket *)cls)->bind (arg1, arg2, arg3)); } @@ -156,8 +156,8 @@ static void _call_f_bind_3994 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint16 arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + quint16 arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QUdpSocket *)cls)->bind (arg1, arg2)); } @@ -212,10 +212,10 @@ static void _call_f_writeDatagram_6011 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - qint64 arg2 = args.read (heap); - const QHostAddress &arg3 = args.read (heap); - quint16 arg4 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); + const QHostAddress &arg3 = gsi::arg_reader() (args, heap); + quint16 arg4 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QUdpSocket *)cls)->writeDatagram (arg1, arg2, arg3, arg4)); } @@ -238,9 +238,9 @@ static void _call_f_writeDatagram_5711 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const QHostAddress &arg2 = args.read (heap); - quint16 arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const QHostAddress &arg2 = gsi::arg_reader() (args, heap); + quint16 arg3 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QUdpSocket *)cls)->writeDatagram (arg1, arg2, arg3)); } @@ -261,8 +261,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QUdpSocket::tr (arg1, arg2)); } @@ -285,9 +285,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QUdpSocket::tr (arg1, arg2, arg3)); } @@ -308,8 +308,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QUdpSocket::trUtf8 (arg1, arg2)); } @@ -332,9 +332,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QUdpSocket::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtNetwork/gsiDeclQUrlInfo.cc b/src/gsiqt/qt4/QtNetwork/gsiDeclQUrlInfo.cc index 229dc127d..0023b7443 100644 --- a/src/gsiqt/qt4/QtNetwork/gsiDeclQUrlInfo.cc +++ b/src/gsiqt/qt4/QtNetwork/gsiDeclQUrlInfo.cc @@ -216,7 +216,7 @@ static void _call_f_operator_excl__eq__c2097 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrlInfo &arg1 = args.read (heap); + const QUrlInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUrlInfo *)cls)->operator!= (arg1)); } @@ -235,7 +235,7 @@ static void _call_f_operator_eq__2097 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrlInfo &arg1 = args.read (heap); + const QUrlInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrlInfo &)((QUrlInfo *)cls)->operator= (arg1)); } @@ -254,7 +254,7 @@ static void _call_f_operator_eq__eq__c2097 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrlInfo &arg1 = args.read (heap); + const QUrlInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUrlInfo *)cls)->operator== (arg1)); } @@ -303,7 +303,7 @@ static void _call_f_setDir_864 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo *)cls)->setDir (arg1); } @@ -323,7 +323,7 @@ static void _call_f_setFile_864 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo *)cls)->setFile (arg1); } @@ -343,7 +343,7 @@ static void _call_f_setGroup_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo *)cls)->setGroup (arg1); } @@ -363,7 +363,7 @@ static void _call_f_setLastModified_2175 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo *)cls)->setLastModified (arg1); } @@ -383,7 +383,7 @@ static void _call_f_setLastRead_2175 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo *)cls)->setLastRead (arg1); } @@ -403,7 +403,7 @@ static void _call_f_setName_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo *)cls)->setName (arg1); } @@ -423,7 +423,7 @@ static void _call_f_setOwner_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo *)cls)->setOwner (arg1); } @@ -443,7 +443,7 @@ static void _call_f_setPermissions_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo *)cls)->setPermissions (arg1); } @@ -463,7 +463,7 @@ static void _call_f_setReadable_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo *)cls)->setReadable (arg1); } @@ -483,7 +483,7 @@ static void _call_f_setSize_986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo *)cls)->setSize (arg1); } @@ -503,7 +503,7 @@ static void _call_f_setSymLink_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo *)cls)->setSymLink (arg1); } @@ -523,7 +523,7 @@ static void _call_f_setWritable_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlInfo *)cls)->setWritable (arg1); } @@ -562,9 +562,9 @@ static void _call_f_equal_4745 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrlInfo &arg1 = args.read (heap); - const QUrlInfo &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QUrlInfo &arg1 = gsi::arg_reader() (args, heap); + const QUrlInfo &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)QUrlInfo::equal (arg1, arg2, arg3)); } @@ -587,9 +587,9 @@ static void _call_f_greaterThan_4745 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrlInfo &arg1 = args.read (heap); - const QUrlInfo &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QUrlInfo &arg1 = gsi::arg_reader() (args, heap); + const QUrlInfo &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)QUrlInfo::greaterThan (arg1, arg2, arg3)); } @@ -612,9 +612,9 @@ static void _call_f_lessThan_4745 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrlInfo &arg1 = args.read (heap); - const QUrlInfo &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QUrlInfo &arg1 = gsi::arg_reader() (args, heap); + const QUrlInfo &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)QUrlInfo::lessThan (arg1, arg2, arg3)); } @@ -893,7 +893,7 @@ static void _call_ctor_QUrlInfo_Adaptor_2097 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrlInfo &arg1 = args.read (heap); + const QUrlInfo &arg1 = gsi::arg_reader() (args, heap); ret.write (new QUrlInfo_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlDatabase.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlDatabase.cc index 8c02032c0..3f9d3f800 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlDatabase.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlDatabase.cc @@ -71,7 +71,7 @@ static void _call_ctor_QSqlDatabase_2487 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlDatabase &arg1 = args.read (heap); + const QSqlDatabase &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlDatabase (arg1)); } @@ -196,7 +196,7 @@ static void _call_f_exec_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QSqlQuery)((QSqlDatabase *)cls)->exec (arg1)); } @@ -322,8 +322,8 @@ static void _call_f_open_3942 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDatabase *)cls)->open (arg1, arg2)); } @@ -342,7 +342,7 @@ static void _call_f_operator_eq__2487 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlDatabase &arg1 = args.read (heap); + const QSqlDatabase &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlDatabase &)((QSqlDatabase *)cls)->operator= (arg1)); } @@ -391,7 +391,7 @@ static void _call_f_primaryIndex_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlIndex)((QSqlDatabase *)cls)->primaryIndex (arg1)); } @@ -410,7 +410,7 @@ static void _call_f_record_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRecord)((QSqlDatabase *)cls)->record (arg1)); } @@ -444,7 +444,7 @@ static void _call_f_setConnectOptions_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDatabase *)cls)->setConnectOptions (arg1); } @@ -464,7 +464,7 @@ static void _call_f_setDatabaseName_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDatabase *)cls)->setDatabaseName (arg1); } @@ -484,7 +484,7 @@ static void _call_f_setHostName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDatabase *)cls)->setHostName (arg1); } @@ -504,7 +504,7 @@ static void _call_f_setNumericalPrecisionPolicy_3429 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDatabase *)cls)->setNumericalPrecisionPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -524,7 +524,7 @@ static void _call_f_setPassword_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDatabase *)cls)->setPassword (arg1); } @@ -544,7 +544,7 @@ static void _call_f_setPort_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDatabase *)cls)->setPort (arg1); } @@ -564,7 +564,7 @@ static void _call_f_setUserName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDatabase *)cls)->setUserName (arg1); } @@ -584,7 +584,7 @@ static void _call_f_tables_c1843 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSql::Tables)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSql::Tables), heap); ret.write ((QStringList)((QSqlDatabase *)cls)->tables (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -635,8 +635,8 @@ static void _call_f_addDatabase_3942 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QLatin1String(QSqlDatabase::defaultConnection)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QLatin1String(QSqlDatabase::defaultConnection), heap); ret.write ((QSqlDatabase)QSqlDatabase::addDatabase (arg1, arg2)); } @@ -657,8 +657,8 @@ static void _call_f_addDatabase_3544 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSqlDriver *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QLatin1String(QSqlDatabase::defaultConnection)); + QSqlDriver *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QLatin1String(QSqlDatabase::defaultConnection), heap); ret.write ((QSqlDatabase)QSqlDatabase::addDatabase (arg1, arg2)); } @@ -679,8 +679,8 @@ static void _call_f_cloneDatabase_4404 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlDatabase &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QSqlDatabase &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSqlDatabase)QSqlDatabase::cloneDatabase (arg1, arg2)); } @@ -714,7 +714,7 @@ static void _call_f_contains_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QLatin1String(QSqlDatabase::defaultConnection)); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QLatin1String(QSqlDatabase::defaultConnection), heap); ret.write ((bool)QSqlDatabase::contains (arg1)); } @@ -735,8 +735,8 @@ static void _call_f_database_2781 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QLatin1String(QSqlDatabase::defaultConnection)); - bool arg2 = args ? args.read (heap) : (bool)(true); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QLatin1String(QSqlDatabase::defaultConnection), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); ret.write ((QSqlDatabase)QSqlDatabase::database (arg1, arg2)); } @@ -770,7 +770,7 @@ static void _call_f_isDriverAvailable_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QSqlDatabase::isDriverAvailable (arg1)); } @@ -791,8 +791,8 @@ static void _call_f_registerSqlDriver_4643 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QSqlDriverCreatorBase *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QSqlDriverCreatorBase *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSqlDatabase::registerSqlDriver (arg1, arg2); } @@ -812,7 +812,7 @@ static void _call_f_removeDatabase_2025 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSqlDatabase::removeDatabase (arg1); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlDriver.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlDriver.cc index 1c07db255..633374cc9 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlDriver.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlDriver.cc @@ -136,8 +136,8 @@ static void _call_f_escapeIdentifier_c4919 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QSqlDriver *)cls)->escapeIdentifier (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -158,8 +158,8 @@ static void _call_f_formatValue_c2938 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((QString)((QSqlDriver *)cls)->formatValue (arg1, arg2)); } @@ -193,7 +193,7 @@ static void _call_f_hasFeature_c2893 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QSqlDriver *)cls)->hasFeature (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -214,8 +214,8 @@ static void _call_f_isIdentifierEscaped_c4919 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QSqlDriver *)cls)->isIdentifierEscaped (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -304,12 +304,12 @@ static void _call_f_open_10352 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - int arg5 = args ? args.read (heap) : (int)(-1); - const QString &arg6 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + const QString &arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QSqlDriver *)cls)->open (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -328,7 +328,7 @@ static void _call_f_primaryIndex_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlIndex)((QSqlDriver *)cls)->primaryIndex (arg1)); } @@ -347,7 +347,7 @@ static void _call_f_record_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRecord)((QSqlDriver *)cls)->record (arg1)); } @@ -381,7 +381,7 @@ static void _call_f_setNumericalPrecisionPolicy_3429 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver *)cls)->setNumericalPrecisionPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -407,10 +407,10 @@ static void _call_f_sqlStatement_c7794 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - const QSqlRecord &arg3 = args.read (heap); - bool arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QSqlRecord &arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)((QSqlDriver *)cls)->sqlStatement (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -431,8 +431,8 @@ static void _call_f_stripDelimiters_c4919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QSqlDriver *)cls)->stripDelimiters (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -451,7 +451,7 @@ static void _call_f_subscribeToNotification_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver *)cls)->subscribeToNotification (arg1)); } @@ -485,7 +485,7 @@ static void _call_f_tables_c1843 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QStringList)((QSqlDriver *)cls)->tables (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -504,7 +504,7 @@ static void _call_f_unsubscribeFromNotification_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver *)cls)->unsubscribeFromNotification (arg1)); } @@ -525,8 +525,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSqlDriver::tr (arg1, arg2)); } @@ -549,9 +549,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSqlDriver::tr (arg1, arg2, arg3)); } @@ -572,8 +572,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSqlDriver::trUtf8 (arg1, arg2)); } @@ -596,9 +596,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSqlDriver::trUtf8 (arg1, arg2, arg3)); } @@ -1126,7 +1126,7 @@ static void _call_ctor_QSqlDriver_Adaptor_1302 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSqlDriver_Adaptor (arg1)); } @@ -1269,7 +1269,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSqlDriver_Adaptor *)cls)->emitter_QSqlDriver_destroyed_1302 (arg1); } @@ -1456,8 +1456,8 @@ static void _call_fp_isIdentifierEscapedImplementation_c4919 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->fp_QSqlDriver_isIdentifierEscapedImplementation_c4919 (arg1, arg2)); } @@ -1494,7 +1494,7 @@ static void _call_emitter_notification_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSqlDriver_Adaptor *)cls)->emitter_QSqlDriver_notification_2025 (arg1); } @@ -1573,7 +1573,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSqlDriver_Adaptor *)cls)->fp_QSqlDriver_receivers_c1731 (arg1)); } @@ -1753,8 +1753,8 @@ static void _call_fp_stripDelimitersImplementation_c4919 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QSqlDriver_Adaptor *)cls)->fp_QSqlDriver_stripDelimitersImplementation_c4919 (arg1, arg2)); } @@ -1772,7 +1772,7 @@ static void _call_fp_subscribeToNotificationImplementation_2025 (const qt_gsi::G { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->fp_QSqlDriver_subscribeToNotificationImplementation_2025 (arg1)); } @@ -1851,7 +1851,7 @@ static void _call_fp_unsubscribeFromNotificationImplementation_2025 (const qt_gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->fp_QSqlDriver_unsubscribeFromNotificationImplementation_2025 (arg1)); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlError.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlError.cc index cfb164816..cb831c9b0 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlError.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlError.cc @@ -56,10 +56,10 @@ static void _call_ctor_QSqlError_6892 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSqlError::NoError)); - int arg4 = args ? args.read (heap) : (int)(-1); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSqlError::NoError), heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write (new QSqlError (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -78,7 +78,7 @@ static void _call_ctor_QSqlError_2220 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlError (arg1)); } @@ -157,7 +157,7 @@ static void _call_f_operator_eq__2220 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlError &)((QSqlError *)cls)->operator= (arg1)); } @@ -176,7 +176,7 @@ static void _call_f_setDatabaseText_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlError *)cls)->setDatabaseText (arg1); } @@ -196,7 +196,7 @@ static void _call_f_setDriverText_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlError *)cls)->setDriverText (arg1); } @@ -216,7 +216,7 @@ static void _call_f_setNumber_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlError *)cls)->setNumber (arg1); } @@ -236,7 +236,7 @@ static void _call_f_setType_2399 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlError *)cls)->setType (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlField.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlField.cc index 4608cef87..db7efa94f 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlField.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlField.cc @@ -52,8 +52,8 @@ static void _call_ctor_QSqlField_3693 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QVariant::Invalid)); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QVariant::Invalid), heap); ret.write (new QSqlField (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -72,7 +72,7 @@ static void _call_ctor_QSqlField_2182 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlField (arg1)); } @@ -227,7 +227,7 @@ static void _call_f_operator_excl__eq__c2182 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlField *)cls)->operator!= (arg1)); } @@ -246,7 +246,7 @@ static void _call_f_operator_eq__2182 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlField &)((QSqlField *)cls)->operator= (arg1)); } @@ -265,7 +265,7 @@ static void _call_f_operator_eq__eq__c2182 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlField *)cls)->operator== (arg1)); } @@ -314,7 +314,7 @@ static void _call_f_setAutoValue_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setAutoValue (arg1); } @@ -334,7 +334,7 @@ static void _call_f_setDefaultValue_2119 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setDefaultValue (arg1); } @@ -354,7 +354,7 @@ static void _call_f_setGenerated_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setGenerated (arg1); } @@ -374,7 +374,7 @@ static void _call_f_setLength_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setLength (arg1); } @@ -394,7 +394,7 @@ static void _call_f_setName_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setName (arg1); } @@ -414,7 +414,7 @@ static void _call_f_setPrecision_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setPrecision (arg1); } @@ -434,7 +434,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setReadOnly (arg1); } @@ -454,7 +454,7 @@ static void _call_f_setRequired_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setRequired (arg1); } @@ -474,7 +474,7 @@ static void _call_f_setRequiredStatus_2898 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setRequiredStatus (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -494,7 +494,7 @@ static void _call_f_setSqlType_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setSqlType (arg1); } @@ -514,7 +514,7 @@ static void _call_f_setType_1776 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -534,7 +534,7 @@ static void _call_f_setValue_2119 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setValue (arg1); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlIndex.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlIndex.cc index 79b7615c0..2d3d811cd 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlIndex.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlIndex.cc @@ -54,8 +54,8 @@ static void _call_ctor_QSqlIndex_3942 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QSqlIndex (arg1, arg2)); } @@ -74,7 +74,7 @@ static void _call_ctor_QSqlIndex_2202 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlIndex &arg1 = args.read (heap); + const QSqlIndex &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlIndex (arg1)); } @@ -93,7 +93,7 @@ static void _call_f_append_2182 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlIndex *)cls)->append (arg1); } @@ -115,8 +115,8 @@ static void _call_f_append_2938 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlIndex *)cls)->append (arg1, arg2); } @@ -151,7 +151,7 @@ static void _call_f_isDescending_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlIndex *)cls)->isDescending (arg1)); } @@ -185,7 +185,7 @@ static void _call_f_operator_eq__2202 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlIndex &arg1 = args.read (heap); + const QSqlIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlIndex &)((QSqlIndex *)cls)->operator= (arg1)); } @@ -204,7 +204,7 @@ static void _call_f_setCursorName_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlIndex *)cls)->setCursorName (arg1); } @@ -226,8 +226,8 @@ static void _call_f_setDescending_1523 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlIndex *)cls)->setDescending (arg1, arg2); } @@ -247,7 +247,7 @@ static void _call_f_setName_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlIndex *)cls)->setName (arg1); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlQuery.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlQuery.cc index 6791245d1..f15903cc5 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlQuery.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlQuery.cc @@ -55,7 +55,7 @@ static void _call_ctor_QSqlQuery_1646 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSqlResult *arg1 = args.read (heap); + QSqlResult *arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlQuery (arg1)); } @@ -76,8 +76,8 @@ static void _call_ctor_QSqlQuery_3527 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); - QSqlDatabase arg2 = args ? args.read (heap) : (QSqlDatabase)(QSqlDatabase()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QSqlDatabase arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSqlDatabase(), heap); ret.write (new QSqlQuery (arg1, arg2)); } @@ -96,7 +96,7 @@ static void _call_ctor_QSqlQuery_1610 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSqlDatabase arg1 = args.read (heap); + QSqlDatabase arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlQuery (arg1)); } @@ -115,7 +115,7 @@ static void _call_ctor_QSqlQuery_2232 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlQuery &arg1 = args.read (heap); + const QSqlQuery &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlQuery (arg1)); } @@ -136,8 +136,8 @@ static void _call_f_addBindValue_4937 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QSql::In); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QSql::In, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQuery *)cls)->addBindValue (arg1, arg2); } @@ -176,9 +176,9 @@ static void _call_f_bindValue_6854 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QSql::In); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QSql::In, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQuery *)cls)->bindValue (arg1, arg2, arg3); } @@ -202,9 +202,9 @@ static void _call_f_bindValue_5596 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QSql::In); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QSql::In, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQuery *)cls)->bindValue (arg1, arg2, arg3); } @@ -224,7 +224,7 @@ static void _call_f_boundValue_c2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlQuery *)cls)->boundValue (arg1)); } @@ -243,7 +243,7 @@ static void _call_f_boundValue_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlQuery *)cls)->boundValue (arg1)); } @@ -308,7 +308,7 @@ static void _call_f_exec_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQuery *)cls)->exec (arg1)); } @@ -342,7 +342,7 @@ static void _call_f_execBatch_3290 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSqlQuery::ValuesAsRows)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSqlQuery::ValuesAsRows), heap); ret.write ((bool)((QSqlQuery *)cls)->execBatch (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -437,7 +437,7 @@ static void _call_f_isNull_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQuery *)cls)->isNull (arg1)); } @@ -606,7 +606,7 @@ static void _call_f_operator_eq__2232 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlQuery &arg1 = args.read (heap); + const QSqlQuery &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlQuery &)((QSqlQuery *)cls)->operator= (arg1)); } @@ -625,7 +625,7 @@ static void _call_f_prepare_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQuery *)cls)->prepare (arg1)); } @@ -691,8 +691,8 @@ static void _call_f_seek_1523 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((bool)((QSqlQuery *)cls)->seek (arg1, arg2)); } @@ -711,7 +711,7 @@ static void _call_f_setForwardOnly_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQuery *)cls)->setForwardOnly (arg1); } @@ -731,7 +731,7 @@ static void _call_f_setNumericalPrecisionPolicy_3429 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQuery *)cls)->setNumericalPrecisionPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -766,7 +766,7 @@ static void _call_f_value_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlQuery *)cls)->value (arg1)); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlQueryModel.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlQueryModel.cc index 4a14e7e2f..50c5b00a3 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlQueryModel.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlQueryModel.cc @@ -76,7 +76,7 @@ static void _call_f_canFetchMore_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel *)cls)->canFetchMore (arg1)); } @@ -111,7 +111,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlQueryModel *)cls)->columnCount (arg1)); } @@ -132,8 +132,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlQueryModel *)cls)->data (arg1, arg2)); } @@ -152,7 +152,7 @@ static void _call_f_fetchMore_2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel *)cls)->fetchMore (arg1); } @@ -176,9 +176,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlQueryModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -201,9 +201,9 @@ static void _call_f_insertColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel *)cls)->insertColumns (arg1, arg2, arg3)); } @@ -252,7 +252,7 @@ static void _call_f_record_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRecord)((QSqlQueryModel *)cls)->record (arg1)); } @@ -290,9 +290,9 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel *)cls)->removeColumns (arg1, arg2, arg3)); } @@ -311,7 +311,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlQueryModel *)cls)->rowCount (arg1)); } @@ -336,10 +336,10 @@ static void _call_f_setHeaderData_5242 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(Qt::EditRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlQueryModel *)cls)->setHeaderData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -358,7 +358,7 @@ static void _call_f_setQuery_2232 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlQuery &arg1 = args.read (heap); + const QSqlQuery &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel *)cls)->setQuery (arg1); } @@ -380,8 +380,8 @@ static void _call_f_setQuery_4404 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QSqlDatabase &arg2 = args ? args.read (heap) : (const QSqlDatabase &)(QSqlDatabase()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QSqlDatabase &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSqlDatabase(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel *)cls)->setQuery (arg1, arg2); } @@ -403,8 +403,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSqlQueryModel::tr (arg1, arg2)); } @@ -427,9 +427,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSqlQueryModel::tr (arg1, arg2, arg3)); } @@ -450,8 +450,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSqlQueryModel::trUtf8 (arg1, arg2)); } @@ -474,9 +474,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSqlQueryModel::trUtf8 (arg1, arg2, arg3)); } @@ -1275,7 +1275,7 @@ static void _call_ctor_QSqlQueryModel_Adaptor_1302 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSqlQueryModel_Adaptor (arg1)); } @@ -1297,9 +1297,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1322,9 +1322,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1351,11 +1351,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1381,11 +1381,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1407,9 +1407,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1432,9 +1432,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -1516,8 +1516,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_changePersistentIndex_4682 (arg1, arg2); } @@ -1538,8 +1538,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -1629,9 +1629,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -1653,9 +1653,9 @@ static void _call_fp_createIndex_c2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_createIndex_c2085 (arg1, arg2, arg3)); } @@ -1677,9 +1677,9 @@ static void _call_fp_createIndex_c2416 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quint32 arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quint32 arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_createIndex_c2416 (arg1, arg2, arg3)); } @@ -1749,8 +1749,8 @@ static void _call_emitter_dataChanged_4682 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QSqlQueryModel_Adaptor *)cls)->emitter_QSqlQueryModel_dataChanged_4682 (arg1, arg2); } @@ -1774,10 +1774,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -1795,7 +1795,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSqlQueryModel_Adaptor *)cls)->emitter_QSqlQueryModel_destroyed_1302 (arg1); } @@ -1874,8 +1874,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_encodeData_c4599 (arg1, arg2); } @@ -2128,9 +2128,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QSqlQueryModel_Adaptor *)cls)->emitter_QSqlQueryModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2177,7 +2177,7 @@ static void _call_fp_indexInQuery_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_indexInQuery_c2395 (arg1)); } @@ -2415,7 +2415,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_receivers_c1731 (arg1)); } @@ -2650,7 +2650,7 @@ static void _call_fp_setLastError_2220 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_setLastError_2220 (arg1); } @@ -2669,7 +2669,7 @@ static void _call_fp_setRoleNames_3419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHash &arg1 = args.read & > (heap); + const QHash &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_setRoleNames_3419 (arg1); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlRecord.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlRecord.cc index 3b7426f62..16cab9d38 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlRecord.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlRecord.cc @@ -66,7 +66,7 @@ static void _call_ctor_QSqlRecord_2305 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlRecord &arg1 = args.read (heap); + const QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlRecord (arg1)); } @@ -85,7 +85,7 @@ static void _call_f_append_2182 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->append (arg1); } @@ -137,7 +137,7 @@ static void _call_f_contains_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRecord *)cls)->contains (arg1)); } @@ -171,7 +171,7 @@ static void _call_f_field_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlField)((QSqlRecord *)cls)->field (arg1)); } @@ -190,7 +190,7 @@ static void _call_f_field_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlField)((QSqlRecord *)cls)->field (arg1)); } @@ -209,7 +209,7 @@ static void _call_f_fieldName_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QSqlRecord *)cls)->fieldName (arg1)); } @@ -228,7 +228,7 @@ static void _call_f_indexOf_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSqlRecord *)cls)->indexOf (arg1)); } @@ -249,8 +249,8 @@ static void _call_f_insert_2841 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlField &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlField &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->insert (arg1, arg2); } @@ -285,7 +285,7 @@ static void _call_f_isGenerated_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRecord *)cls)->isGenerated (arg1)); } @@ -304,7 +304,7 @@ static void _call_f_isGenerated_c2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRecord *)cls)->isGenerated (arg1)); } @@ -323,7 +323,7 @@ static void _call_f_isNull_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRecord *)cls)->isNull (arg1)); } @@ -342,7 +342,7 @@ static void _call_f_isNull_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRecord *)cls)->isNull (arg1)); } @@ -361,7 +361,7 @@ static void _call_f_operator_excl__eq__c2305 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlRecord &arg1 = args.read (heap); + const QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRecord *)cls)->operator!= (arg1)); } @@ -380,7 +380,7 @@ static void _call_f_operator_eq__2305 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlRecord &arg1 = args.read (heap); + const QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRecord &)((QSqlRecord *)cls)->operator= (arg1)); } @@ -399,7 +399,7 @@ static void _call_f_operator_eq__eq__c2305 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlRecord &arg1 = args.read (heap); + const QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRecord *)cls)->operator== (arg1)); } @@ -418,7 +418,7 @@ static void _call_f_remove_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->remove (arg1); } @@ -440,8 +440,8 @@ static void _call_f_replace_2841 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlField &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlField &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->replace (arg1, arg2); } @@ -463,8 +463,8 @@ static void _call_f_setGenerated_2781 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->setGenerated (arg1, arg2); } @@ -486,8 +486,8 @@ static void _call_f_setGenerated_1523 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->setGenerated (arg1, arg2); } @@ -507,7 +507,7 @@ static void _call_f_setNull_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->setNull (arg1); } @@ -527,7 +527,7 @@ static void _call_f_setNull_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->setNull (arg1); } @@ -549,8 +549,8 @@ static void _call_f_setValue_2778 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->setValue (arg1, arg2); } @@ -572,8 +572,8 @@ static void _call_f_setValue_4036 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->setValue (arg1, arg2); } @@ -593,7 +593,7 @@ static void _call_f_value_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlRecord *)cls)->value (arg1)); } @@ -612,7 +612,7 @@ static void _call_f_value_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlRecord *)cls)->value (arg1)); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelation.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelation.cc index af5e99d73..1fa5e167c 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelation.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelation.cc @@ -69,9 +69,9 @@ static void _call_ctor_QSqlRelation_5859 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write (new QSqlRelation (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelationalTableModel.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelationalTableModel.cc index dcb95811a..31b36672b 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelationalTableModel.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlRelationalTableModel.cc @@ -97,8 +97,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlRelationalTableModel *)cls)->data (arg1, arg2)); } @@ -117,7 +117,7 @@ static void _call_f_relation_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRelation)((QSqlRelationalTableModel *)cls)->relation (arg1)); } @@ -136,7 +136,7 @@ static void _call_f_relationModel_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlTableModel *)((QSqlRelationalTableModel *)cls)->relationModel (arg1)); } @@ -159,9 +159,9 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel *)cls)->removeColumns (arg1, arg2, arg3)); } @@ -180,7 +180,7 @@ static void _call_f_revertRow_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel *)cls)->revertRow (arg1); } @@ -219,9 +219,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlRelationalTableModel *)cls)->setData (arg1, arg2, arg3)); } @@ -242,8 +242,8 @@ static void _call_f_setRelation_3187 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlRelation &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlRelation &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel *)cls)->setRelation (arg1, arg2); } @@ -263,7 +263,7 @@ static void _call_f_setTable_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel *)cls)->setTable (arg1); } @@ -285,8 +285,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSqlRelationalTableModel::tr (arg1, arg2)); } @@ -309,9 +309,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSqlRelationalTableModel::tr (arg1, arg2, arg3)); } @@ -332,8 +332,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSqlRelationalTableModel::trUtf8 (arg1, arg2)); } @@ -356,9 +356,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSqlRelationalTableModel::trUtf8 (arg1, arg2, arg3)); } @@ -1405,8 +1405,8 @@ static void _call_ctor_QSqlRelationalTableModel_Adaptor_2804 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - QSqlDatabase arg2 = args ? args.read (heap) : (QSqlDatabase)(QSqlDatabase()); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QSqlDatabase arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSqlDatabase(), heap); ret.write (new QSqlRelationalTableModel_Adaptor (arg1, arg2)); } @@ -1424,7 +1424,7 @@ static void _call_emitter_beforeDelete_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_beforeDelete_767 (arg1); } @@ -1442,7 +1442,7 @@ static void _call_emitter_beforeInsert_1610 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSqlRecord &arg1 = args.read (heap); + QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_beforeInsert_1610 (arg1); } @@ -1462,8 +1462,8 @@ static void _call_emitter_beforeUpdate_2269 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_beforeUpdate_2269 (arg1, arg2); } @@ -1485,9 +1485,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1510,9 +1510,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1539,11 +1539,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1569,11 +1569,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1595,9 +1595,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1620,9 +1620,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -1704,8 +1704,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_changePersistentIndex_4682 (arg1, arg2); } @@ -1726,8 +1726,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -1817,9 +1817,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -1841,9 +1841,9 @@ static void _call_fp_createIndex_c2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_createIndex_c2085 (arg1, arg2, arg3)); } @@ -1865,9 +1865,9 @@ static void _call_fp_createIndex_c2416 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quint32 arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quint32 arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_createIndex_c2416 (arg1, arg2, arg3)); } @@ -1937,8 +1937,8 @@ static void _call_emitter_dataChanged_4682 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_dataChanged_4682 (arg1, arg2); } @@ -1962,10 +1962,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -2006,7 +2006,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_destroyed_1302 (arg1); } @@ -2085,8 +2085,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_encodeData_c4599 (arg1, arg2); } @@ -2339,9 +2339,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2388,7 +2388,7 @@ static void _call_fp_indexInQuery_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_indexInQuery_c2395 (arg1)); } @@ -2650,8 +2650,8 @@ static void _call_emitter_primeInsert_2269 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_primeInsert_2269 (arg1, arg2); } @@ -2689,7 +2689,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_receivers_c1731 (arg1)); } @@ -3057,7 +3057,7 @@ static void _call_fp_setLastError_2220 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_setLastError_2220 (arg1); } @@ -3076,7 +3076,7 @@ static void _call_fp_setPrimaryKey_2202 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlIndex &arg1 = args.read (heap); + const QSqlIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_setPrimaryKey_2202 (arg1); } @@ -3095,7 +3095,7 @@ static void _call_fp_setQuery_2232 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlQuery &arg1 = args.read (heap); + const QSqlQuery &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_setQuery_2232 (arg1); } @@ -3141,7 +3141,7 @@ static void _call_fp_setRoleNames_3419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHash &arg1 = args.read & > (heap); + const QHash &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_setRoleNames_3419 (arg1); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlResult.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlResult.cc index 92a163dea..63127fd87 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlResult.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlResult.cc @@ -626,8 +626,8 @@ static void _call_fp_addBindValue_4937 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->fp_QSqlResult_addBindValue_4937 (arg1, arg2); } @@ -720,7 +720,7 @@ static void _call_fp_bindValueType_c2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSqlResult_Adaptor *)cls)->fp_QSqlResult_bindValueType_c2025 (arg1)); } @@ -738,7 +738,7 @@ static void _call_fp_bindValueType_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSqlResult_Adaptor *)cls)->fp_QSqlResult_bindValueType_c767 (arg1)); } @@ -770,7 +770,7 @@ static void _call_fp_boundValue_c2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlResult_Adaptor *)cls)->fp_QSqlResult_boundValue_c2025 (arg1)); } @@ -788,7 +788,7 @@ static void _call_fp_boundValue_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlResult_Adaptor *)cls)->fp_QSqlResult_boundValue_c767 (arg1)); } @@ -820,7 +820,7 @@ static void _call_fp_boundValueName_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QSqlResult_Adaptor *)cls)->fp_QSqlResult_boundValueName_c767 (arg1)); } @@ -938,7 +938,7 @@ static void _call_fp_execBatch_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((bool)((QSqlResult_Adaptor *)cls)->fp_QSqlResult_execBatch_864 (arg1)); } @@ -1459,7 +1459,7 @@ static void _call_fp_setNumericalPrecisionPolicy_3429 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->fp_QSqlResult_setNumericalPrecisionPolicy_3429 (arg1); } diff --git a/src/gsiqt/qt4/QtSql/gsiDeclQSqlTableModel.cc b/src/gsiqt/qt4/QtSql/gsiDeclQSqlTableModel.cc index fb31a9f4e..50b166ce9 100644 --- a/src/gsiqt/qt4/QtSql/gsiDeclQSqlTableModel.cc +++ b/src/gsiqt/qt4/QtSql/gsiDeclQSqlTableModel.cc @@ -95,8 +95,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlTableModel *)cls)->data (arg1, arg2)); } @@ -145,7 +145,7 @@ static void _call_f_fieldIndex_c2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSqlTableModel *)cls)->fieldIndex (arg1)); } @@ -179,7 +179,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSqlTableModel *)cls)->flags (arg1)); } @@ -202,9 +202,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlTableModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -225,8 +225,8 @@ static void _call_f_insertRecord_2964 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel *)cls)->insertRecord (arg1, arg2)); } @@ -249,9 +249,9 @@ static void _call_f_insertRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel *)cls)->insertRows (arg1, arg2, arg3)); } @@ -270,7 +270,7 @@ static void _call_f_isDirty_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel *)cls)->isDirty (arg1)); } @@ -308,9 +308,9 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel *)cls)->removeColumns (arg1, arg2, arg3)); } @@ -333,9 +333,9 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel *)cls)->removeRows (arg1, arg2, arg3)); } @@ -386,7 +386,7 @@ static void _call_f_revertRow_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel *)cls)->revertRow (arg1); } @@ -406,7 +406,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlTableModel *)cls)->rowCount (arg1)); } @@ -444,9 +444,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlTableModel *)cls)->setData (arg1, arg2, arg3)); } @@ -465,7 +465,7 @@ static void _call_f_setEditStrategy_3163 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel *)cls)->setEditStrategy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -485,7 +485,7 @@ static void _call_f_setFilter_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel *)cls)->setFilter (arg1); } @@ -507,8 +507,8 @@ static void _call_f_setRecord_2964 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel *)cls)->setRecord (arg1, arg2)); } @@ -529,8 +529,8 @@ static void _call_f_setSort_2340 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel *)cls)->setSort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -550,7 +550,7 @@ static void _call_f_setTable_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel *)cls)->setTable (arg1); } @@ -572,8 +572,8 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel *)cls)->sort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -640,8 +640,8 @@ static void _call_f_tr_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSqlTableModel::tr (arg1, arg2)); } @@ -664,9 +664,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSqlTableModel::tr (arg1, arg2, arg3)); } @@ -687,8 +687,8 @@ static void _call_f_trUtf8_3354 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)QSqlTableModel::trUtf8 (arg1, arg2)); } @@ -711,9 +711,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)QSqlTableModel::trUtf8 (arg1, arg2, arg3)); } @@ -1747,8 +1747,8 @@ static void _call_ctor_QSqlTableModel_Adaptor_2804 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - QSqlDatabase arg2 = args ? args.read (heap) : (QSqlDatabase)(QSqlDatabase()); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QSqlDatabase arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSqlDatabase(), heap); ret.write (new QSqlTableModel_Adaptor (arg1, arg2)); } @@ -1766,7 +1766,7 @@ static void _call_emitter_beforeDelete_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_beforeDelete_767 (arg1); } @@ -1784,7 +1784,7 @@ static void _call_emitter_beforeInsert_1610 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSqlRecord &arg1 = args.read (heap); + QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_beforeInsert_1610 (arg1); } @@ -1804,8 +1804,8 @@ static void _call_emitter_beforeUpdate_2269 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_beforeUpdate_2269 (arg1, arg2); } @@ -1827,9 +1827,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1852,9 +1852,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1881,11 +1881,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1911,11 +1911,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1937,9 +1937,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1962,9 +1962,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -2046,8 +2046,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_changePersistentIndex_4682 (arg1, arg2); } @@ -2068,8 +2068,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -2159,9 +2159,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -2183,9 +2183,9 @@ static void _call_fp_createIndex_c2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_createIndex_c2085 (arg1, arg2, arg3)); } @@ -2207,9 +2207,9 @@ static void _call_fp_createIndex_c2416 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quint32 arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quint32 arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_createIndex_c2416 (arg1, arg2, arg3)); } @@ -2279,8 +2279,8 @@ static void _call_emitter_dataChanged_4682 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_dataChanged_4682 (arg1, arg2); } @@ -2304,10 +2304,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -2348,7 +2348,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_destroyed_1302 (arg1); } @@ -2427,8 +2427,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_encodeData_c4599 (arg1, arg2); } @@ -2681,9 +2681,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2730,7 +2730,7 @@ static void _call_fp_indexInQuery_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_indexInQuery_c2395 (arg1)); } @@ -2992,8 +2992,8 @@ static void _call_emitter_primeInsert_2269 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_primeInsert_2269 (arg1, arg2); } @@ -3031,7 +3031,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_receivers_c1731 (arg1)); } @@ -3376,7 +3376,7 @@ static void _call_fp_setLastError_2220 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_setLastError_2220 (arg1); } @@ -3395,7 +3395,7 @@ static void _call_fp_setPrimaryKey_2202 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlIndex &arg1 = args.read (heap); + const QSqlIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_setPrimaryKey_2202 (arg1); } @@ -3414,7 +3414,7 @@ static void _call_fp_setQuery_2232 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlQuery &arg1 = args.read (heap); + const QSqlQuery &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_setQuery_2232 (arg1); } @@ -3433,7 +3433,7 @@ static void _call_fp_setRoleNames_3419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHash &arg1 = args.read & > (heap); + const QHash &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_setRoleNames_3419 (arg1); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomAttr.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomAttr.cc index 42833bc24..a205909ac 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomAttr.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomAttr.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomAttr_2093 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomAttr &arg1 = args.read (heap); + const QDomAttr &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomAttr (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_operator_eq__2093 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomAttr &arg1 = args.read (heap); + const QDomAttr &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr &)((QDomAttr *)cls)->operator= (arg1)); } @@ -164,7 +164,7 @@ static void _call_f_setValue_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomAttr *)cls)->setValue (arg1); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomCDATASection.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomCDATASection.cc index f37e2ed02..02527475f 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomCDATASection.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomCDATASection.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomCDATASection_2756 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomCDATASection &arg1 = args.read (heap); + const QDomCDATASection &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomCDATASection (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_eq__2756 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomCDATASection &arg1 = args.read (heap); + const QDomCDATASection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomCDATASection &)((QDomCDATASection *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomCharacterData.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomCharacterData.cc index 29a0e04cf..f7d51be76 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomCharacterData.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomCharacterData.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomCharacterData_2969 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomCharacterData &arg1 = args.read (heap); + const QDomCharacterData &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomCharacterData (arg1)); } @@ -100,7 +100,7 @@ static void _call_f_appendData_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomCharacterData *)cls)->appendData (arg1); } @@ -137,8 +137,8 @@ static void _call_f_deleteData_4588 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args.read (heap); - unsigned long int arg2 = args.read (heap); + unsigned long int arg1 = gsi::arg_reader() (args, heap); + unsigned long int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomCharacterData *)cls)->deleteData (arg1, arg2); } @@ -160,8 +160,8 @@ static void _call_f_insertData_4265 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + unsigned long int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomCharacterData *)cls)->insertData (arg1, arg2); } @@ -211,7 +211,7 @@ static void _call_f_operator_eq__2969 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomCharacterData &arg1 = args.read (heap); + const QDomCharacterData &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomCharacterData &)((QDomCharacterData *)cls)->operator= (arg1)); } @@ -234,9 +234,9 @@ static void _call_f_replaceData_6505 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args.read (heap); - unsigned long int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + unsigned long int arg1 = gsi::arg_reader() (args, heap); + unsigned long int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomCharacterData *)cls)->replaceData (arg1, arg2, arg3); } @@ -256,7 +256,7 @@ static void _call_f_setData_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomCharacterData *)cls)->setData (arg1); } @@ -278,8 +278,8 @@ static void _call_f_substringData_4588 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args.read (heap); - unsigned long int arg2 = args.read (heap); + unsigned long int arg1 = gsi::arg_reader() (args, heap); + unsigned long int arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDomCharacterData *)cls)->substringData (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomComment.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomComment.cc index 175c92d5c..b0543ff9a 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomComment.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomComment.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomComment_2405 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomComment &arg1 = args.read (heap); + const QDomComment &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomComment (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_eq__2405 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomComment &arg1 = args.read (heap); + const QDomComment &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomComment &)((QDomComment *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomDocument.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomDocument.cc index 7993dc92d..a164ad175 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomDocument.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomDocument.cc @@ -85,7 +85,7 @@ static void _call_ctor_QDomDocument_2025 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomDocument (arg1)); } @@ -104,7 +104,7 @@ static void _call_ctor_QDomDocument_2931 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomDocumentType &arg1 = args.read (heap); + const QDomDocumentType &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomDocument (arg1)); } @@ -123,7 +123,7 @@ static void _call_ctor_QDomDocument_2513 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomDocument &arg1 = args.read (heap); + const QDomDocument &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomDocument (arg1)); } @@ -142,7 +142,7 @@ static void _call_f_createAttribute_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr)((QDomDocument *)cls)->createAttribute (arg1)); } @@ -163,8 +163,8 @@ static void _call_f_createAttributeNS_3942 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr)((QDomDocument *)cls)->createAttributeNS (arg1, arg2)); } @@ -183,7 +183,7 @@ static void _call_f_createCDATASection_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomCDATASection)((QDomDocument *)cls)->createCDATASection (arg1)); } @@ -202,7 +202,7 @@ static void _call_f_createComment_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomComment)((QDomDocument *)cls)->createComment (arg1)); } @@ -236,7 +236,7 @@ static void _call_f_createElement_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomElement)((QDomDocument *)cls)->createElement (arg1)); } @@ -257,8 +257,8 @@ static void _call_f_createElementNS_3942 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomElement)((QDomDocument *)cls)->createElementNS (arg1, arg2)); } @@ -277,7 +277,7 @@ static void _call_f_createEntityReference_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomEntityReference)((QDomDocument *)cls)->createEntityReference (arg1)); } @@ -298,8 +298,8 @@ static void _call_f_createProcessingInstruction_3942 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomProcessingInstruction)((QDomDocument *)cls)->createProcessingInstruction (arg1, arg2)); } @@ -318,7 +318,7 @@ static void _call_f_createTextNode_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomText)((QDomDocument *)cls)->createTextNode (arg1)); } @@ -367,7 +367,7 @@ static void _call_f_elementById_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomElement)((QDomDocument *)cls)->elementById (arg1)); } @@ -386,7 +386,7 @@ static void _call_f_elementsByTagName_c2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNodeList)((QDomDocument *)cls)->elementsByTagName (arg1)); } @@ -407,8 +407,8 @@ static void _call_f_elementsByTagNameNS_3942 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNodeList)((QDomDocument *)cls)->elementsByTagNameNS (arg1, arg2)); } @@ -444,8 +444,8 @@ static void _call_f_importNode_2828 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomDocument *)cls)->importNode (arg1, arg2)); } @@ -479,7 +479,7 @@ static void _call_f_operator_eq__2513 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomDocument &arg1 = args.read (heap); + const QDomDocument &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomDocument &)((QDomDocument *)cls)->operator= (arg1)); } @@ -506,11 +506,11 @@ static void _call_f_setContent_5697 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool arg2 = args.read (heap); - QString *arg3 = args ? args.read (heap) : (QString *)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); - int *arg5 = args ? args.read (heap) : (int *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); + QString *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QDomDocument *)cls)->setContent (arg1, arg2, arg3, arg4, arg5)); } @@ -537,11 +537,11 @@ static void _call_f_setContent_5119 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - bool arg2 = args.read (heap); - QString *arg3 = args ? args.read (heap) : (QString *)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); - int *arg5 = args ? args.read (heap) : (int *)(0); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); + QString *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QDomDocument *)cls)->setContent (arg1, arg2, arg3, arg4, arg5)); } @@ -568,11 +568,11 @@ static void _call_f_setContent_5833 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlInputSource *arg1 = args.read (heap); - bool arg2 = args.read (heap); - QString *arg3 = args ? args.read (heap) : (QString *)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); - int *arg5 = args ? args.read (heap) : (int *)(0); + QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); + QString *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QDomDocument *)cls)->setContent (arg1, arg2, arg3, arg4, arg5)); } @@ -597,10 +597,10 @@ static void _call_f_setContent_4941 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QString *arg2 = args ? args.read (heap) : (QString *)(0); - int *arg3 = args ? args.read (heap) : (int *)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QString *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QDomDocument *)cls)->setContent (arg1, arg2, arg3, arg4)); } @@ -625,10 +625,10 @@ static void _call_f_setContent_4363 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - QString *arg2 = args ? args.read (heap) : (QString *)(0); - int *arg3 = args ? args.read (heap) : (int *)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + QString *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QDomDocument *)cls)->setContent (arg1, arg2, arg3, arg4)); } @@ -655,11 +655,11 @@ static void _call_f_setContent_6572 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlInputSource *arg1 = args.read (heap); - QXmlReader *arg2 = args.read (heap); - QString *arg3 = args ? args.read (heap) : (QString *)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); - int *arg5 = args ? args.read (heap) : (int *)(0); + QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); + QXmlReader *arg2 = gsi::arg_reader() (args, heap); + QString *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QDomDocument *)cls)->setContent (arg1, arg2, arg3, arg4, arg5)); } @@ -678,7 +678,7 @@ static void _call_f_toByteArray_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write ((QByteArray)((QDomDocument *)cls)->toByteArray (arg1)); } @@ -697,7 +697,7 @@ static void _call_f_toString_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write ((QString)((QDomDocument *)cls)->toString (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentFragment.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentFragment.cc index 0ade67df3..b74363184 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentFragment.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentFragment.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomDocumentFragment_3333 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomDocumentFragment &arg1 = args.read (heap); + const QDomDocumentFragment &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomDocumentFragment (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_eq__3333 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomDocumentFragment &arg1 = args.read (heap); + const QDomDocumentFragment &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomDocumentFragment &)((QDomDocumentFragment *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentType.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentType.cc index c52458e9b..145a7a761 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentType.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomDocumentType.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomDocumentType_2931 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomDocumentType &arg1 = args.read (heap); + const QDomDocumentType &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomDocumentType (arg1)); } @@ -175,7 +175,7 @@ static void _call_f_operator_eq__2931 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomDocumentType &arg1 = args.read (heap); + const QDomDocumentType &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomDocumentType &)((QDomDocumentType *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomElement.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomElement.cc index b7cd58d76..d5d31578c 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomElement.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomElement.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomElement_2396 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomElement &arg1 = args.read (heap); + const QDomElement &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomElement (arg1)); } @@ -102,8 +102,8 @@ static void _call_f_attribute_c3942 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QString)((QDomElement *)cls)->attribute (arg1, arg2)); } @@ -126,9 +126,9 @@ static void _call_f_attributeNS_c5677 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); + const QString arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QString)((QDomElement *)cls)->attributeNS (arg1, arg2, arg3)); } @@ -147,7 +147,7 @@ static void _call_f_attributeNode_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr)((QDomElement *)cls)->attributeNode (arg1)); } @@ -168,8 +168,8 @@ static void _call_f_attributeNodeNS_3942 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr)((QDomElement *)cls)->attributeNodeNS (arg1, arg2)); } @@ -203,7 +203,7 @@ static void _call_f_elementsByTagName_c2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNodeList)((QDomElement *)cls)->elementsByTagName (arg1)); } @@ -224,8 +224,8 @@ static void _call_f_elementsByTagNameNS_c3942 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNodeList)((QDomElement *)cls)->elementsByTagNameNS (arg1, arg2)); } @@ -244,7 +244,7 @@ static void _call_f_hasAttribute_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomElement *)cls)->hasAttribute (arg1)); } @@ -265,8 +265,8 @@ static void _call_f_hasAttributeNS_c3942 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomElement *)cls)->hasAttributeNS (arg1, arg2)); } @@ -300,7 +300,7 @@ static void _call_f_operator_eq__2396 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomElement &arg1 = args.read (heap); + const QDomElement &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomElement &)((QDomElement *)cls)->operator= (arg1)); } @@ -319,7 +319,7 @@ static void _call_f_removeAttribute_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->removeAttribute (arg1); } @@ -341,8 +341,8 @@ static void _call_f_removeAttributeNS_3942 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->removeAttributeNS (arg1, arg2); } @@ -362,7 +362,7 @@ static void _call_f_removeAttributeNode_2093 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomAttr &arg1 = args.read (heap); + const QDomAttr &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr)((QDomElement *)cls)->removeAttributeNode (arg1)); } @@ -383,8 +383,8 @@ static void _call_f_setAttribute_3942 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttribute (arg1, arg2); } @@ -406,8 +406,8 @@ static void _call_f_setAttribute_3330 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - qlonglong arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + qlonglong arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttribute (arg1, arg2); } @@ -429,8 +429,8 @@ static void _call_f_setAttribute_3447 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - qulonglong arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + qulonglong arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttribute (arg1, arg2); } @@ -452,8 +452,8 @@ static void _call_f_setAttribute_2684 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttribute (arg1, arg2); } @@ -475,8 +475,8 @@ static void _call_f_setAttribute_3689 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttribute (arg1, arg2); } @@ -498,8 +498,8 @@ static void _call_f_setAttribute_2887 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - float arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttribute (arg1, arg2); } @@ -521,8 +521,8 @@ static void _call_f_setAttribute_2988 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - double arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttribute (arg1, arg2); } @@ -546,9 +546,9 @@ static void _call_f_setAttributeNS_5677 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttributeNS (arg1, arg2, arg3); } @@ -572,9 +572,9 @@ static void _call_f_setAttributeNS_4419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QString arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttributeNS (arg1, arg2, arg3); } @@ -598,9 +598,9 @@ static void _call_f_setAttributeNS_5424 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - unsigned int arg3 = args.read (heap); + const QString arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + unsigned int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttributeNS (arg1, arg2, arg3); } @@ -624,9 +624,9 @@ static void _call_f_setAttributeNS_5065 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - qlonglong arg3 = args.read (heap); + const QString arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + qlonglong arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttributeNS (arg1, arg2, arg3); } @@ -650,9 +650,9 @@ static void _call_f_setAttributeNS_5182 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - qulonglong arg3 = args.read (heap); + const QString arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + qulonglong arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttributeNS (arg1, arg2, arg3); } @@ -676,9 +676,9 @@ static void _call_f_setAttributeNS_4723 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - double arg3 = args.read (heap); + const QString arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttributeNS (arg1, arg2, arg3); } @@ -698,7 +698,7 @@ static void _call_f_setAttributeNode_2093 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomAttr &arg1 = args.read (heap); + const QDomAttr &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr)((QDomElement *)cls)->setAttributeNode (arg1)); } @@ -717,7 +717,7 @@ static void _call_f_setAttributeNodeNS_2093 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomAttr &arg1 = args.read (heap); + const QDomAttr &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr)((QDomElement *)cls)->setAttributeNodeNS (arg1)); } @@ -736,7 +736,7 @@ static void _call_f_setTagName_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setTagName (arg1); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomEntity.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomEntity.cc index fb2c8a672..daa70761d 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomEntity.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomEntity.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomEntity_2319 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomEntity &arg1 = args.read (heap); + const QDomEntity &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomEntity (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_operator_eq__2319 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomEntity &arg1 = args.read (heap); + const QDomEntity &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomEntity &)((QDomEntity *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomEntityReference.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomEntityReference.cc index 901420800..5bc013d27 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomEntityReference.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomEntityReference.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomEntityReference_3230 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomEntityReference &arg1 = args.read (heap); + const QDomEntityReference &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomEntityReference (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_eq__3230 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomEntityReference &arg1 = args.read (heap); + const QDomEntityReference &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomEntityReference &)((QDomEntityReference *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomImplementation.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomImplementation.cc index 34a8a4b5c..5d875ef6a 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomImplementation.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomImplementation.cc @@ -67,7 +67,7 @@ static void _call_ctor_QDomImplementation_3160 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomImplementation &arg1 = args.read (heap); + const QDomImplementation &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomImplementation (arg1)); } @@ -90,9 +90,9 @@ static void _call_f_createDocument_6765 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QDomDocumentType &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QDomDocumentType &arg3 = gsi::arg_reader() (args, heap); ret.write ((QDomDocument)((QDomImplementation *)cls)->createDocument (arg1, arg2, arg3)); } @@ -115,9 +115,9 @@ static void _call_f_createDocumentType_5859 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((QDomDocumentType)((QDomImplementation *)cls)->createDocumentType (arg1, arg2, arg3)); } @@ -138,8 +138,8 @@ static void _call_f_hasFeature_c3942 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomImplementation *)cls)->hasFeature (arg1, arg2)); } @@ -173,7 +173,7 @@ static void _call_f_operator_excl__eq__c3160 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomImplementation &arg1 = args.read (heap); + const QDomImplementation &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomImplementation *)cls)->operator!= (arg1)); } @@ -192,7 +192,7 @@ static void _call_f_operator_eq__3160 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomImplementation &arg1 = args.read (heap); + const QDomImplementation &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomImplementation &)((QDomImplementation *)cls)->operator= (arg1)); } @@ -211,7 +211,7 @@ static void _call_f_operator_eq__eq__c3160 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomImplementation &arg1 = args.read (heap); + const QDomImplementation &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomImplementation *)cls)->operator== (arg1)); } @@ -245,7 +245,7 @@ static void _call_f_setInvalidDataPolicy_4112 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QDomImplementation::setInvalidDataPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomNamedNodeMap.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomNamedNodeMap.cc index 85d76eb0a..a3be86192 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomNamedNodeMap.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomNamedNodeMap.cc @@ -66,7 +66,7 @@ static void _call_ctor_QDomNamedNodeMap_2843 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNamedNodeMap &arg1 = args.read (heap); + const QDomNamedNodeMap &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomNamedNodeMap (arg1)); } @@ -85,7 +85,7 @@ static void _call_f_contains_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNamedNodeMap *)cls)->contains (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_item_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNamedNodeMap *)cls)->item (arg1)); } @@ -168,7 +168,7 @@ static void _call_f_namedItem_c2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNamedNodeMap *)cls)->namedItem (arg1)); } @@ -189,8 +189,8 @@ static void _call_f_namedItemNS_c3942 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNamedNodeMap *)cls)->namedItemNS (arg1, arg2)); } @@ -209,7 +209,7 @@ static void _call_f_operator_excl__eq__c2843 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNamedNodeMap &arg1 = args.read (heap); + const QDomNamedNodeMap &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNamedNodeMap *)cls)->operator!= (arg1)); } @@ -228,7 +228,7 @@ static void _call_f_operator_eq__2843 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNamedNodeMap &arg1 = args.read (heap); + const QDomNamedNodeMap &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNamedNodeMap &)((QDomNamedNodeMap *)cls)->operator= (arg1)); } @@ -247,7 +247,7 @@ static void _call_f_operator_eq__eq__c2843 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNamedNodeMap &arg1 = args.read (heap); + const QDomNamedNodeMap &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNamedNodeMap *)cls)->operator== (arg1)); } @@ -266,7 +266,7 @@ static void _call_f_removeNamedItem_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNamedNodeMap *)cls)->removeNamedItem (arg1)); } @@ -287,8 +287,8 @@ static void _call_f_removeNamedItemNS_3942 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNamedNodeMap *)cls)->removeNamedItemNS (arg1, arg2)); } @@ -307,7 +307,7 @@ static void _call_f_setNamedItem_2072 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNamedNodeMap *)cls)->setNamedItem (arg1)); } @@ -326,7 +326,7 @@ static void _call_f_setNamedItemNS_2072 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNamedNodeMap *)cls)->setNamedItemNS (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomNode.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomNode.cc index 10fae4d18..9fe150606 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomNode.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomNode.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomNode_2072 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomNode (arg1)); } @@ -100,7 +100,7 @@ static void _call_f_appendChild_2072 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNode *)cls)->appendChild (arg1)); } @@ -165,7 +165,7 @@ static void _call_f_cloneNode_c864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); ret.write ((QDomNode)((QDomNode *)cls)->cloneNode (arg1)); } @@ -214,7 +214,7 @@ static void _call_f_firstChildElement_c2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QDomElement)((QDomNode *)cls)->firstChildElement (arg1)); } @@ -265,8 +265,8 @@ static void _call_f_insertAfter_4036 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); - const QDomNode &arg2 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); + const QDomNode &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNode *)cls)->insertAfter (arg1, arg2)); } @@ -287,8 +287,8 @@ static void _call_f_insertBefore_4036 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); - const QDomNode &arg2 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); + const QDomNode &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNode *)cls)->insertBefore (arg1, arg2)); } @@ -504,8 +504,8 @@ static void _call_f_isSupported_c3942 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNode *)cls)->isSupported (arg1, arg2)); } @@ -554,7 +554,7 @@ static void _call_f_lastChildElement_c2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QDomElement)((QDomNode *)cls)->lastChildElement (arg1)); } @@ -603,7 +603,7 @@ static void _call_f_namedItem_c2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNode *)cls)->namedItem (arg1)); } @@ -652,7 +652,7 @@ static void _call_f_nextSiblingElement_c2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QDomElement)((QDomNode *)cls)->nextSiblingElement (arg1)); } @@ -732,7 +732,7 @@ static void _call_f_operator_excl__eq__c2072 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNode *)cls)->operator!= (arg1)); } @@ -751,7 +751,7 @@ static void _call_f_operator_eq__2072 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode &)((QDomNode *)cls)->operator= (arg1)); } @@ -770,7 +770,7 @@ static void _call_f_operator_eq__eq__c2072 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNode *)cls)->operator== (arg1)); } @@ -849,7 +849,7 @@ static void _call_f_previousSiblingElement_c2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QDomElement)((QDomNode *)cls)->previousSiblingElement (arg1)); } @@ -868,7 +868,7 @@ static void _call_f_removeChild_2072 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNode *)cls)->removeChild (arg1)); } @@ -889,8 +889,8 @@ static void _call_f_replaceChild_4036 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); - const QDomNode &arg2 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); + const QDomNode &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNode *)cls)->replaceChild (arg1, arg2)); } @@ -911,8 +911,8 @@ static void _call_f_save_c2399 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextStream &arg1 = args.read (heap); - int arg2 = args.read (heap); + QTextStream &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomNode *)cls)->save (arg1, arg2); } @@ -936,9 +936,9 @@ static void _call_f_save_c5033 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextStream &arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + QTextStream &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomNode *)cls)->save (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -958,7 +958,7 @@ static void _call_f_setNodeValue_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomNode *)cls)->setNodeValue (arg1); } @@ -978,7 +978,7 @@ static void _call_f_setPrefix_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomNode *)cls)->setPrefix (arg1); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomNodeList.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomNodeList.cc index 5725b31f3..7460b6960 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomNodeList.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomNodeList.cc @@ -66,7 +66,7 @@ static void _call_ctor_QDomNodeList_2484 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNodeList &arg1 = args.read (heap); + const QDomNodeList &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomNodeList (arg1)); } @@ -85,7 +85,7 @@ static void _call_f_at_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNodeList *)cls)->at (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_item_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNodeList *)cls)->item (arg1)); } @@ -168,7 +168,7 @@ static void _call_f_operator_excl__eq__c2484 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNodeList &arg1 = args.read (heap); + const QDomNodeList &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNodeList *)cls)->operator!= (arg1)); } @@ -187,7 +187,7 @@ static void _call_f_operator_eq__2484 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNodeList &arg1 = args.read (heap); + const QDomNodeList &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNodeList &)((QDomNodeList *)cls)->operator= (arg1)); } @@ -206,7 +206,7 @@ static void _call_f_operator_eq__eq__c2484 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNodeList &arg1 = args.read (heap); + const QDomNodeList &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNodeList *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomNotation.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomNotation.cc index deb27d9ad..e94a7ec13 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomNotation.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomNotation.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomNotation_2526 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNotation &arg1 = args.read (heap); + const QDomNotation &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomNotation (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_eq__2526 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNotation &arg1 = args.read (heap); + const QDomNotation &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNotation &)((QDomNotation *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomProcessingInstruction.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomProcessingInstruction.cc index e87f787c0..9e21af43c 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomProcessingInstruction.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomProcessingInstruction.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomProcessingInstruction_3921 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomProcessingInstruction &arg1 = args.read (heap); + const QDomProcessingInstruction &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomProcessingInstruction (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_operator_eq__3921 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomProcessingInstruction &arg1 = args.read (heap); + const QDomProcessingInstruction &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomProcessingInstruction &)((QDomProcessingInstruction *)cls)->operator= (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_setData_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomProcessingInstruction *)cls)->setData (arg1); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQDomText.cc b/src/gsiqt/qt4/QtXml/gsiDeclQDomText.cc index 4dfad040e..d18e8930d 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQDomText.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQDomText.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomText_2103 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomText &arg1 = args.read (heap); + const QDomText &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomText (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_eq__2103 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomText &arg1 = args.read (heap); + const QDomText &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomText &)((QDomText *)cls)->operator= (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_splitText_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomText)((QDomText *)cls)->splitText (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlAttributes.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlAttributes.cc index d5cec2f2c..2a067eea0 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlAttributes.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlAttributes.cc @@ -56,10 +56,10 @@ static void _call_f_append_7776 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlAttributes *)cls)->append (arg1, arg2, arg3, arg4); } @@ -110,7 +110,7 @@ static void _call_f_index_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QXmlAttributes *)cls)->index (arg1)); } @@ -131,8 +131,8 @@ static void _call_f_index_c3942 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QXmlAttributes *)cls)->index (arg1, arg2)); } @@ -166,7 +166,7 @@ static void _call_f_localName_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->localName (arg1)); } @@ -185,7 +185,7 @@ static void _call_f_qName_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->qName (arg1)); } @@ -204,7 +204,7 @@ static void _call_f_type_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->type (arg1)); } @@ -223,7 +223,7 @@ static void _call_f_type_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->type (arg1)); } @@ -244,8 +244,8 @@ static void _call_f_type_c3942 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->type (arg1, arg2)); } @@ -264,7 +264,7 @@ static void _call_f_uri_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->uri (arg1)); } @@ -283,7 +283,7 @@ static void _call_f_value_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->value (arg1)); } @@ -302,7 +302,7 @@ static void _call_f_value_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->value (arg1)); } @@ -323,8 +323,8 @@ static void _call_f_value_c3942 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->value (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlContentHandler.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlContentHandler.cc index ba970f86d..5d09af14d 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlContentHandler.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlContentHandler.cc @@ -52,7 +52,7 @@ static void _call_f_characters_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->characters (arg1)); } @@ -90,9 +90,9 @@ static void _call_f_endElement_5859 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->endElement (arg1, arg2, arg3)); } @@ -111,7 +111,7 @@ static void _call_f_endPrefixMapping_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->endPrefixMapping (arg1)); } @@ -145,7 +145,7 @@ static void _call_f_ignorableWhitespace_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->ignorableWhitespace (arg1)); } @@ -166,8 +166,8 @@ static void _call_f_processingInstruction_3942 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->processingInstruction (arg1, arg2)); } @@ -186,7 +186,7 @@ static void _call_f_setDocumentLocator_1732 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLocator *arg1 = args.read (heap); + QXmlLocator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlContentHandler *)cls)->setDocumentLocator (arg1); } @@ -206,7 +206,7 @@ static void _call_f_skippedEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->skippedEntity (arg1)); } @@ -246,10 +246,10 @@ static void _call_f_startElement_8513 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QXmlAttributes &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QXmlAttributes &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->startElement (arg1, arg2, arg3, arg4)); } @@ -270,8 +270,8 @@ static void _call_f_startPrefixMapping_3942 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->startPrefixMapping (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlDTDHandler.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlDTDHandler.cc index 1f7c04cd4..17257583e 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlDTDHandler.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlDTDHandler.cc @@ -69,9 +69,9 @@ static void _call_f_notationDecl_5859 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDTDHandler *)cls)->notationDecl (arg1, arg2, arg3)); } @@ -96,10 +96,10 @@ static void _call_f_unparsedEntityDecl_7776 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDTDHandler *)cls)->unparsedEntityDecl (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlDeclHandler.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlDeclHandler.cc index ddc20798c..e809f33e1 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlDeclHandler.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlDeclHandler.cc @@ -58,11 +58,11 @@ static void _call_f_attributeDecl_9693 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDeclHandler *)cls)->attributeDecl (arg1, arg2, arg3, arg4, arg5)); } @@ -100,9 +100,9 @@ static void _call_f_externalEntityDecl_5859 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDeclHandler *)cls)->externalEntityDecl (arg1, arg2, arg3)); } @@ -123,8 +123,8 @@ static void _call_f_internalEntityDecl_3942 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDeclHandler *)cls)->internalEntityDecl (arg1, arg2)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlDefaultHandler.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlDefaultHandler.cc index 525f02749..7f639dcf2 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlDefaultHandler.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlDefaultHandler.cc @@ -61,11 +61,11 @@ static void _call_f_attributeDecl_9693 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->attributeDecl (arg1, arg2, arg3, arg4, arg5)); } @@ -84,7 +84,7 @@ static void _call_f_characters_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->characters (arg1)); } @@ -103,7 +103,7 @@ static void _call_f_comment_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->comment (arg1)); } @@ -171,9 +171,9 @@ static void _call_f_endElement_5859 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->endElement (arg1, arg2, arg3)); } @@ -192,7 +192,7 @@ static void _call_f_endEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->endEntity (arg1)); } @@ -211,7 +211,7 @@ static void _call_f_endPrefixMapping_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->endPrefixMapping (arg1)); } @@ -230,7 +230,7 @@ static void _call_f_error_3149 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->error (arg1)); } @@ -268,9 +268,9 @@ static void _call_f_externalEntityDecl_5859 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->externalEntityDecl (arg1, arg2, arg3)); } @@ -289,7 +289,7 @@ static void _call_f_fatalError_3149 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->fatalError (arg1)); } @@ -308,7 +308,7 @@ static void _call_f_ignorableWhitespace_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->ignorableWhitespace (arg1)); } @@ -329,8 +329,8 @@ static void _call_f_internalEntityDecl_3942 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->internalEntityDecl (arg1, arg2)); } @@ -353,9 +353,9 @@ static void _call_f_notationDecl_5859 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->notationDecl (arg1, arg2, arg3)); } @@ -376,8 +376,8 @@ static void _call_f_processingInstruction_3942 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->processingInstruction (arg1, arg2)); } @@ -396,7 +396,7 @@ static void _call_f_setDocumentLocator_1732 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLocator *arg1 = args.read (heap); + QXmlLocator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlDefaultHandler *)cls)->setDocumentLocator (arg1); } @@ -416,7 +416,7 @@ static void _call_f_skippedEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->skippedEntity (arg1)); } @@ -454,9 +454,9 @@ static void _call_f_startDTD_5859 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->startDTD (arg1, arg2, arg3)); } @@ -496,10 +496,10 @@ static void _call_f_startElement_8513 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QXmlAttributes &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QXmlAttributes &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->startElement (arg1, arg2, arg3, arg4)); } @@ -518,7 +518,7 @@ static void _call_f_startEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->startEntity (arg1)); } @@ -539,8 +539,8 @@ static void _call_f_startPrefixMapping_3942 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->startPrefixMapping (arg1, arg2)); } @@ -565,10 +565,10 @@ static void _call_f_unparsedEntityDecl_7776 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->unparsedEntityDecl (arg1, arg2, arg3, arg4)); } @@ -587,7 +587,7 @@ static void _call_f_warning_3149 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->warning (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlErrorHandler.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlErrorHandler.cc index 9a8746b16..8ed7947bc 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlErrorHandler.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlErrorHandler.cc @@ -51,7 +51,7 @@ static void _call_f_error_3149 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlErrorHandler *)cls)->error (arg1)); } @@ -85,7 +85,7 @@ static void _call_f_fatalError_3149 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlErrorHandler *)cls)->fatalError (arg1)); } @@ -104,7 +104,7 @@ static void _call_f_warning_3149 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlErrorHandler *)cls)->warning (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlInputSource.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlInputSource.cc index 1a7f90a7d..3feef3274 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlInputSource.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlInputSource.cc @@ -113,7 +113,7 @@ static void _call_f_setData_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlInputSource *)cls)->setData (arg1); } @@ -286,7 +286,7 @@ static void _call_ctor_QXmlInputSource_Adaptor_1447 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlInputSource_Adaptor (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlLexicalHandler.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlLexicalHandler.cc index b3741ac51..36d4efff8 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlLexicalHandler.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlLexicalHandler.cc @@ -50,7 +50,7 @@ static void _call_f_comment_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler *)cls)->comment (arg1)); } @@ -99,7 +99,7 @@ static void _call_f_endEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler *)cls)->endEntity (arg1)); } @@ -152,9 +152,9 @@ static void _call_f_startDTD_5859 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler *)cls)->startDTD (arg1, arg2, arg3)); } @@ -173,7 +173,7 @@ static void _call_f_startEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler *)cls)->startEntity (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlNamespaceSupport.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlNamespaceSupport.cc index 8464efcee..e84f4a174 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlNamespaceSupport.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlNamespaceSupport.cc @@ -81,7 +81,7 @@ static void _call_f_prefix_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlNamespaceSupport *)cls)->prefix (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_prefixes_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QXmlNamespaceSupport *)cls)->prefixes (arg1)); } @@ -140,10 +140,10 @@ static void _call_f_processName_c5225 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool arg2 = args.read (heap); - QString &arg3 = args.read (heap); - QString &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); + QString &arg3 = gsi::arg_reader() (args, heap); + QString &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlNamespaceSupport *)cls)->processName (arg1, arg2, arg3, arg4); } @@ -197,8 +197,8 @@ static void _call_f_setPrefix_3942 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlNamespaceSupport *)cls)->setPrefix (arg1, arg2); } @@ -222,9 +222,9 @@ static void _call_f_splitName_c4469 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QString &arg2 = args.read (heap); - QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QString &arg2 = gsi::arg_reader() (args, heap); + QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlNamespaceSupport *)cls)->splitName (arg1, arg2, arg3); } @@ -244,7 +244,7 @@ static void _call_f_uri_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlNamespaceSupport *)cls)->uri (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlParseException.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlParseException.cc index 7da965ba9..50afc62f0 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlParseException.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlParseException.cc @@ -58,11 +58,11 @@ static void _call_ctor_QXmlParseException_7177 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); - int arg2 = args ? args.read (heap) : (int)(-1); - int arg3 = args ? args.read (heap) : (int)(-1); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg5 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QXmlParseException (arg1, arg2, arg3, arg4, arg5)); } @@ -81,7 +81,7 @@ static void _call_ctor_QXmlParseException_3149 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlParseException (arg1)); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlReader.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlReader.cc index 5d922113f..c993f664d 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlReader.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlReader.cc @@ -134,8 +134,8 @@ static void _call_f_feature_c2967 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QXmlReader *)cls)->feature (arg1, arg2)); } @@ -154,7 +154,7 @@ static void _call_f_hasFeature_c2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlReader *)cls)->hasFeature (arg1)); } @@ -173,7 +173,7 @@ static void _call_f_hasProperty_c2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlReader *)cls)->hasProperty (arg1)); } @@ -207,7 +207,7 @@ static void _call_f_parse_2852 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlInputSource &arg1 = args.read (heap); + const QXmlInputSource &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlReader *)cls)->parse (arg1)); } @@ -226,7 +226,7 @@ static void _call_f_parse_2856 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlInputSource *arg1 = args.read (heap); + const QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlReader *)cls)->parse (arg1)); } @@ -247,8 +247,8 @@ static void _call_f_property_c2967 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((void *)((QXmlReader *)cls)->property (arg1, arg2)); } @@ -267,7 +267,7 @@ static void _call_f_setContentHandler_2441 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlContentHandler *arg1 = args.read (heap); + QXmlContentHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setContentHandler (arg1); } @@ -287,7 +287,7 @@ static void _call_f_setDTDHandler_1930 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlDTDHandler *arg1 = args.read (heap); + QXmlDTDHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setDTDHandler (arg1); } @@ -307,7 +307,7 @@ static void _call_f_setDeclHandler_2086 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlDeclHandler *arg1 = args.read (heap); + QXmlDeclHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setDeclHandler (arg1); } @@ -327,7 +327,7 @@ static void _call_f_setEntityResolver_2495 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlEntityResolver *arg1 = args.read (heap); + QXmlEntityResolver *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setEntityResolver (arg1); } @@ -347,7 +347,7 @@ static void _call_f_setErrorHandler_2232 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlErrorHandler *arg1 = args.read (heap); + QXmlErrorHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setErrorHandler (arg1); } @@ -369,8 +369,8 @@ static void _call_f_setFeature_2781 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setFeature (arg1, arg2); } @@ -390,7 +390,7 @@ static void _call_f_setLexicalHandler_2416 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLexicalHandler *arg1 = args.read (heap); + QXmlLexicalHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setLexicalHandler (arg1); } @@ -412,8 +412,8 @@ static void _call_f_setProperty_2973 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - void *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setProperty (arg1, arg2); } diff --git a/src/gsiqt/qt4/QtXml/gsiDeclQXmlSimpleReader.cc b/src/gsiqt/qt4/QtXml/gsiDeclQXmlSimpleReader.cc index 72a3dee4c..a2c422a47 100644 --- a/src/gsiqt/qt4/QtXml/gsiDeclQXmlSimpleReader.cc +++ b/src/gsiqt/qt4/QtXml/gsiDeclQXmlSimpleReader.cc @@ -134,8 +134,8 @@ static void _call_f_feature_c2967 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QXmlSimpleReader *)cls)->feature (arg1, arg2)); } @@ -154,7 +154,7 @@ static void _call_f_hasFeature_c2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader *)cls)->hasFeature (arg1)); } @@ -173,7 +173,7 @@ static void _call_f_hasProperty_c2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader *)cls)->hasProperty (arg1)); } @@ -207,7 +207,7 @@ static void _call_f_parse_2856 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlInputSource *arg1 = args.read (heap); + const QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader *)cls)->parse (arg1)); } @@ -228,8 +228,8 @@ static void _call_f_parse_3612 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlInputSource *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader *)cls)->parse (arg1, arg2)); } @@ -265,8 +265,8 @@ static void _call_f_property_c2967 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((void *)((QXmlSimpleReader *)cls)->property (arg1, arg2)); } @@ -285,7 +285,7 @@ static void _call_f_setContentHandler_2441 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlContentHandler *arg1 = args.read (heap); + QXmlContentHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setContentHandler (arg1); } @@ -305,7 +305,7 @@ static void _call_f_setDTDHandler_1930 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlDTDHandler *arg1 = args.read (heap); + QXmlDTDHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setDTDHandler (arg1); } @@ -325,7 +325,7 @@ static void _call_f_setDeclHandler_2086 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlDeclHandler *arg1 = args.read (heap); + QXmlDeclHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setDeclHandler (arg1); } @@ -345,7 +345,7 @@ static void _call_f_setEntityResolver_2495 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlEntityResolver *arg1 = args.read (heap); + QXmlEntityResolver *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setEntityResolver (arg1); } @@ -365,7 +365,7 @@ static void _call_f_setErrorHandler_2232 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlErrorHandler *arg1 = args.read (heap); + QXmlErrorHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setErrorHandler (arg1); } @@ -387,8 +387,8 @@ static void _call_f_setFeature_2781 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setFeature (arg1, arg2); } @@ -408,7 +408,7 @@ static void _call_f_setLexicalHandler_2416 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLexicalHandler *arg1 = args.read (heap); + QXmlLexicalHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setLexicalHandler (arg1); } @@ -430,8 +430,8 @@ static void _call_f_setProperty_2973 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - void *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setProperty (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc index 8b19059f6..2d9362e0c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractAnimation.cc @@ -207,7 +207,7 @@ static void _call_f_setCurrentTime_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation *)cls)->setCurrentTime (arg1); } @@ -227,7 +227,7 @@ static void _call_f_setDirection_3310 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation *)cls)->setDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -247,7 +247,7 @@ static void _call_f_setLoopCount_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation *)cls)->setLoopCount (arg1); } @@ -267,7 +267,7 @@ static void _call_f_setPaused_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation *)cls)->setPaused (arg1); } @@ -287,7 +287,7 @@ static void _call_f_start_3825 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractAnimation::KeepWhenStopped)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractAnimation::KeepWhenStopped), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAnimation *)cls)->start (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -357,9 +357,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractAnimation::tr (arg1, arg2, arg3)); } @@ -382,9 +382,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractAnimation::trUtf8 (arg1, arg2, arg3)); } @@ -679,7 +679,7 @@ static void _call_ctor_QAbstractAnimation_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractAnimation_Adaptor (arg1)); } @@ -721,7 +721,7 @@ static void _call_emitter_currentLoopChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QAbstractAnimation_Adaptor *)cls)->emitter_QAbstractAnimation_currentLoopChanged_767 (arg1); } @@ -763,7 +763,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractAnimation_Adaptor *)cls)->emitter_QAbstractAnimation_destroyed_1302 (arg1); } @@ -781,7 +781,7 @@ static void _call_emitter_directionChanged_3310 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAbstractAnimation_Adaptor *)cls)->emitter_QAbstractAnimation_directionChanged_3310 (arg1); } @@ -905,7 +905,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAnimation_Adaptor *)cls)->fp_QAbstractAnimation_isSignalConnected_c2394 (arg1)); } @@ -923,7 +923,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractAnimation_Adaptor *)cls)->fp_QAbstractAnimation_receivers_c1731 (arg1)); } @@ -971,8 +971,8 @@ static void _call_emitter_stateChanged_5680 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ((QAbstractAnimation_Adaptor *)cls)->emitter_QAbstractAnimation_stateChanged_5680 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc index c334cf669..a1168288f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher.cc @@ -91,9 +91,9 @@ static void _call_f_filterNativeEvent_4678 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractEventDispatcher *)cls)->filterNativeEvent (arg1, arg2, arg3)); } @@ -143,7 +143,7 @@ static void _call_f_installNativeEventFilter_3266 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractNativeEventFilter *arg1 = args.read (heap); + QAbstractNativeEventFilter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher *)cls)->installNativeEventFilter (arg1); } @@ -179,7 +179,7 @@ static void _call_f_processEvents_3995 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QAbstractEventDispatcher *)cls)->processEvents (arg1)); } @@ -198,7 +198,7 @@ static void _call_f_registerSocketNotifier_2152 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSocketNotifier *arg1 = args.read (heap); + QSocketNotifier *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher *)cls)->registerSocketNotifier (arg1); } @@ -222,9 +222,9 @@ static void _call_f_registerTimer_3533 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QObject *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg3 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractEventDispatcher *)cls)->registerTimer (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -249,10 +249,10 @@ static void _call_f_registerTimer_4192 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - QObject *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher *)cls)->registerTimer (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4); } @@ -272,7 +272,7 @@ static void _call_f_registeredTimers_c1302 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QAbstractEventDispatcher *)cls)->registeredTimers (arg1)); } @@ -291,7 +291,7 @@ static void _call_f_remainingTime_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractEventDispatcher *)cls)->remainingTime (arg1)); } @@ -310,7 +310,7 @@ static void _call_f_removeNativeEventFilter_3266 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractNativeEventFilter *arg1 = args.read (heap); + QAbstractNativeEventFilter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher *)cls)->removeNativeEventFilter (arg1); } @@ -346,7 +346,7 @@ static void _call_f_unregisterSocketNotifier_2152 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSocketNotifier *arg1 = args.read (heap); + QSocketNotifier *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractEventDispatcher *)cls)->unregisterSocketNotifier (arg1); } @@ -366,7 +366,7 @@ static void _call_f_unregisterTimer_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractEventDispatcher *)cls)->unregisterTimer (arg1)); } @@ -385,7 +385,7 @@ static void _call_f_unregisterTimers_1302 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractEventDispatcher *)cls)->unregisterTimers (arg1)); } @@ -420,7 +420,7 @@ static void _call_f_instance_1303 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QThread *arg1 = args ? args.read (heap) : (QThread *)(0); + QThread *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QAbstractEventDispatcher *)QAbstractEventDispatcher::instance (arg1)); } @@ -443,9 +443,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractEventDispatcher::tr (arg1, arg2, arg3)); } @@ -468,9 +468,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractEventDispatcher::trUtf8 (arg1, arg2, arg3)); } @@ -927,7 +927,7 @@ static void _call_ctor_QAbstractEventDispatcher_Adaptor_1302 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractEventDispatcher_Adaptor (arg1)); } @@ -1041,7 +1041,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractEventDispatcher_Adaptor *)cls)->emitter_QAbstractEventDispatcher_destroyed_1302 (arg1); } @@ -1191,7 +1191,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractEventDispatcher_Adaptor *)cls)->fp_QAbstractEventDispatcher_isSignalConnected_c2394 (arg1)); } @@ -1232,7 +1232,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractEventDispatcher_Adaptor *)cls)->fp_QAbstractEventDispatcher_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher_TimerInfo.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher_TimerInfo.cc index 642fe5a93..20cafe824 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher_TimerInfo.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractEventDispatcher_TimerInfo.cc @@ -54,9 +54,9 @@ static void _call_ctor_QAbstractEventDispatcher_TimerInfo_2998 (const qt_gsi::Ge { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QAbstractEventDispatcher::TimerInfo (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc index 116ade41d..70c31b4a4 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractItemModel.cc @@ -74,7 +74,7 @@ static void _call_f_buddy_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel *)cls)->buddy (arg1)); } @@ -101,11 +101,11 @@ static void _call_f_canDropMimeData_c7425 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel *)cls)->canDropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -124,7 +124,7 @@ static void _call_f_canFetchMore_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel *)cls)->canFetchMore (arg1)); } @@ -143,7 +143,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractItemModel *)cls)->columnCount (arg1)); } @@ -164,8 +164,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractItemModel *)cls)->data (arg1, arg2)); } @@ -192,11 +192,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -215,7 +215,7 @@ static void _call_f_fetchMore_2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel *)cls)->fetchMore (arg1); } @@ -235,7 +235,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractItemModel *)cls)->flags (arg1)); } @@ -254,7 +254,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->hasChildren (arg1)); } @@ -277,9 +277,9 @@ static void _call_f_hasIndex_c3713 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->hasIndex (arg1, arg2, arg3)); } @@ -302,9 +302,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractItemModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -327,9 +327,9 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractItemModel *)cls)->index (arg1, arg2, arg3)); } @@ -350,8 +350,8 @@ static void _call_f_insertColumn_3054 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->insertColumn (arg1, arg2)); } @@ -374,9 +374,9 @@ static void _call_f_insertColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->insertColumns (arg1, arg2, arg3)); } @@ -397,8 +397,8 @@ static void _call_f_insertRow_3054 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->insertRow (arg1, arg2)); } @@ -421,9 +421,9 @@ static void _call_f_insertRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->insertRows (arg1, arg2, arg3)); } @@ -442,7 +442,7 @@ static void _call_f_itemData_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractItemModel *)cls)->itemData (arg1)); } @@ -469,11 +469,11 @@ static void _call_f_match_c7932 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(1); - QFlags arg5 = args ? args.read > (heap) : (QFlags)(Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap)); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QAbstractItemModel *)cls)->match (arg1, arg2, arg3, arg4, arg5)); } @@ -492,7 +492,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QAbstractItemModel *)cls)->mimeData (arg1)); } @@ -532,10 +532,10 @@ static void _call_f_moveColumn_6000 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - int arg4 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel *)cls)->moveColumn (arg1, arg2, arg3, arg4)); } @@ -562,11 +562,11 @@ static void _call_f_moveColumns_6659 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel *)cls)->moveColumns (arg1, arg2, arg3, arg4, arg5)); } @@ -591,10 +591,10 @@ static void _call_f_moveRow_6000 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - int arg4 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel *)cls)->moveRow (arg1, arg2, arg3, arg4)); } @@ -621,11 +621,11 @@ static void _call_f_moveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel *)cls)->moveRows (arg1, arg2, arg3, arg4, arg5)); } @@ -644,7 +644,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel *)cls)->parent (arg1)); } @@ -680,8 +680,8 @@ static void _call_f_removeColumn_3054 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->removeColumn (arg1, arg2)); } @@ -704,9 +704,9 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->removeColumns (arg1, arg2, arg3)); } @@ -727,8 +727,8 @@ static void _call_f_removeRow_3054 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->removeRow (arg1, arg2)); } @@ -751,9 +751,9 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractItemModel *)cls)->removeRows (arg1, arg2, arg3)); } @@ -803,7 +803,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QAbstractItemModel *)cls)->rowCount (arg1)); } @@ -826,9 +826,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractItemModel *)cls)->setData (arg1, arg2, arg3)); } @@ -853,10 +853,10 @@ static void _call_f_setHeaderData_5242 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(Qt::EditRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractItemModel *)cls)->setHeaderData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -877,8 +877,8 @@ static void _call_f_setItemData_5414 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAbstractItemModel *)cls)->setItemData (arg1, arg2)); } @@ -901,9 +901,9 @@ static void _call_f_sibling_c3713 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel *)cls)->sibling (arg1, arg2, arg3)); } @@ -924,8 +924,8 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel *)cls)->sort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -945,7 +945,7 @@ static void _call_f_span_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractItemModel *)cls)->span (arg1)); } @@ -1013,9 +1013,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractItemModel::tr (arg1, arg2, arg3)); } @@ -1038,9 +1038,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractItemModel::trUtf8 (arg1, arg2, arg3)); } @@ -1957,7 +1957,7 @@ static void _call_ctor_QAbstractItemModel_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractItemModel_Adaptor (arg1)); } @@ -1979,9 +1979,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -2004,9 +2004,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -2033,11 +2033,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -2063,11 +2063,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -2089,9 +2089,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -2114,9 +2114,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -2233,8 +2233,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_changePersistentIndex_4682 (arg1, arg2); } @@ -2255,8 +2255,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -2326,9 +2326,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -2350,9 +2350,9 @@ static void _call_fp_createIndex_c2657 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quintptr arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quintptr arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_createIndex_c2657 (arg1, arg2, arg3)); } @@ -2424,9 +2424,9 @@ static void _call_emitter_dataChanged_7048 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); ((QAbstractItemModel_Adaptor *)cls)->emitter_QAbstractItemModel_dataChanged_7048 (arg1, arg2, arg3); } @@ -2450,10 +2450,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -2471,7 +2471,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractItemModel_Adaptor *)cls)->emitter_QAbstractItemModel_destroyed_1302 (arg1); } @@ -2550,8 +2550,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_encodeData_c4599 (arg1, arg2); } @@ -2827,9 +2827,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QAbstractItemModel_Adaptor *)cls)->emitter_QAbstractItemModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2934,7 +2934,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_isSignalConnected_c2394 (arg1)); } @@ -2977,8 +2977,8 @@ static void _call_emitter_layoutAboutToBeChanged_7947 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QAbstractItemModel_Adaptor *)cls)->emitter_QAbstractItemModel_layoutAboutToBeChanged_7947 (arg1, arg2); } @@ -2998,8 +2998,8 @@ static void _call_emitter_layoutChanged_7947 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QAbstractItemModel_Adaptor *)cls)->emitter_QAbstractItemModel_layoutChanged_7947 (arg1, arg2); } @@ -3201,7 +3201,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemModel_Adaptor *)cls)->fp_QAbstractItemModel_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc index 689f90b53..2bf123e73 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractListModel.cc @@ -82,11 +82,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -105,7 +105,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractListModel *)cls)->flags (arg1)); } @@ -128,9 +128,9 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractListModel *)cls)->index (arg1, arg2, arg3)); } @@ -168,9 +168,9 @@ static void _call_f_sibling_c3713 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractListModel *)cls)->sibling (arg1, arg2, arg3)); } @@ -193,9 +193,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractListModel::tr (arg1, arg2, arg3)); } @@ -218,9 +218,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractListModel::trUtf8 (arg1, arg2, arg3)); } @@ -1047,7 +1047,7 @@ static void _call_ctor_QAbstractListModel_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractListModel_Adaptor (arg1)); } @@ -1069,9 +1069,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1094,9 +1094,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1123,11 +1123,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1153,11 +1153,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1179,9 +1179,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1204,9 +1204,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -1323,8 +1323,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_changePersistentIndex_4682 (arg1, arg2); } @@ -1345,8 +1345,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -1393,9 +1393,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -1417,9 +1417,9 @@ static void _call_fp_createIndex_c2657 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quintptr arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quintptr arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_createIndex_c2657 (arg1, arg2, arg3)); } @@ -1491,9 +1491,9 @@ static void _call_emitter_dataChanged_7048 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); ((QAbstractListModel_Adaptor *)cls)->emitter_QAbstractListModel_dataChanged_7048 (arg1, arg2, arg3); } @@ -1517,10 +1517,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -1538,7 +1538,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractListModel_Adaptor *)cls)->emitter_QAbstractListModel_destroyed_1302 (arg1); } @@ -1617,8 +1617,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_encodeData_c4599 (arg1, arg2); } @@ -1871,9 +1871,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QAbstractListModel_Adaptor *)cls)->emitter_QAbstractListModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -1978,7 +1978,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_isSignalConnected_c2394 (arg1)); } @@ -2021,8 +2021,8 @@ static void _call_emitter_layoutAboutToBeChanged_7947 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QAbstractListModel_Adaptor *)cls)->emitter_QAbstractListModel_layoutAboutToBeChanged_7947 (arg1, arg2); } @@ -2042,8 +2042,8 @@ static void _call_emitter_layoutChanged_7947 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QAbstractListModel_Adaptor *)cls)->emitter_QAbstractListModel_layoutChanged_7947 (arg1, arg2); } @@ -2222,7 +2222,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractListModel_Adaptor *)cls)->fp_QAbstractListModel_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractNativeEventFilter.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractNativeEventFilter.cc index fc5e670e2..bb005ad48 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractNativeEventFilter.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractNativeEventFilter.cc @@ -54,9 +54,9 @@ static void _call_f_nativeEventFilter_4678 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - void *arg2 = args.read (heap); - long int *arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); + long int *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractNativeEventFilter *)cls)->nativeEventFilter (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc index e50738481..947372b44 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractProxyModel.cc @@ -76,7 +76,7 @@ static void _call_f_buddy_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel *)cls)->buddy (arg1)); } @@ -103,11 +103,11 @@ static void _call_f_canDropMimeData_c7425 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel *)cls)->canDropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -126,7 +126,7 @@ static void _call_f_canFetchMore_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel *)cls)->canFetchMore (arg1)); } @@ -147,8 +147,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractProxyModel *)cls)->data (arg1, arg2)); } @@ -175,11 +175,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -198,7 +198,7 @@ static void _call_f_fetchMore_2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel *)cls)->fetchMore (arg1); } @@ -218,7 +218,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractProxyModel *)cls)->flags (arg1)); } @@ -237,7 +237,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QAbstractProxyModel *)cls)->hasChildren (arg1)); } @@ -260,9 +260,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QAbstractProxyModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -281,7 +281,7 @@ static void _call_f_itemData_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QAbstractProxyModel *)cls)->itemData (arg1)); } @@ -300,7 +300,7 @@ static void _call_f_mapFromSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel *)cls)->mapFromSource (arg1)); } @@ -319,7 +319,7 @@ static void _call_f_mapSelectionFromSource_c2727 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QAbstractProxyModel *)cls)->mapSelectionFromSource (arg1)); } @@ -338,7 +338,7 @@ static void _call_f_mapSelectionToSource_c2727 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QAbstractProxyModel *)cls)->mapSelectionToSource (arg1)); } @@ -357,7 +357,7 @@ static void _call_f_mapToSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel *)cls)->mapToSource (arg1)); } @@ -376,7 +376,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QAbstractProxyModel *)cls)->mimeData (arg1)); } @@ -430,9 +430,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractProxyModel *)cls)->setData (arg1, arg2, arg3)); } @@ -457,10 +457,10 @@ static void _call_f_setHeaderData_5242 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(Qt::EditRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QAbstractProxyModel *)cls)->setHeaderData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -481,8 +481,8 @@ static void _call_f_setItemData_5414 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QAbstractProxyModel *)cls)->setItemData (arg1, arg2)); } @@ -501,7 +501,7 @@ static void _call_f_setSourceModel_2419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel *)cls)->setSourceModel (arg1); } @@ -525,9 +525,9 @@ static void _call_f_sibling_c3713 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel *)cls)->sibling (arg1, arg2, arg3)); } @@ -548,8 +548,8 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel *)cls)->sort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -584,7 +584,7 @@ static void _call_f_span_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractProxyModel *)cls)->span (arg1)); } @@ -652,9 +652,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractProxyModel::tr (arg1, arg2, arg3)); } @@ -677,9 +677,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractProxyModel::trUtf8 (arg1, arg2, arg3)); } @@ -1662,7 +1662,7 @@ static void _call_ctor_QAbstractProxyModel_Adaptor_1302 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractProxyModel_Adaptor (arg1)); } @@ -1684,9 +1684,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1709,9 +1709,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1738,11 +1738,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1768,11 +1768,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1794,9 +1794,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1819,9 +1819,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -1938,8 +1938,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_changePersistentIndex_4682 (arg1, arg2); } @@ -1960,8 +1960,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -2031,9 +2031,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -2055,9 +2055,9 @@ static void _call_fp_createIndex_c2657 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quintptr arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quintptr arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_createIndex_c2657 (arg1, arg2, arg3)); } @@ -2129,9 +2129,9 @@ static void _call_emitter_dataChanged_7048 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); ((QAbstractProxyModel_Adaptor *)cls)->emitter_QAbstractProxyModel_dataChanged_7048 (arg1, arg2, arg3); } @@ -2155,10 +2155,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -2176,7 +2176,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractProxyModel_Adaptor *)cls)->emitter_QAbstractProxyModel_destroyed_1302 (arg1); } @@ -2255,8 +2255,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_encodeData_c4599 (arg1, arg2); } @@ -2532,9 +2532,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QAbstractProxyModel_Adaptor *)cls)->emitter_QAbstractProxyModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2639,7 +2639,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_isSignalConnected_c2394 (arg1)); } @@ -2682,8 +2682,8 @@ static void _call_emitter_layoutAboutToBeChanged_7947 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QAbstractProxyModel_Adaptor *)cls)->emitter_QAbstractProxyModel_layoutAboutToBeChanged_7947 (arg1, arg2); } @@ -2703,8 +2703,8 @@ static void _call_emitter_layoutChanged_7947 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QAbstractProxyModel_Adaptor *)cls)->emitter_QAbstractProxyModel_layoutChanged_7947 (arg1, arg2); } @@ -2998,7 +2998,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractProxyModel_Adaptor *)cls)->fp_QAbstractProxyModel_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractState.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractState.cc index a5bc9346b..ff391c3d5 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractState.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractState.cc @@ -120,9 +120,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractState::tr (arg1, arg2, arg3)); } @@ -145,9 +145,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractState::trUtf8 (arg1, arg2, arg3)); } @@ -384,7 +384,7 @@ static void _call_emitter_activeChanged_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QAbstractState_Adaptor *)cls)->emitter_QAbstractState_activeChanged_864 (arg1); } @@ -450,7 +450,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractState_Adaptor *)cls)->emitter_QAbstractState_destroyed_1302 (arg1); } @@ -541,7 +541,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractState_Adaptor *)cls)->fp_QAbstractState_isSignalConnected_c2394 (arg1)); } @@ -607,7 +607,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractState_Adaptor *)cls)->fp_QAbstractState_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc index 43c6519c3..1ac00d548 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTableModel.cc @@ -82,11 +82,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -105,7 +105,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QAbstractTableModel *)cls)->flags (arg1)); } @@ -128,9 +128,9 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QAbstractTableModel *)cls)->index (arg1, arg2, arg3)); } @@ -168,9 +168,9 @@ static void _call_f_sibling_c3713 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractTableModel *)cls)->sibling (arg1, arg2, arg3)); } @@ -193,9 +193,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractTableModel::tr (arg1, arg2, arg3)); } @@ -218,9 +218,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractTableModel::trUtf8 (arg1, arg2, arg3)); } @@ -1064,7 +1064,7 @@ static void _call_ctor_QAbstractTableModel_Adaptor_1302 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractTableModel_Adaptor (arg1)); } @@ -1086,9 +1086,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1111,9 +1111,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1140,11 +1140,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1170,11 +1170,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1196,9 +1196,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1221,9 +1221,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -1340,8 +1340,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_changePersistentIndex_4682 (arg1, arg2); } @@ -1362,8 +1362,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -1433,9 +1433,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -1457,9 +1457,9 @@ static void _call_fp_createIndex_c2657 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quintptr arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quintptr arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_createIndex_c2657 (arg1, arg2, arg3)); } @@ -1531,9 +1531,9 @@ static void _call_emitter_dataChanged_7048 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); ((QAbstractTableModel_Adaptor *)cls)->emitter_QAbstractTableModel_dataChanged_7048 (arg1, arg2, arg3); } @@ -1557,10 +1557,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -1578,7 +1578,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractTableModel_Adaptor *)cls)->emitter_QAbstractTableModel_destroyed_1302 (arg1); } @@ -1657,8 +1657,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_encodeData_c4599 (arg1, arg2); } @@ -1911,9 +1911,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QAbstractTableModel_Adaptor *)cls)->emitter_QAbstractTableModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2018,7 +2018,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_isSignalConnected_c2394 (arg1)); } @@ -2061,8 +2061,8 @@ static void _call_emitter_layoutAboutToBeChanged_7947 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QAbstractTableModel_Adaptor *)cls)->emitter_QAbstractTableModel_layoutAboutToBeChanged_7947 (arg1, arg2); } @@ -2082,8 +2082,8 @@ static void _call_emitter_layoutChanged_7947 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QAbstractTableModel_Adaptor *)cls)->emitter_QAbstractTableModel_layoutChanged_7947 (arg1, arg2); } @@ -2262,7 +2262,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractTableModel_Adaptor *)cls)->fp_QAbstractTableModel_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTransition.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTransition.cc index ab5f20563..c795a4b99 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTransition.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAbstractTransition.cc @@ -73,7 +73,7 @@ static void _call_f_addAnimation_2451 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractAnimation *arg1 = args.read (heap); + QAbstractAnimation *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTransition *)cls)->addAnimation (arg1); } @@ -123,7 +123,7 @@ static void _call_f_removeAnimation_2451 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractAnimation *arg1 = args.read (heap); + QAbstractAnimation *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTransition *)cls)->removeAnimation (arg1); } @@ -143,7 +143,7 @@ static void _call_f_setTargetState_2036 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractState *arg1 = args.read (heap); + QAbstractState *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTransition *)cls)->setTargetState (arg1); } @@ -163,7 +163,7 @@ static void _call_f_setTargetStates_3384 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTransition *)cls)->setTargetStates (arg1); } @@ -183,7 +183,7 @@ static void _call_f_setTransitionType_4005 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTransition *)cls)->setTransitionType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -267,9 +267,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractTransition::tr (arg1, arg2, arg3)); } @@ -292,9 +292,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractTransition::trUtf8 (arg1, arg2, arg3)); } @@ -524,7 +524,7 @@ static void _call_ctor_QAbstractTransition_Adaptor_1216 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QState *arg1 = args ? args.read (heap) : (QState *)(0); + QState *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractTransition_Adaptor (arg1)); } @@ -590,7 +590,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractTransition_Adaptor *)cls)->emitter_QAbstractTransition_destroyed_1302 (arg1); } @@ -704,7 +704,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTransition_Adaptor *)cls)->fp_QAbstractTransition_isSignalConnected_c2394 (arg1)); } @@ -746,7 +746,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractTransition_Adaptor *)cls)->fp_QAbstractTransition_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAnimationDriver.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAnimationDriver.cc index 7686982c7..d8b3e6f2f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAnimationDriver.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAnimationDriver.cc @@ -131,7 +131,7 @@ static void _call_f_setStartTime_986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationDriver *)cls)->setStartTime (arg1); } @@ -186,9 +186,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAnimationDriver::tr (arg1, arg2, arg3)); } @@ -211,9 +211,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAnimationDriver::trUtf8 (arg1, arg2, arg3)); } @@ -488,7 +488,7 @@ static void _call_ctor_QAnimationDriver_Adaptor_1302 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAnimationDriver_Adaptor (arg1)); } @@ -526,7 +526,7 @@ static void _call_fp_advanceAnimation_986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args ? args.read (heap) : (qint64)(-1); + qint64 arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationDriver_Adaptor *)cls)->fp_QAnimationDriver_advanceAnimation_986 (arg1); } @@ -593,7 +593,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAnimationDriver_Adaptor *)cls)->emitter_QAnimationDriver_destroyed_1302 (arg1); } @@ -703,7 +703,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAnimationDriver_Adaptor *)cls)->fp_QAnimationDriver_isSignalConnected_c2394 (arg1)); } @@ -721,7 +721,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAnimationDriver_Adaptor *)cls)->fp_QAnimationDriver_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAnimationGroup.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAnimationGroup.cc index a75fe9d01..aea43f32a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAnimationGroup.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAnimationGroup.cc @@ -70,7 +70,7 @@ static void _call_f_addAnimation_2451 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractAnimation *arg1 = args.read (heap); + QAbstractAnimation *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup *)cls)->addAnimation (arg1); } @@ -90,7 +90,7 @@ static void _call_f_animationAt_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractAnimation *)((QAnimationGroup *)cls)->animationAt (arg1)); } @@ -140,7 +140,7 @@ static void _call_f_indexOfAnimation_c2451 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractAnimation *arg1 = args.read (heap); + QAbstractAnimation *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAnimationGroup *)cls)->indexOfAnimation (arg1)); } @@ -161,8 +161,8 @@ static void _call_f_insertAnimation_3110 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QAbstractAnimation *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QAbstractAnimation *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup *)cls)->insertAnimation (arg1, arg2); } @@ -182,7 +182,7 @@ static void _call_f_removeAnimation_2451 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractAnimation *arg1 = args.read (heap); + QAbstractAnimation *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAnimationGroup *)cls)->removeAnimation (arg1); } @@ -202,7 +202,7 @@ static void _call_f_takeAnimation_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractAnimation *)((QAnimationGroup *)cls)->takeAnimation (arg1)); } @@ -225,9 +225,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAnimationGroup::tr (arg1, arg2, arg3)); } @@ -250,9 +250,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAnimationGroup::trUtf8 (arg1, arg2, arg3)); } @@ -538,7 +538,7 @@ static void _call_ctor_QAnimationGroup_Adaptor_1302 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAnimationGroup_Adaptor (arg1)); } @@ -580,7 +580,7 @@ static void _call_emitter_currentLoopChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QAnimationGroup_Adaptor *)cls)->emitter_QAnimationGroup_currentLoopChanged_767 (arg1); } @@ -622,7 +622,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAnimationGroup_Adaptor *)cls)->emitter_QAnimationGroup_destroyed_1302 (arg1); } @@ -640,7 +640,7 @@ static void _call_emitter_directionChanged_3310 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAnimationGroup_Adaptor *)cls)->emitter_QAnimationGroup_directionChanged_3310 (arg1); } @@ -764,7 +764,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAnimationGroup_Adaptor *)cls)->fp_QAnimationGroup_isSignalConnected_c2394 (arg1)); } @@ -782,7 +782,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAnimationGroup_Adaptor *)cls)->fp_QAnimationGroup_receivers_c1731 (arg1)); } @@ -830,8 +830,8 @@ static void _call_emitter_stateChanged_5680 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ((QAnimationGroup_Adaptor *)cls)->emitter_QAnimationGroup_stateChanged_5680 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQAssociativeIterable.cc b/src/gsiqt/qt5/QtCore/gsiDeclQAssociativeIterable.cc index 203aec187..c6191dcba 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQAssociativeIterable.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQAssociativeIterable.cc @@ -65,7 +65,7 @@ static void _call_f_value_c2119 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QAssociativeIterable *)cls)->value (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQBasicTimer.cc b/src/gsiqt/qt5/QtCore/gsiDeclQBasicTimer.cc index 677b18e2a..906d1d5f9 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQBasicTimer.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQBasicTimer.cc @@ -83,8 +83,8 @@ static void _call_f_start_1961 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBasicTimer *)cls)->start (arg1, arg2); } @@ -108,9 +108,9 @@ static void _call_f_start_3533 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QObject *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBasicTimer *)cls)->start (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQBuffer.cc b/src/gsiqt/qt5/QtCore/gsiDeclQBuffer.cc index c090e57b9..1850b374a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQBuffer.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQBuffer.cc @@ -67,7 +67,7 @@ static void _call_ctor_QBuffer_1302 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QBuffer (arg1)); } @@ -88,8 +88,8 @@ static void _call_ctor_QBuffer_2812 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray *arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + QByteArray *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QBuffer (arg1, arg2)); } @@ -199,7 +199,7 @@ static void _call_f_open_3242 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QBuffer *)cls)->open (arg1)); } @@ -233,7 +233,7 @@ static void _call_f_seek_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBuffer *)cls)->seek (arg1)); } @@ -252,7 +252,7 @@ static void _call_f_setBuffer_1618 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray *arg1 = args.read (heap); + QByteArray *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBuffer *)cls)->setBuffer (arg1); } @@ -272,7 +272,7 @@ static void _call_f_setData_2309 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBuffer *)cls)->setData (arg1); } @@ -294,8 +294,8 @@ static void _call_f_setData_2390 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBuffer *)cls)->setData (arg1, arg2); } @@ -334,9 +334,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QBuffer::tr (arg1, arg2, arg3)); } @@ -359,9 +359,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QBuffer::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQByteArrayMatcher.cc b/src/gsiqt/qt5/QtCore/gsiDeclQByteArrayMatcher.cc index 7a9f5b12f..dc4cd0fb7 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQByteArrayMatcher.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQByteArrayMatcher.cc @@ -65,7 +65,7 @@ static void _call_ctor_QByteArrayMatcher_2309 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write (new QByteArrayMatcher (arg1)); } @@ -86,8 +86,8 @@ static void _call_ctor_QByteArrayMatcher_2390 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QByteArrayMatcher (arg1, arg2)); } @@ -106,7 +106,7 @@ static void _call_ctor_QByteArrayMatcher_3017 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArrayMatcher &arg1 = args.read (heap); + const QByteArrayMatcher &arg1 = gsi::arg_reader() (args, heap); ret.write (new QByteArrayMatcher (arg1)); } @@ -129,9 +129,9 @@ static void _call_f_indexIn_c3049 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QByteArrayMatcher *)cls)->indexIn (arg1, arg2, arg3)); } @@ -150,7 +150,7 @@ static void _call_f_operator_eq__3017 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArrayMatcher &arg1 = args.read (heap); + const QByteArrayMatcher &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArrayMatcher &)((QByteArrayMatcher *)cls)->operator= (arg1)); } @@ -184,7 +184,7 @@ static void _call_f_setPattern_2309 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QByteArrayMatcher *)cls)->setPattern (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQChildEvent.cc b/src/gsiqt/qt5/QtCore/gsiDeclQChildEvent.cc index 0f74e24e3..4c30e8fe6 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQChildEvent.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQChildEvent.cc @@ -153,8 +153,8 @@ static void _call_ctor_QChildEvent_Adaptor_2759 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QObject *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); ret.write (new QChildEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQCollator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQCollator.cc index c04453fae..e510d7452 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQCollator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQCollator.cc @@ -52,7 +52,7 @@ static void _call_ctor_QCollator_1986 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args ? args.read (heap) : (const QLocale &)(QLocale()); + const QLocale &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QLocale(), heap); ret.write (new QCollator (arg1)); } @@ -71,7 +71,7 @@ static void _call_ctor_QCollator_2226 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCollator &arg1 = args.read (heap); + const QCollator &arg1 = gsi::arg_reader() (args, heap); ret.write (new QCollator (arg1)); } @@ -107,8 +107,8 @@ static void _call_f_compare_c3942 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QCollator *)cls)->compare (arg1, arg2)); } @@ -129,8 +129,8 @@ static void _call_f_compare_c4512 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); - const QStringRef &arg2 = args.read (heap); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); + const QStringRef &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QCollator *)cls)->compare (arg1, arg2)); } @@ -155,10 +155,10 @@ static void _call_f_compare_c4770 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type * arg1 = args.read::target_type * > (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type * arg3 = args.read::target_type * > (heap); - int arg4 = args.read (heap); + const qt_gsi::Converter::target_type * arg1 = gsi::arg_reader::target_type * >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type * arg3 = gsi::arg_reader::target_type * >() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((int)((QCollator *)cls)->compare (qt_gsi::QtToCppAdaptor(arg1).cptr(), arg2, qt_gsi::QtToCppAdaptor(arg3).cptr(), arg4)); } @@ -224,8 +224,8 @@ static void _call_f_operator_func__c3942 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCollator *)cls)->operator() (arg1, arg2)); } @@ -244,7 +244,7 @@ static void _call_f_operator_eq__2226 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCollator &arg1 = args.read (heap); + const QCollator &arg1 = gsi::arg_reader() (args, heap); ret.write ((QCollator &)((QCollator *)cls)->operator= (arg1)); } @@ -263,7 +263,7 @@ static void _call_f_setCaseSensitivity_2324 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCollator *)cls)->setCaseSensitivity (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -283,7 +283,7 @@ static void _call_f_setIgnorePunctuation_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCollator *)cls)->setIgnorePunctuation (arg1); } @@ -303,7 +303,7 @@ static void _call_f_setLocale_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCollator *)cls)->setLocale (arg1); } @@ -323,7 +323,7 @@ static void _call_f_setNumericMode_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCollator *)cls)->setNumericMode (arg1); } @@ -343,7 +343,7 @@ static void _call_f_sortKey_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QCollatorSortKey)((QCollator *)cls)->sortKey (arg1)); } @@ -362,7 +362,7 @@ static void _call_f_swap_1531 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCollator &arg1 = args.read (heap); + QCollator &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCollator *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQCollatorSortKey.cc b/src/gsiqt/qt5/QtCore/gsiDeclQCollatorSortKey.cc index 7da0db756..39a2c46d6 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQCollatorSortKey.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQCollatorSortKey.cc @@ -50,7 +50,7 @@ static void _call_ctor_QCollatorSortKey_2947 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCollatorSortKey &arg1 = args.read (heap); + const QCollatorSortKey &arg1 = gsi::arg_reader() (args, heap); ret.write (new QCollatorSortKey (arg1)); } @@ -69,7 +69,7 @@ static void _call_f_compare_c2947 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCollatorSortKey &arg1 = args.read (heap); + const QCollatorSortKey &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCollatorSortKey *)cls)->compare (arg1)); } @@ -88,7 +88,7 @@ static void _call_f_operator_eq__2947 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCollatorSortKey &arg1 = args.read (heap); + const QCollatorSortKey &arg1 = gsi::arg_reader() (args, heap); ret.write ((QCollatorSortKey &)((QCollatorSortKey *)cls)->operator= (arg1)); } @@ -107,7 +107,7 @@ static void _call_f_swap_2252 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCollatorSortKey &arg1 = args.read (heap); + QCollatorSortKey &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCollatorSortKey *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineOption.cc b/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineOption.cc index b56d59ace..3c16f80be 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineOption.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineOption.cc @@ -50,7 +50,7 @@ static void _call_ctor_QCommandLineOption_2025 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QCommandLineOption (arg1)); } @@ -69,7 +69,7 @@ static void _call_ctor_QCommandLineOption_2437 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); ret.write (new QCommandLineOption (arg1)); } @@ -94,10 +94,10 @@ static void _call_ctor_QCommandLineOption_7776 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QCommandLineOption (arg1, arg2, arg3, arg4)); } @@ -122,10 +122,10 @@ static void _call_ctor_QCommandLineOption_8188 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QCommandLineOption (arg1, arg2, arg3, arg4)); } @@ -144,7 +144,7 @@ static void _call_ctor_QCommandLineOption_3122 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCommandLineOption &arg1 = args.read (heap); + const QCommandLineOption &arg1 = gsi::arg_reader() (args, heap); ret.write (new QCommandLineOption (arg1)); } @@ -208,7 +208,7 @@ static void _call_f_operator_eq__3122 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCommandLineOption &arg1 = args.read (heap); + const QCommandLineOption &arg1 = gsi::arg_reader() (args, heap); ret.write ((QCommandLineOption &)((QCommandLineOption *)cls)->operator= (arg1)); } @@ -227,7 +227,7 @@ static void _call_f_setDefaultValue_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLineOption *)cls)->setDefaultValue (arg1); } @@ -247,7 +247,7 @@ static void _call_f_setDefaultValues_2437 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLineOption *)cls)->setDefaultValues (arg1); } @@ -267,7 +267,7 @@ static void _call_f_setDescription_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLineOption *)cls)->setDescription (arg1); } @@ -287,7 +287,7 @@ static void _call_f_setValueName_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLineOption *)cls)->setValueName (arg1); } @@ -307,7 +307,7 @@ static void _call_f_swap_2427 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCommandLineOption &arg1 = args.read (heap); + QCommandLineOption &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLineOption *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineParser.cc b/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineParser.cc index e8b65ff9c..0a2f766ec 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineParser.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQCommandLineParser.cc @@ -82,7 +82,7 @@ static void _call_f_addOption_3122 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCommandLineOption &arg1 = args.read (heap); + const QCommandLineOption &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLineParser *)cls)->addOption (arg1)); } @@ -101,7 +101,7 @@ static void _call_f_addOptions_3737 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QCommandLineParser *)cls)->addOptions (arg1)); } @@ -124,9 +124,9 @@ static void _call_f_addPositionalArgument_5859 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLineParser *)cls)->addPositionalArgument (arg1, arg2, arg3); } @@ -222,7 +222,7 @@ static void _call_f_isSet_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLineParser *)cls)->isSet (arg1)); } @@ -241,7 +241,7 @@ static void _call_f_isSet_c3122 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCommandLineOption &arg1 = args.read (heap); + const QCommandLineOption &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLineParser *)cls)->isSet (arg1)); } @@ -275,7 +275,7 @@ static void _call_f_parse_2437 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLineParser *)cls)->parse (arg1)); } @@ -309,7 +309,7 @@ static void _call_f_process_2437 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLineParser *)cls)->process (arg1); } @@ -329,7 +329,7 @@ static void _call_f_process_2927 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCoreApplication &arg1 = args.read (heap); + const QCoreApplication &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLineParser *)cls)->process (arg1); } @@ -349,7 +349,7 @@ static void _call_f_setApplicationDescription_2025 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLineParser *)cls)->setApplicationDescription (arg1); } @@ -369,7 +369,7 @@ static void _call_f_setSingleDashWordOptionMode_4777 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLineParser *)cls)->setSingleDashWordOptionMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -389,7 +389,7 @@ static void _call_f_showHelp_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLineParser *)cls)->showHelp (arg1); } @@ -440,7 +440,7 @@ static void _call_f_value_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QCommandLineParser *)cls)->value (arg1)); } @@ -459,7 +459,7 @@ static void _call_f_value_c3122 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCommandLineOption &arg1 = args.read (heap); + const QCommandLineOption &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QCommandLineParser *)cls)->value (arg1)); } @@ -478,7 +478,7 @@ static void _call_f_values_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QCommandLineParser *)cls)->values (arg1)); } @@ -497,7 +497,7 @@ static void _call_f_values_c3122 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCommandLineOption &arg1 = args.read (heap); + const QCommandLineOption &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QCommandLineParser *)cls)->values (arg1)); } @@ -520,9 +520,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCommandLineParser::tr (arg1, arg2, arg3)); } @@ -545,9 +545,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCommandLineParser::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQCoreApplication.cc b/src/gsiqt/qt5/QtCore/gsiDeclQCoreApplication.cc index f353989b6..192425cd0 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQCoreApplication.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQCoreApplication.cc @@ -66,7 +66,7 @@ static void _call_f_installNativeEventFilter_3266 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractNativeEventFilter *arg1 = args.read (heap); + QAbstractNativeEventFilter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCoreApplication *)cls)->installNativeEventFilter (arg1); } @@ -88,8 +88,8 @@ static void _call_f_notify_2411 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCoreApplication *)cls)->notify (arg1, arg2)); } @@ -108,7 +108,7 @@ static void _call_f_removeNativeEventFilter_3266 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractNativeEventFilter *arg1 = args.read (heap); + QAbstractNativeEventFilter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCoreApplication *)cls)->removeNativeEventFilter (arg1); } @@ -128,7 +128,7 @@ static void _call_f_addLibraryPath_2025 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::addLibraryPath (arg1); } @@ -283,7 +283,7 @@ static void _call_f_exit_767 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::exit (arg1); } @@ -334,7 +334,7 @@ static void _call_f_installTranslator_1769 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTranslator *arg1 = args.read (heap); + QTranslator *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QCoreApplication::installTranslator (arg1)); } @@ -447,10 +447,10 @@ static void _call_f_postEvent_3070 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg2); - int arg3 = args ? args.read (heap) : (int)(Qt::NormalEventPriority); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::NormalEventPriority, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::postEvent (arg1, arg2, arg3); } @@ -470,7 +470,7 @@ static void _call_f_processEvents_3995 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QEventLoop::AllEvents); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QEventLoop::AllEvents, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::processEvents (arg1); } @@ -492,8 +492,8 @@ static void _call_f_processEvents_4654 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - int arg2 = args.read (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::processEvents (arg1, arg2); } @@ -529,7 +529,7 @@ static void _call_f_removeLibraryPath_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::removeLibraryPath (arg1); } @@ -551,8 +551,8 @@ static void _call_f_removePostedEvents_1961 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::removePostedEvents (arg1, arg2); } @@ -572,7 +572,7 @@ static void _call_f_removeTranslator_1769 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTranslator *arg1 = args.read (heap); + QTranslator *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QCoreApplication::removeTranslator (arg1)); } @@ -593,8 +593,8 @@ static void _call_f_sendEvent_2411 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QCoreApplication::sendEvent (arg1, arg2)); } @@ -615,8 +615,8 @@ static void _call_f_sendPostedEvents_1961 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - int arg2 = args ? args.read (heap) : (int)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::sendPostedEvents (arg1, arg2); } @@ -636,7 +636,7 @@ static void _call_f_setApplicationName_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::setApplicationName (arg1); } @@ -656,7 +656,7 @@ static void _call_f_setApplicationVersion_2025 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::setApplicationVersion (arg1); } @@ -678,8 +678,8 @@ static void _call_f_setAttribute_3593 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::setAttribute (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -699,7 +699,7 @@ static void _call_f_setEventDispatcher_3068 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractEventDispatcher *arg1 = args.read (heap); + QAbstractEventDispatcher *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::setEventDispatcher (arg1); } @@ -719,7 +719,7 @@ static void _call_f_setLibraryPaths_2437 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::setLibraryPaths (arg1); } @@ -739,7 +739,7 @@ static void _call_f_setOrganizationDomain_2025 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::setOrganizationDomain (arg1); } @@ -759,7 +759,7 @@ static void _call_f_setOrganizationName_2025 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::setOrganizationName (arg1); } @@ -779,7 +779,7 @@ static void _call_f_setQuitLockEnabled_864 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::setQuitLockEnabled (arg1); } @@ -799,7 +799,7 @@ static void _call_f_setSetuidAllowed_864 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCoreApplication::setSetuidAllowed (arg1); } @@ -834,7 +834,7 @@ static void _call_f_testAttribute_2837 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)QCoreApplication::testAttribute (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -857,9 +857,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCoreApplication::tr (arg1, arg2, arg3)); } @@ -882,9 +882,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCoreApplication::trUtf8 (arg1, arg2, arg3)); } @@ -909,10 +909,10 @@ static void _call_f_translate_5636 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const char *arg3 = args ? args.read (heap) : (const char *)(0); - int arg4 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCoreApplication::translate (arg1, arg2, arg3, arg4)); } @@ -1270,7 +1270,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCoreApplication_Adaptor *)cls)->emitter_QCoreApplication_destroyed_1302 (arg1); } @@ -1361,7 +1361,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCoreApplication_Adaptor *)cls)->fp_QCoreApplication_isSignalConnected_c2394 (arg1)); } @@ -1433,7 +1433,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCoreApplication_Adaptor *)cls)->fp_QCoreApplication_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQCryptographicHash.cc b/src/gsiqt/qt5/QtCore/gsiDeclQCryptographicHash.cc index a7b3668a6..a2548bd92 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQCryptographicHash.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQCryptographicHash.cc @@ -51,7 +51,7 @@ static void _call_ctor_QCryptographicHash_3331 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QCryptographicHash (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -72,8 +72,8 @@ static void _call_f_addData_2390 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCryptographicHash *)cls)->addData (arg1, arg2); } @@ -93,7 +93,7 @@ static void _call_f_addData_2309 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCryptographicHash *)cls)->addData (arg1); } @@ -113,7 +113,7 @@ static void _call_f_addData_1447 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCryptographicHash *)cls)->addData (arg1)); } @@ -165,8 +165,8 @@ static void _call_f_hash_5532 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QByteArray)QCryptographicHash::hash (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDataStream.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDataStream.cc index 8f4990e73..6d819ff5c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDataStream.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDataStream.cc @@ -274,7 +274,7 @@ static void _call_ctor_QDataStream_1447 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write (new QDataStream (arg1)); } @@ -295,8 +295,8 @@ static void _call_ctor_QDataStream_4752 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QByteArray *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write (new QDataStream (arg1, arg2)); } @@ -315,7 +315,7 @@ static void _call_ctor_QDataStream_2309 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDataStream (arg1)); } @@ -410,7 +410,7 @@ static void _call_f_setByteOrder_2543 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataStream *)cls)->setByteOrder (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -430,7 +430,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataStream *)cls)->setDevice (arg1); } @@ -450,7 +450,7 @@ static void _call_f_setFloatingPointPrecision_3913 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataStream *)cls)->setFloatingPointPrecision (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -470,7 +470,7 @@ static void _call_f_setStatus_2275 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataStream *)cls)->setStatus (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -490,7 +490,7 @@ static void _call_f_setVersion_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataStream *)cls)->setVersion (arg1); } @@ -510,7 +510,7 @@ static void _call_f_skipRawData_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDataStream *)cls)->skipRawData (arg1)); } @@ -577,8 +577,8 @@ static void _call_f_writeBytes_3395 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); ret.write ((QDataStream &)((QDataStream *)cls)->writeBytes (arg1, arg2)); } @@ -599,8 +599,8 @@ static void _call_f_writeRawData_2390 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QDataStream *)cls)->writeRawData (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDate.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDate.cc index a0d239070..30591c499 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDate.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDate.cc @@ -69,9 +69,9 @@ static void _call_ctor_QDate_2085 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write (new QDate (arg1, arg2, arg3)); } @@ -90,7 +90,7 @@ static void _call_f_addDays_c986 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((QDate)((QDate *)cls)->addDays (arg1)); } @@ -109,7 +109,7 @@ static void _call_f_addMonths_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDate)((QDate *)cls)->addMonths (arg1)); } @@ -128,7 +128,7 @@ static void _call_f_addYears_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDate)((QDate *)cls)->addYears (arg1)); } @@ -222,7 +222,7 @@ static void _call_f_daysTo_c1776 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QDate *)cls)->daysTo (arg1)); } @@ -245,9 +245,9 @@ static void _call_f_getDate_2643 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDate *)cls)->getDate (arg1, arg2, arg3); } @@ -312,7 +312,7 @@ static void _call_f_operator_excl__eq__c1776 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDate *)cls)->operator!= (arg1)); } @@ -331,7 +331,7 @@ static void _call_f_operator_lt__c1776 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDate *)cls)->operator< (arg1)); } @@ -350,7 +350,7 @@ static void _call_f_operator_lt__eq__c1776 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDate *)cls)->operator<= (arg1)); } @@ -369,7 +369,7 @@ static void _call_f_operator_eq__eq__c1776 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDate *)cls)->operator== (arg1)); } @@ -388,7 +388,7 @@ static void _call_f_operator_gt__c1776 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDate *)cls)->operator> (arg1)); } @@ -407,7 +407,7 @@ static void _call_f_operator_gt__eq__c1776 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDate *)cls)->operator>= (arg1)); } @@ -430,9 +430,9 @@ static void _call_f_setDate_2085 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDate *)cls)->setDate (arg1, arg2, arg3)); } @@ -466,7 +466,7 @@ static void _call_f_toString_c1748 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate), heap); ret.write ((QString)((QDate *)cls)->toString (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -485,7 +485,7 @@ static void _call_f_toString_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDate *)cls)->toString (arg1)); } @@ -504,7 +504,7 @@ static void _call_f_weekNumber_c953 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args ? args.read (heap) : (int *)(0); + int *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QDate *)cls)->weekNumber (arg1)); } @@ -553,7 +553,7 @@ static void _call_f_fromJulianDay_986 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((QDate)QDate::fromJulianDay (arg1)); } @@ -574,8 +574,8 @@ static void _call_f_fromString_3665 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate), heap); ret.write ((QDate)QDate::fromString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -596,8 +596,8 @@ static void _call_f_fromString_3942 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDate)QDate::fromString (arg1, arg2)); } @@ -616,7 +616,7 @@ static void _call_f_isLeapYear_767 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QDate::isLeapYear (arg1)); } @@ -639,9 +639,9 @@ static void _call_f_isValid_2085 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)QDate::isValid (arg1, arg2, arg3)); } @@ -662,8 +662,8 @@ static void _call_f_longDayName_2995 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QDate::DateFormat)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QDate::DateFormat), heap); ret.write ((QString)QDate::longDayName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -684,8 +684,8 @@ static void _call_f_longMonthName_2995 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QDate::DateFormat)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QDate::DateFormat), heap); ret.write ((QString)QDate::longMonthName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -706,8 +706,8 @@ static void _call_f_shortDayName_2995 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QDate::DateFormat)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QDate::DateFormat), heap); ret.write ((QString)QDate::shortDayName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -728,8 +728,8 @@ static void _call_f_shortMonthName_2995 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QDate::DateFormat)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QDate::DateFormat), heap); ret.write ((QString)QDate::shortMonthName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDateTime.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDateTime.cc index 31ce607e7..5794d238a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDateTime.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDateTime.cc @@ -68,7 +68,7 @@ static void _call_ctor_QDateTime_1776 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDateTime (arg1)); } @@ -91,9 +91,9 @@ static void _call_ctor_QDateTime_4896 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - const QTime &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LocalTime)); + const QDate &arg1 = gsi::arg_reader() (args, heap); + const QTime &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LocalTime), heap); ret.write (new QDateTime (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -118,10 +118,10 @@ static void _call_ctor_QDateTime_5555 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - const QTime &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - int arg4 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); + const QTime &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write (new QDateTime (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -144,9 +144,9 @@ static void _call_ctor_QDateTime_5558 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - const QTime &arg2 = args.read (heap); - const QTimeZone &arg3 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); + const QTime &arg2 = gsi::arg_reader() (args, heap); + const QTimeZone &arg3 = gsi::arg_reader() (args, heap); ret.write (new QDateTime (arg1, arg2, arg3)); } @@ -165,7 +165,7 @@ static void _call_ctor_QDateTime_2175 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDateTime (arg1)); } @@ -184,7 +184,7 @@ static void _call_f_addDays_c986 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateTime *)cls)->addDays (arg1)); } @@ -203,7 +203,7 @@ static void _call_f_addMSecs_c986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateTime *)cls)->addMSecs (arg1)); } @@ -222,7 +222,7 @@ static void _call_f_addMonths_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateTime *)cls)->addMonths (arg1)); } @@ -241,7 +241,7 @@ static void _call_f_addSecs_c986 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateTime *)cls)->addSecs (arg1)); } @@ -260,7 +260,7 @@ static void _call_f_addYears_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateTime *)cls)->addYears (arg1)); } @@ -294,7 +294,7 @@ static void _call_f_daysTo_c2175 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QDateTime *)cls)->daysTo (arg1)); } @@ -358,7 +358,7 @@ static void _call_f_msecsTo_c2175 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QDateTime *)cls)->msecsTo (arg1)); } @@ -392,7 +392,7 @@ static void _call_f_operator_excl__eq__c2175 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTime *)cls)->operator!= (arg1)); } @@ -411,7 +411,7 @@ static void _call_f_operator_lt__c2175 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTime *)cls)->operator< (arg1)); } @@ -430,7 +430,7 @@ static void _call_f_operator_lt__eq__c2175 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTime *)cls)->operator<= (arg1)); } @@ -449,7 +449,7 @@ static void _call_f_operator_eq__2175 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime &)((QDateTime *)cls)->operator= (arg1)); } @@ -468,7 +468,7 @@ static void _call_f_operator_eq__eq__c2175 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTime *)cls)->operator== (arg1)); } @@ -487,7 +487,7 @@ static void _call_f_operator_gt__c2175 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTime *)cls)->operator> (arg1)); } @@ -506,7 +506,7 @@ static void _call_f_operator_gt__eq__c2175 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTime *)cls)->operator>= (arg1)); } @@ -525,7 +525,7 @@ static void _call_f_secsTo_c2175 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QDateTime *)cls)->secsTo (arg1)); } @@ -544,7 +544,7 @@ static void _call_f_setDate_1776 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTime *)cls)->setDate (arg1); } @@ -564,7 +564,7 @@ static void _call_f_setMSecsSinceEpoch_986 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTime *)cls)->setMSecsSinceEpoch (arg1); } @@ -584,7 +584,7 @@ static void _call_f_setOffsetFromUtc_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTime *)cls)->setOffsetFromUtc (arg1); } @@ -604,7 +604,7 @@ static void _call_f_setTime_1793 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTime *)cls)->setTime (arg1); } @@ -624,7 +624,7 @@ static void _call_f_setTimeSpec_1543 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTime *)cls)->setTimeSpec (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -644,7 +644,7 @@ static void _call_f_setTimeZone_2205 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTimeZone &arg1 = args.read (heap); + const QTimeZone &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTime *)cls)->setTimeZone (arg1); } @@ -664,7 +664,7 @@ static void _call_f_setTime_t_1772 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTime *)cls)->setTime_t (arg1); } @@ -684,7 +684,7 @@ static void _call_f_setUtcOffset_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTime *)cls)->setUtcOffset (arg1); } @@ -704,7 +704,7 @@ static void _call_f_swap_1480 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDateTime &arg1 = args.read (heap); + QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTime *)cls)->swap (arg1); } @@ -814,7 +814,7 @@ static void _call_f_toOffsetFromUtc_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateTime *)cls)->toOffsetFromUtc (arg1)); } @@ -833,7 +833,7 @@ static void _call_f_toString_c1748 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate), heap); ret.write ((QString)((QDateTime *)cls)->toString (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -852,7 +852,7 @@ static void _call_f_toString_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDateTime *)cls)->toString (arg1)); } @@ -871,7 +871,7 @@ static void _call_f_toTimeSpec_c1543 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QDateTime)((QDateTime *)cls)->toTimeSpec (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -890,7 +890,7 @@ static void _call_f_toTimeZone_c2205 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTimeZone &arg1 = args.read (heap); + const QTimeZone &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QDateTime *)cls)->toTimeZone (arg1)); } @@ -999,7 +999,7 @@ static void _call_f_fromMSecsSinceEpoch_986 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)QDateTime::fromMSecsSinceEpoch (arg1)); } @@ -1022,9 +1022,9 @@ static void _call_f_fromMSecsSinceEpoch_3080 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(0); + qint64 arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QDateTime)QDateTime::fromMSecsSinceEpoch (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -1045,8 +1045,8 @@ static void _call_f_fromMSecsSinceEpoch_3083 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); - const QTimeZone &arg2 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); + const QTimeZone &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)QDateTime::fromMSecsSinceEpoch (arg1, arg2)); } @@ -1067,8 +1067,8 @@ static void _call_f_fromString_3665 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate), heap); ret.write ((QDateTime)QDateTime::fromString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1089,8 +1089,8 @@ static void _call_f_fromString_3942 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)QDateTime::fromString (arg1, arg2)); } @@ -1109,7 +1109,7 @@ static void _call_f_fromTime_t_1772 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)QDateTime::fromTime_t (arg1)); } @@ -1132,9 +1132,9 @@ static void _call_f_fromTime_t_3866 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(0); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QDateTime)QDateTime::fromTime_t (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -1155,8 +1155,8 @@ static void _call_f_fromTime_t_3869 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QTimeZone &arg2 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QTimeZone &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)QDateTime::fromTime_t (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDebug.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDebug.cc index 145fc621f..e25e12f54 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDebug.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDebug.cc @@ -51,7 +51,7 @@ static void _call_ctor_QDebug_1447 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write (new QDebug (arg1)); } @@ -70,7 +70,7 @@ static void _call_ctor_QDebug_1334 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString *arg1 = args.read (heap); + QString *arg1 = gsi::arg_reader() (args, heap); ret.write (new QDebug (arg1)); } @@ -89,7 +89,7 @@ static void _call_ctor_QDebug_1346 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QDebug (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -108,7 +108,7 @@ static void _call_ctor_QDebug_1881 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDebug &arg1 = args.read (heap); + const QDebug &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDebug (arg1)); } @@ -142,7 +142,7 @@ static void _call_f_maybeQuote_850 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - char arg1 = args ? args.read (heap) : (char)('"'); + char arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() ('"', heap); ret.write ((QDebug &)((QDebug *)cls)->maybeQuote (arg1)); } @@ -206,7 +206,7 @@ static void _call_f_operator_lt__lt__2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDebug &)((QDebug *)cls)->operator<< (arg1)); } @@ -225,7 +225,7 @@ static void _call_f_operator_eq__1881 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDebug &arg1 = args.read (heap); + const QDebug &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDebug &)((QDebug *)cls)->operator= (arg1)); } @@ -274,7 +274,7 @@ static void _call_f_setAutoInsertSpaces_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDebug *)cls)->setAutoInsertSpaces (arg1); } @@ -309,7 +309,7 @@ static void _call_f_swap_1186 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDebug &arg1 = args.read (heap); + QDebug &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDebug *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDebugStateSaver.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDebugStateSaver.cc index 3dc5d270a..2f7ab0443 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDebugStateSaver.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDebugStateSaver.cc @@ -51,7 +51,7 @@ static void _call_ctor_QDebugStateSaver_1186 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDebug &arg1 = args.read (heap); + QDebug &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDebugStateSaver (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDir.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDir.cc index 87275562d..ed72afbdd 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDir.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDir.cc @@ -51,7 +51,7 @@ static void _call_ctor_QDir_1681 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDir (arg1)); } @@ -70,7 +70,7 @@ static void _call_ctor_QDir_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QDir (arg1)); } @@ -95,10 +95,10 @@ static void _call_ctor_QDir_8374 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QDir::SortFlags(QDir::Name | QDir::IgnoreCase)); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QDir::AllEntries); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::SortFlags(QDir::Name | QDir::IgnoreCase), heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::AllEntries, heap); ret.write (new QDir (arg1, arg2, arg3, arg4)); } @@ -117,7 +117,7 @@ static void _call_f_absoluteFilePath_c2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDir *)cls)->absoluteFilePath (arg1)); } @@ -166,7 +166,7 @@ static void _call_f_cd_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->cd (arg1)); } @@ -232,8 +232,8 @@ static void _call_f_entryInfoList_c4540 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QDir::NoFilter); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QDir::NoSort); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoFilter, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoSort, heap); ret.write > ((QList)((QDir *)cls)->entryInfoList (arg1, arg2)); } @@ -256,9 +256,9 @@ static void _call_f_entryInfoList_c6869 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QDir::NoFilter); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QDir::NoSort); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoFilter, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoSort, heap); ret.write > ((QList)((QDir *)cls)->entryInfoList (arg1, arg2, arg3)); } @@ -279,8 +279,8 @@ static void _call_f_entryList_c4540 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QDir::NoFilter); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QDir::NoSort); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoFilter, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoSort, heap); ret.write ((QStringList)((QDir *)cls)->entryList (arg1, arg2)); } @@ -303,9 +303,9 @@ static void _call_f_entryList_c6869 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QDir::NoFilter); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QDir::NoSort); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoFilter, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoSort, heap); ret.write ((QStringList)((QDir *)cls)->entryList (arg1, arg2, arg3)); } @@ -339,7 +339,7 @@ static void _call_f_exists_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->exists (arg1)); } @@ -358,7 +358,7 @@ static void _call_f_filePath_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDir *)cls)->filePath (arg1)); } @@ -467,7 +467,7 @@ static void _call_f_mkdir_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->mkdir (arg1)); } @@ -486,7 +486,7 @@ static void _call_f_mkpath_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->mkpath (arg1)); } @@ -520,7 +520,7 @@ static void _call_f_operator_excl__eq__c1681 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->operator!= (arg1)); } @@ -539,7 +539,7 @@ static void _call_f_operator_eq__1681 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDir &)((QDir *)cls)->operator= (arg1)); } @@ -558,7 +558,7 @@ static void _call_f_operator_eq__2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDir &)((QDir *)cls)->operator= (arg1)); } @@ -577,7 +577,7 @@ static void _call_f_operator_eq__eq__c1681 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->operator== (arg1)); } @@ -596,7 +596,7 @@ static void _call_f_operator_index__c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDir *)cls)->operator[] (arg1)); } @@ -646,7 +646,7 @@ static void _call_f_relativeFilePath_c2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDir *)cls)->relativeFilePath (arg1)); } @@ -665,7 +665,7 @@ static void _call_f_remove_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->remove (arg1)); } @@ -701,8 +701,8 @@ static void _call_f_rename_3942 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->rename (arg1, arg2)); } @@ -721,7 +721,7 @@ static void _call_f_rmdir_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->rmdir (arg1)); } @@ -740,7 +740,7 @@ static void _call_f_rmpath_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDir *)cls)->rmpath (arg1)); } @@ -759,7 +759,7 @@ static void _call_f_setFilter_2230 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDir *)cls)->setFilter (arg1); } @@ -779,7 +779,7 @@ static void _call_f_setNameFilters_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDir *)cls)->setNameFilters (arg1); } @@ -799,7 +799,7 @@ static void _call_f_setPath_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDir *)cls)->setPath (arg1); } @@ -819,7 +819,7 @@ static void _call_f_setSorting_2418 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDir *)cls)->setSorting (arg1); } @@ -854,7 +854,7 @@ static void _call_f_swap_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDir &arg1 = args.read (heap); + QDir &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDir *)cls)->swap (arg1); } @@ -874,7 +874,7 @@ static void _call_f_addResourceSearchPath_2025 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QDir::addResourceSearchPath (arg1); } @@ -896,8 +896,8 @@ static void _call_f_addSearchPath_3942 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QDir::addSearchPath (arg1, arg2); } @@ -917,7 +917,7 @@ static void _call_f_cleanPath_2025 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QDir::cleanPath (arg1)); } @@ -981,7 +981,7 @@ static void _call_f_fromNativeSeparators_2025 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QDir::fromNativeSeparators (arg1)); } @@ -1030,7 +1030,7 @@ static void _call_f_isAbsolutePath_2025 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QDir::isAbsolutePath (arg1)); } @@ -1049,7 +1049,7 @@ static void _call_f_isRelativePath_2025 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QDir::isRelativePath (arg1)); } @@ -1070,8 +1070,8 @@ static void _call_f_match_4354 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QDir::match (arg1, arg2)); } @@ -1092,8 +1092,8 @@ static void _call_f_match_3942 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QDir::match (arg1, arg2)); } @@ -1112,7 +1112,7 @@ static void _call_f_nameFiltersFromString_2025 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)QDir::nameFiltersFromString (arg1)); } @@ -1161,7 +1161,7 @@ static void _call_f_searchPaths_2025 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)QDir::searchPaths (arg1)); } @@ -1195,7 +1195,7 @@ static void _call_f_setCurrent_2025 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QDir::setCurrent (arg1)); } @@ -1216,8 +1216,8 @@ static void _call_f_setSearchPaths_4354 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QDir::setSearchPaths (arg1, arg2); } @@ -1267,7 +1267,7 @@ static void _call_f_toNativeSeparators_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QDir::toNativeSeparators (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDirIterator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDirIterator.cc index e07c011db..74afdd2e2 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDirIterator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDirIterator.cc @@ -54,8 +54,8 @@ static void _call_ctor_QDirIterator_5251 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QDirIterator::NoIteratorFlags); + const QDir &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDirIterator::NoIteratorFlags, heap); ret.write (new QDirIterator (arg1, arg2)); } @@ -76,8 +76,8 @@ static void _call_ctor_QDirIterator_5595 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QDirIterator::NoIteratorFlags); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDirIterator::NoIteratorFlags, heap); ret.write (new QDirIterator (arg1, arg2)); } @@ -100,9 +100,9 @@ static void _call_ctor_QDirIterator_7717 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QDirIterator::NoIteratorFlags); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDirIterator::NoIteratorFlags, heap); ret.write (new QDirIterator (arg1, arg2, arg3)); } @@ -127,10 +127,10 @@ static void _call_ctor_QDirIterator_10046 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QDir::NoFilter); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QDirIterator::NoIteratorFlags); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDir::NoFilter, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QDirIterator::NoIteratorFlags, heap); ret.write (new QDirIterator (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc b/src/gsiqt/qt5/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc index 840ff6eb5..bb139e07a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQDynamicPropertyChangeEvent.cc @@ -102,7 +102,7 @@ static void _call_ctor_QDynamicPropertyChangeEvent_Adaptor_2309 (const qt_gsi::G { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDynamicPropertyChangeEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQEasingCurve.cc b/src/gsiqt/qt5/QtCore/gsiDeclQEasingCurve.cc index a4936d388..e5c5bda0c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQEasingCurve.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQEasingCurve.cc @@ -51,7 +51,7 @@ static void _call_ctor_QEasingCurve_2167 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEasingCurve::Linear)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEasingCurve::Linear), heap); ret.write (new QEasingCurve (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -70,7 +70,7 @@ static void _call_ctor_QEasingCurve_2510 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QEasingCurve &arg1 = args.read (heap); + const QEasingCurve &arg1 = gsi::arg_reader() (args, heap); ret.write (new QEasingCurve (arg1)); } @@ -93,9 +93,9 @@ static void _call_f_addCubicBezierSegment_5742 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEasingCurve *)cls)->addCubicBezierSegment (arg1, arg2, arg3); } @@ -121,10 +121,10 @@ static void _call_f_addTCBSegment_4875 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEasingCurve *)cls)->addTCBSegment (arg1, arg2, arg3, arg4); } @@ -159,7 +159,7 @@ static void _call_f_operator_excl__eq__c2510 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QEasingCurve &arg1 = args.read (heap); + const QEasingCurve &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEasingCurve *)cls)->operator!= (arg1)); } @@ -178,7 +178,7 @@ static void _call_f_operator_eq__2510 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QEasingCurve &arg1 = args.read (heap); + const QEasingCurve &arg1 = gsi::arg_reader() (args, heap); ret.write ((QEasingCurve &)((QEasingCurve *)cls)->operator= (arg1)); } @@ -197,7 +197,7 @@ static void _call_f_operator_eq__eq__c2510 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QEasingCurve &arg1 = args.read (heap); + const QEasingCurve &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEasingCurve *)cls)->operator== (arg1)); } @@ -246,7 +246,7 @@ static void _call_f_setAmplitude_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEasingCurve *)cls)->setAmplitude (arg1); } @@ -266,7 +266,7 @@ static void _call_f_setOvershoot_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEasingCurve *)cls)->setOvershoot (arg1); } @@ -286,7 +286,7 @@ static void _call_f_setPeriod_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEasingCurve *)cls)->setPeriod (arg1); } @@ -306,7 +306,7 @@ static void _call_f_setType_2167 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEasingCurve *)cls)->setType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -326,7 +326,7 @@ static void _call_f_swap_1815 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEasingCurve &arg1 = args.read (heap); + QEasingCurve &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEasingCurve *)cls)->swap (arg1); } @@ -376,7 +376,7 @@ static void _call_f_valueForProgress_c1071 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QEasingCurve *)cls)->valueForProgress (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQElapsedTimer.cc b/src/gsiqt/qt5/QtCore/gsiDeclQElapsedTimer.cc index 4f90f1763..bc100eb31 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQElapsedTimer.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQElapsedTimer.cc @@ -80,7 +80,7 @@ static void _call_f_hasExpired_c986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QElapsedTimer *)cls)->hasExpired (arg1)); } @@ -145,7 +145,7 @@ static void _call_f_msecsTo_c2609 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QElapsedTimer &arg1 = args.read (heap); + const QElapsedTimer &arg1 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QElapsedTimer *)cls)->msecsTo (arg1)); } @@ -179,7 +179,7 @@ static void _call_f_operator_excl__eq__c2609 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QElapsedTimer &arg1 = args.read (heap); + const QElapsedTimer &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QElapsedTimer *)cls)->operator!= (arg1)); } @@ -198,7 +198,7 @@ static void _call_f_operator_eq__eq__c2609 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QElapsedTimer &arg1 = args.read (heap); + const QElapsedTimer &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QElapsedTimer *)cls)->operator== (arg1)); } @@ -232,7 +232,7 @@ static void _call_f_secsTo_c2609 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QElapsedTimer &arg1 = args.read (heap); + const QElapsedTimer &arg1 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QElapsedTimer *)cls)->secsTo (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQEvent.cc b/src/gsiqt/qt5/QtCore/gsiDeclQEvent.cc index d92e03f3e..1cbc71a5f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQEvent.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQEvent.cc @@ -97,7 +97,7 @@ static void _call_f_operator_eq__1908 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QEvent &arg1 = args.read (heap); + const QEvent &arg1 = gsi::arg_reader() (args, heap); ret.write ((QEvent &)((QEvent *)cls)->operator= (arg1)); } @@ -116,7 +116,7 @@ static void _call_f_setAccepted_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEvent *)cls)->setAccepted (arg1); } @@ -166,7 +166,7 @@ static void _call_f_registerEventType_767 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((int)QEvent::registerEventType (arg1)); } @@ -232,7 +232,7 @@ static void _call_ctor_QEvent_Adaptor_1565 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -250,7 +250,7 @@ static void _call_ctor_QEvent_Adaptor_1908 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QEvent &arg1 = args.read (heap); + const QEvent &arg1 = gsi::arg_reader() (args, heap); ret.write (new QEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc b/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc index 83b335cd9..d9b666c3e 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQEventLoop.cc @@ -69,7 +69,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEventLoop *)cls)->event (arg1)); } @@ -88,7 +88,7 @@ static void _call_f_exec_3995 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QEventLoop::AllEvents); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QEventLoop::AllEvents, heap); ret.write ((int)((QEventLoop *)cls)->exec (arg1)); } @@ -107,7 +107,7 @@ static void _call_f_exit_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop *)cls)->exit (arg1); } @@ -142,7 +142,7 @@ static void _call_f_processEvents_3995 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QEventLoop::AllEvents); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QEventLoop::AllEvents, heap); ret.write ((bool)((QEventLoop *)cls)->processEvents (arg1)); } @@ -163,8 +163,8 @@ static void _call_f_processEvents_4654 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - int arg2 = args.read (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventLoop *)cls)->processEvents (arg1, arg2); } @@ -220,9 +220,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QEventLoop::tr (arg1, arg2, arg3)); } @@ -245,9 +245,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QEventLoop::trUtf8 (arg1, arg2, arg3)); } @@ -440,7 +440,7 @@ static void _call_ctor_QEventLoop_Adaptor_1302 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QEventLoop_Adaptor (arg1)); } @@ -506,7 +506,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QEventLoop_Adaptor *)cls)->emitter_QEventLoop_destroyed_1302 (arg1); } @@ -597,7 +597,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEventLoop_Adaptor *)cls)->fp_QEventLoop_isSignalConnected_c2394 (arg1)); } @@ -615,7 +615,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QEventLoop_Adaptor *)cls)->fp_QEventLoop_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQEventLoopLocker.cc b/src/gsiqt/qt5/QtCore/gsiDeclQEventLoopLocker.cc index 9e3238317..6a7700c69 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQEventLoopLocker.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQEventLoopLocker.cc @@ -67,7 +67,7 @@ static void _call_ctor_QEventLoopLocker_1627 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEventLoop *arg1 = args.read (heap); + QEventLoop *arg1 = gsi::arg_reader() (args, heap); ret.write (new QEventLoopLocker (arg1)); } @@ -86,7 +86,7 @@ static void _call_ctor_QEventLoopLocker_1303 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QThread *arg1 = args.read (heap); + QThread *arg1 = gsi::arg_reader() (args, heap); ret.write (new QEventLoopLocker (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQEventTransition.cc b/src/gsiqt/qt5/QtCore/gsiDeclQEventTransition.cc index 255e30464..6e340128d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQEventTransition.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQEventTransition.cc @@ -103,7 +103,7 @@ static void _call_f_setEventSource_1302 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventTransition *)cls)->setEventSource (arg1); } @@ -123,7 +123,7 @@ static void _call_f_setEventType_1565 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QEventTransition *)cls)->setEventType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -147,9 +147,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QEventTransition::tr (arg1, arg2, arg3)); } @@ -172,9 +172,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QEventTransition::trUtf8 (arg1, arg2, arg3)); } @@ -407,7 +407,7 @@ static void _call_ctor_QEventTransition_Adaptor_1216 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QState *arg1 = args ? args.read (heap) : (QState *)(0); + QState *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QEventTransition_Adaptor (arg1)); } @@ -429,9 +429,9 @@ static void _call_ctor_QEventTransition_Adaptor_3867 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QState *arg3 = args ? args.read (heap) : (QState *)(0); + QObject *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QState *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QEventTransition_Adaptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -497,7 +497,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QEventTransition_Adaptor *)cls)->emitter_QEventTransition_destroyed_1302 (arg1); } @@ -611,7 +611,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QEventTransition_Adaptor *)cls)->fp_QEventTransition_isSignalConnected_c2394 (arg1)); } @@ -653,7 +653,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QEventTransition_Adaptor *)cls)->fp_QEventTransition_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFile.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFile.cc index 43e94d1e6..767a3feb4 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFile.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFile.cc @@ -82,7 +82,7 @@ static void _call_ctor_QFile_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFile (arg1)); } @@ -101,7 +101,7 @@ static void _call_ctor_QFile_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QFile (arg1)); } @@ -122,8 +122,8 @@ static void _call_ctor_QFile_3219 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); ret.write (new QFile (arg1, arg2)); } @@ -142,7 +142,7 @@ static void _call_f_copy_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFile *)cls)->copy (arg1)); } @@ -191,7 +191,7 @@ static void _call_f_link_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFile *)cls)->link (arg1)); } @@ -210,7 +210,7 @@ static void _call_f_open_3242 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QFile *)cls)->open (arg1)); } @@ -274,7 +274,7 @@ static void _call_f_rename_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFile *)cls)->rename (arg1)); } @@ -293,7 +293,7 @@ static void _call_f_resize_986 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFile *)cls)->resize (arg1)); } @@ -312,7 +312,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFile *)cls)->setFileName (arg1); } @@ -332,7 +332,7 @@ static void _call_f_setPermissions_3370 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QFile *)cls)->setPermissions (arg1)); } @@ -383,8 +383,8 @@ static void _call_f_copy_3942 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QFile::copy (arg1, arg2)); } @@ -403,7 +403,7 @@ static void _call_f_decodeName_1731 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QFile::decodeName (arg1)); } @@ -422,7 +422,7 @@ static void _call_f_encodeName_2025 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)QFile::encodeName (arg1)); } @@ -441,7 +441,7 @@ static void _call_f_exists_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QFile::exists (arg1)); } @@ -462,8 +462,8 @@ static void _call_f_link_3942 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QFile::link (arg1, arg2)); } @@ -482,7 +482,7 @@ static void _call_f_permissions_2025 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)QFile::permissions (arg1)); } @@ -501,7 +501,7 @@ static void _call_f_readLink_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QFile::readLink (arg1)); } @@ -520,7 +520,7 @@ static void _call_f_remove_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QFile::remove (arg1)); } @@ -541,8 +541,8 @@ static void _call_f_rename_3942 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QFile::rename (arg1, arg2)); } @@ -563,8 +563,8 @@ static void _call_f_resize_2903 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - qint64 arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QFile::resize (arg1, arg2)); } @@ -585,8 +585,8 @@ static void _call_f_setPermissions_5287 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((bool)QFile::setPermissions (arg1, arg2)); } @@ -605,7 +605,7 @@ static void _call_f_symLinkTarget_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QFile::symLinkTarget (arg1)); } @@ -628,9 +628,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFile::tr (arg1, arg2, arg3)); } @@ -653,9 +653,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFile::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc index a83c40ce2..c914438f6 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFileDevice.cc @@ -205,7 +205,7 @@ static void _call_f_resize_986 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDevice *)cls)->resize (arg1)); } @@ -224,7 +224,7 @@ static void _call_f_seek_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDevice *)cls)->seek (arg1)); } @@ -243,7 +243,7 @@ static void _call_f_setPermissions_3370 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QFileDevice *)cls)->setPermissions (arg1)); } @@ -297,9 +297,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFileDevice::tr (arg1, arg2, arg3)); } @@ -322,9 +322,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFileDevice::trUtf8 (arg1, arg2, arg3)); } @@ -908,7 +908,7 @@ static void _call_emitter_bytesWritten_986 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ((QFileDevice_Adaptor *)cls)->emitter_QFileDevice_bytesWritten_986 (arg1); } @@ -1013,7 +1013,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFileDevice_Adaptor *)cls)->emitter_QFileDevice_destroyed_1302 (arg1); } @@ -1142,7 +1142,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDevice_Adaptor *)cls)->fp_QFileDevice_isSignalConnected_c2394 (arg1)); } @@ -1249,7 +1249,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFileDevice_Adaptor *)cls)->fp_QFileDevice_receivers_c1731 (arg1)); } @@ -1360,7 +1360,7 @@ static void _call_fp_setErrorString_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDevice_Adaptor *)cls)->fp_QFileDevice_setErrorString_2025 (arg1); } @@ -1379,7 +1379,7 @@ static void _call_fp_setOpenMode_3242 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDevice_Adaptor *)cls)->fp_QFileDevice_setOpenMode_3242 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFileInfo.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFileInfo.cc index 1573dacbe..e0f1a02f4 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFileInfo.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFileInfo.cc @@ -68,7 +68,7 @@ static void _call_ctor_QFileInfo_2025 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFileInfo (arg1)); } @@ -87,7 +87,7 @@ static void _call_ctor_QFileInfo_1778 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFile &arg1 = args.read (heap); + const QFile &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFileInfo (arg1)); } @@ -108,8 +108,8 @@ static void _call_ctor_QFileInfo_3598 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write (new QFileInfo (arg1, arg2)); } @@ -128,7 +128,7 @@ static void _call_ctor_QFileInfo_2174 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFileInfo (arg1)); } @@ -627,7 +627,7 @@ static void _call_f_operator_excl__eq__c2174 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileInfo *)cls)->operator!= (arg1)); } @@ -646,7 +646,7 @@ static void _call_f_operator_eq__2174 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFileInfo &)((QFileInfo *)cls)->operator= (arg1)); } @@ -665,7 +665,7 @@ static void _call_f_operator_eq__eq__c2174 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileInfo *)cls)->operator== (arg1)); } @@ -729,7 +729,7 @@ static void _call_f_permission_c3370 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QFileInfo *)cls)->permission (arg1)); } @@ -794,7 +794,7 @@ static void _call_f_setCaching_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileInfo *)cls)->setCaching (arg1); } @@ -814,7 +814,7 @@ static void _call_f_setFile_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileInfo *)cls)->setFile (arg1); } @@ -834,7 +834,7 @@ static void _call_f_setFile_1778 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFile &arg1 = args.read (heap); + const QFile &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileInfo *)cls)->setFile (arg1); } @@ -856,8 +856,8 @@ static void _call_f_setFile_3598 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileInfo *)cls)->setFile (arg1, arg2); } @@ -907,7 +907,7 @@ static void _call_f_swap_1479 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFileInfo &arg1 = args.read (heap); + QFileInfo &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileInfo *)cls)->swap (arg1); } @@ -942,7 +942,7 @@ static void _call_f_exists_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QFileInfo::exists (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFileSelector.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFileSelector.cc index bdcc7cf3c..13b84b33f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFileSelector.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFileSelector.cc @@ -100,7 +100,7 @@ static void _call_f_select_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFileSelector *)cls)->select (arg1)); } @@ -119,7 +119,7 @@ static void _call_f_select_c1701 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl)((QFileSelector *)cls)->select (arg1)); } @@ -138,7 +138,7 @@ static void _call_f_setExtraSelectors_2437 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSelector *)cls)->setExtraSelectors (arg1); } @@ -162,9 +162,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFileSelector::tr (arg1, arg2, arg3)); } @@ -187,9 +187,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFileSelector::trUtf8 (arg1, arg2, arg3)); } @@ -379,7 +379,7 @@ static void _call_ctor_QFileSelector_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFileSelector_Adaptor (arg1)); } @@ -445,7 +445,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFileSelector_Adaptor *)cls)->emitter_QFileSelector_destroyed_1302 (arg1); } @@ -536,7 +536,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSelector_Adaptor *)cls)->fp_QFileSelector_isSignalConnected_c2394 (arg1)); } @@ -554,7 +554,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFileSelector_Adaptor *)cls)->fp_QFileSelector_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFileSystemWatcher.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFileSystemWatcher.cc index 4a6013a48..9c943602d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFileSystemWatcher.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFileSystemWatcher.cc @@ -69,7 +69,7 @@ static void _call_f_addPath_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemWatcher *)cls)->addPath (arg1)); } @@ -88,7 +88,7 @@ static void _call_f_addPaths_2437 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QFileSystemWatcher *)cls)->addPaths (arg1)); } @@ -137,7 +137,7 @@ static void _call_f_removePath_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemWatcher *)cls)->removePath (arg1)); } @@ -156,7 +156,7 @@ static void _call_f_removePaths_2437 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QFileSystemWatcher *)cls)->removePaths (arg1)); } @@ -179,9 +179,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFileSystemWatcher::tr (arg1, arg2, arg3)); } @@ -204,9 +204,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFileSystemWatcher::trUtf8 (arg1, arg2, arg3)); } @@ -409,7 +409,7 @@ static void _call_ctor_QFileSystemWatcher_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFileSystemWatcher_Adaptor (arg1)); } @@ -429,8 +429,8 @@ static void _call_ctor_QFileSystemWatcher_Adaptor_3631 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFileSystemWatcher_Adaptor (arg1, arg2)); } @@ -496,7 +496,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFileSystemWatcher_Adaptor *)cls)->emitter_QFileSystemWatcher_destroyed_1302 (arg1); } @@ -587,7 +587,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemWatcher_Adaptor *)cls)->fp_QFileSystemWatcher_isSignalConnected_c2394 (arg1)); } @@ -605,7 +605,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFileSystemWatcher_Adaptor *)cls)->fp_QFileSystemWatcher_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQFinalState.cc b/src/gsiqt/qt5/QtCore/gsiDeclQFinalState.cc index 5b20580bb..ecabe3fe5 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQFinalState.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQFinalState.cc @@ -75,9 +75,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFinalState::tr (arg1, arg2, arg3)); } @@ -100,9 +100,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFinalState::trUtf8 (arg1, arg2, arg3)); } @@ -326,7 +326,7 @@ static void _call_ctor_QFinalState_Adaptor_1216 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QState *arg1 = args ? args.read (heap) : (QState *)(0); + QState *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFinalState_Adaptor (arg1)); } @@ -344,7 +344,7 @@ static void _call_emitter_activeChanged_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QFinalState_Adaptor *)cls)->emitter_QFinalState_activeChanged_864 (arg1); } @@ -410,7 +410,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFinalState_Adaptor *)cls)->emitter_QFinalState_destroyed_1302 (arg1); } @@ -501,7 +501,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFinalState_Adaptor *)cls)->fp_QFinalState_isSignalConnected_c2394 (arg1)); } @@ -567,7 +567,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFinalState_Adaptor *)cls)->fp_QFinalState_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQHistoryState.cc b/src/gsiqt/qt5/QtCore/gsiDeclQHistoryState.cc index 65a4217c9..dc0839aa7 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQHistoryState.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQHistoryState.cc @@ -102,7 +102,7 @@ static void _call_f_setDefaultState_2036 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractState *arg1 = args.read (heap); + QAbstractState *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHistoryState *)cls)->setDefaultState (arg1); } @@ -122,7 +122,7 @@ static void _call_f_setHistoryType_3072 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHistoryState *)cls)->setHistoryType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -146,9 +146,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QHistoryState::tr (arg1, arg2, arg3)); } @@ -171,9 +171,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QHistoryState::trUtf8 (arg1, arg2, arg3)); } @@ -413,7 +413,7 @@ static void _call_ctor_QHistoryState_Adaptor_1216 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QState *arg1 = args ? args.read (heap) : (QState *)(0); + QState *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QHistoryState_Adaptor (arg1)); } @@ -433,8 +433,8 @@ static void _call_ctor_QHistoryState_Adaptor_4180 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QState *arg2 = args ? args.read (heap) : (QState *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QState *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QHistoryState_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -452,7 +452,7 @@ static void _call_emitter_activeChanged_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QHistoryState_Adaptor *)cls)->emitter_QHistoryState_activeChanged_864 (arg1); } @@ -518,7 +518,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QHistoryState_Adaptor *)cls)->emitter_QHistoryState_destroyed_1302 (arg1); } @@ -609,7 +609,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHistoryState_Adaptor *)cls)->fp_QHistoryState_isSignalConnected_c2394 (arg1)); } @@ -675,7 +675,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHistoryState_Adaptor *)cls)->fp_QHistoryState_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQIODevice.cc b/src/gsiqt/qt5/QtCore/gsiDeclQIODevice.cc index d7ac3faf2..7c859f3aa 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQIODevice.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQIODevice.cc @@ -233,7 +233,7 @@ static void _call_f_open_3242 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QIODevice *)cls)->open (arg1)); } @@ -267,7 +267,7 @@ static void _call_f_peek_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QIODevice *)cls)->peek (arg1)); } @@ -301,7 +301,7 @@ static void _call_f_putChar_850 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - char arg1 = args.read (heap); + char arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIODevice *)cls)->putChar (arg1)); } @@ -320,7 +320,7 @@ static void _call_f_read_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QIODevice *)cls)->read (arg1)); } @@ -354,7 +354,7 @@ static void _call_f_readLine_986 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args ? args.read (heap) : (qint64)(0); + qint64 arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QByteArray)((QIODevice *)cls)->readLine (arg1)); } @@ -388,7 +388,7 @@ static void _call_f_seek_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIODevice *)cls)->seek (arg1)); } @@ -407,7 +407,7 @@ static void _call_f_setTextModeEnabled_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIODevice *)cls)->setTextModeEnabled (arg1); } @@ -442,7 +442,7 @@ static void _call_f_ungetChar_850 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - char arg1 = args.read (heap); + char arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIODevice *)cls)->ungetChar (arg1); } @@ -462,7 +462,7 @@ static void _call_f_waitForBytesWritten_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIODevice *)cls)->waitForBytesWritten (arg1)); } @@ -481,7 +481,7 @@ static void _call_f_waitForReadyRead_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIODevice *)cls)->waitForReadyRead (arg1)); } @@ -502,8 +502,8 @@ static void _call_f_write_2609 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - qint64 arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QIODevice *)cls)->write (arg1, arg2)); } @@ -522,7 +522,7 @@ static void _call_f_write_2309 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QIODevice *)cls)->write (arg1)); } @@ -545,9 +545,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QIODevice::tr (arg1, arg2, arg3)); } @@ -570,9 +570,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QIODevice::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc index 15d42aee3..bc38fe9b5 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQIdentityProxyModel.cc @@ -76,7 +76,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QIdentityProxyModel *)cls)->columnCount (arg1)); } @@ -103,11 +103,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -130,9 +130,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QIdentityProxyModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -155,9 +155,9 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QIdentityProxyModel *)cls)->index (arg1, arg2, arg3)); } @@ -180,9 +180,9 @@ static void _call_f_insertColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QIdentityProxyModel *)cls)->insertColumns (arg1, arg2, arg3)); } @@ -205,9 +205,9 @@ static void _call_f_insertRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QIdentityProxyModel *)cls)->insertRows (arg1, arg2, arg3)); } @@ -226,7 +226,7 @@ static void _call_f_mapFromSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QIdentityProxyModel *)cls)->mapFromSource (arg1)); } @@ -245,7 +245,7 @@ static void _call_f_mapSelectionFromSource_c2727 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QIdentityProxyModel *)cls)->mapSelectionFromSource (arg1)); } @@ -264,7 +264,7 @@ static void _call_f_mapSelectionToSource_c2727 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QIdentityProxyModel *)cls)->mapSelectionToSource (arg1)); } @@ -283,7 +283,7 @@ static void _call_f_mapToSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QIdentityProxyModel *)cls)->mapToSource (arg1)); } @@ -310,11 +310,11 @@ static void _call_f_match_c7932 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(1); - QFlags arg5 = args ? args.read > (heap) : (QFlags)(Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap)); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QIdentityProxyModel *)cls)->match (arg1, arg2, arg3, arg4, arg5)); } @@ -333,7 +333,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QIdentityProxyModel *)cls)->parent (arg1)); } @@ -356,9 +356,9 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QIdentityProxyModel *)cls)->removeColumns (arg1, arg2, arg3)); } @@ -381,9 +381,9 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QIdentityProxyModel *)cls)->removeRows (arg1, arg2, arg3)); } @@ -402,7 +402,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QIdentityProxyModel *)cls)->rowCount (arg1)); } @@ -421,7 +421,7 @@ static void _call_f_setSourceModel_2419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel *)cls)->setSourceModel (arg1); } @@ -445,9 +445,9 @@ static void _call_f_sibling_c3713 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QIdentityProxyModel *)cls)->sibling (arg1, arg2, arg3)); } @@ -470,9 +470,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QIdentityProxyModel::tr (arg1, arg2, arg3)); } @@ -495,9 +495,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QIdentityProxyModel::trUtf8 (arg1, arg2, arg3)); } @@ -1461,7 +1461,7 @@ static void _call_ctor_QIdentityProxyModel_Adaptor_1302 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QIdentityProxyModel_Adaptor (arg1)); } @@ -1483,9 +1483,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->fp_QIdentityProxyModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1508,9 +1508,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->fp_QIdentityProxyModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1537,11 +1537,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->fp_QIdentityProxyModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1567,11 +1567,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->fp_QIdentityProxyModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1593,9 +1593,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->fp_QIdentityProxyModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1618,9 +1618,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->fp_QIdentityProxyModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -1737,8 +1737,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->fp_QIdentityProxyModel_changePersistentIndex_4682 (arg1, arg2); } @@ -1759,8 +1759,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->fp_QIdentityProxyModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -1830,9 +1830,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QIdentityProxyModel_Adaptor *)cls)->fp_QIdentityProxyModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -1854,9 +1854,9 @@ static void _call_fp_createIndex_c2657 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quintptr arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quintptr arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QIdentityProxyModel_Adaptor *)cls)->fp_QIdentityProxyModel_createIndex_c2657 (arg1, arg2, arg3)); } @@ -1928,9 +1928,9 @@ static void _call_emitter_dataChanged_7048 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); ((QIdentityProxyModel_Adaptor *)cls)->emitter_QIdentityProxyModel_dataChanged_7048 (arg1, arg2, arg3); } @@ -1954,10 +1954,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->fp_QIdentityProxyModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -1975,7 +1975,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QIdentityProxyModel_Adaptor *)cls)->emitter_QIdentityProxyModel_destroyed_1302 (arg1); } @@ -2054,8 +2054,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIdentityProxyModel_Adaptor *)cls)->fp_QIdentityProxyModel_encodeData_c4599 (arg1, arg2); } @@ -2331,9 +2331,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QIdentityProxyModel_Adaptor *)cls)->emitter_QIdentityProxyModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2438,7 +2438,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIdentityProxyModel_Adaptor *)cls)->fp_QIdentityProxyModel_isSignalConnected_c2394 (arg1)); } @@ -2481,8 +2481,8 @@ static void _call_emitter_layoutAboutToBeChanged_7947 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QIdentityProxyModel_Adaptor *)cls)->emitter_QIdentityProxyModel_layoutAboutToBeChanged_7947 (arg1, arg2); } @@ -2502,8 +2502,8 @@ static void _call_emitter_layoutChanged_7947 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QIdentityProxyModel_Adaptor *)cls)->emitter_QIdentityProxyModel_layoutChanged_7947 (arg1, arg2); } @@ -2797,7 +2797,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QIdentityProxyModel_Adaptor *)cls)->fp_QIdentityProxyModel_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQItemSelection.cc b/src/gsiqt/qt5/QtCore/gsiDeclQItemSelection.cc index 68b617c24..7f4b83be0 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQItemSelection.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQItemSelection.cc @@ -69,8 +69,8 @@ static void _call_ctor_QItemSelection_4682 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write (new QItemSelection (arg1, arg2)); } @@ -89,7 +89,7 @@ static void _call_f_contains_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelection *)cls)->contains (arg1)); } @@ -125,8 +125,8 @@ static void _call_f_merge_7090 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelection *)cls)->merge (arg1, arg2); } @@ -148,8 +148,8 @@ static void _call_f_select_4682 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelection *)cls)->select (arg1, arg2); } @@ -173,9 +173,9 @@ static void _call_f_split_8260 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelectionRange &arg1 = args.read (heap); - const QItemSelectionRange &arg2 = args.read (heap); - QItemSelection *arg3 = args.read (heap); + const QItemSelectionRange &arg1 = gsi::arg_reader() (args, heap); + const QItemSelectionRange &arg2 = gsi::arg_reader() (args, heap); + QItemSelection *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QItemSelection::split (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionModel.cc index f1d768bb3..09eda9343 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionModel.cc @@ -122,8 +122,8 @@ static void _call_f_columnIntersectsSelection_c3054 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel *)cls)->columnIntersectsSelection (arg1, arg2)); } @@ -174,8 +174,8 @@ static void _call_f_isColumnSelected_c3054 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel *)cls)->isColumnSelected (arg1, arg2)); } @@ -196,8 +196,8 @@ static void _call_f_isRowSelected_c3054 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel *)cls)->isRowSelected (arg1, arg2)); } @@ -216,7 +216,7 @@ static void _call_f_isSelected_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel *)cls)->isSelected (arg1)); } @@ -283,8 +283,8 @@ static void _call_f_rowIntersectsSelection_c3054 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel *)cls)->rowIntersectsSelection (arg1, arg2)); } @@ -305,8 +305,8 @@ static void _call_f_select_6758 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel *)cls)->select (arg1, arg2); } @@ -328,8 +328,8 @@ static void _call_f_select_7090 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel *)cls)->select (arg1, arg2); } @@ -349,7 +349,7 @@ static void _call_f_selectedColumns_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QItemSelectionModel *)cls)->selectedColumns (arg1)); } @@ -383,7 +383,7 @@ static void _call_f_selectedRows_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QItemSelectionModel *)cls)->selectedRows (arg1)); } @@ -419,8 +419,8 @@ static void _call_f_setCurrentIndex_6758 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel *)cls)->setCurrentIndex (arg1, arg2); } @@ -440,7 +440,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel *)cls)->setModel (arg1); } @@ -464,9 +464,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QItemSelectionModel::tr (arg1, arg2, arg3)); } @@ -489,9 +489,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QItemSelectionModel::trUtf8 (arg1, arg2, arg3)); } @@ -839,7 +839,7 @@ static void _call_ctor_QItemSelectionModel_Adaptor_2419 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args ? args.read (heap) : (QAbstractItemModel *)(0); + QAbstractItemModel *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QItemSelectionModel_Adaptor (arg1)); } @@ -859,8 +859,8 @@ static void _call_ctor_QItemSelectionModel_Adaptor_3613 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); ret.write (new QItemSelectionModel_Adaptor (arg1, arg2)); } @@ -944,8 +944,8 @@ static void _call_emitter_currentChanged_4682 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QItemSelectionModel_Adaptor *)cls)->emitter_QItemSelectionModel_currentChanged_4682 (arg1, arg2); } @@ -965,8 +965,8 @@ static void _call_emitter_currentColumnChanged_4682 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QItemSelectionModel_Adaptor *)cls)->emitter_QItemSelectionModel_currentColumnChanged_4682 (arg1, arg2); } @@ -986,8 +986,8 @@ static void _call_emitter_currentRowChanged_4682 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ((QItemSelectionModel_Adaptor *)cls)->emitter_QItemSelectionModel_currentRowChanged_4682 (arg1, arg2); } @@ -1029,7 +1029,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QItemSelectionModel_Adaptor *)cls)->emitter_QItemSelectionModel_destroyed_1302 (arg1); } @@ -1073,8 +1073,8 @@ static void _call_fp_emitSelectionChanged_5346 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemSelectionModel_Adaptor *)cls)->fp_QItemSelectionModel_emitSelectionChanged_5346 (arg1, arg2); } @@ -1142,7 +1142,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionModel_Adaptor *)cls)->fp_QItemSelectionModel_isSignalConnected_c2394 (arg1)); } @@ -1160,7 +1160,7 @@ static void _call_emitter_modelChanged_2419 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); ((QItemSelectionModel_Adaptor *)cls)->emitter_QItemSelectionModel_modelChanged_2419 (arg1); } @@ -1178,7 +1178,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QItemSelectionModel_Adaptor *)cls)->fp_QItemSelectionModel_receivers_c1731 (arg1)); } @@ -1272,8 +1272,8 @@ static void _call_emitter_selectionChanged_5346 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); - const QItemSelection &arg2 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); + const QItemSelection &arg2 = gsi::arg_reader() (args, heap); ((QItemSelectionModel_Adaptor *)cls)->emitter_QItemSelectionModel_selectionChanged_5346 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionRange.cc b/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionRange.cc index 04a3bd2a0..0b1415b92 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionRange.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQItemSelectionRange.cc @@ -68,7 +68,7 @@ static void _call_ctor_QItemSelectionRange_3220 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelectionRange &arg1 = args.read (heap); + const QItemSelectionRange &arg1 = gsi::arg_reader() (args, heap); ret.write (new QItemSelectionRange (arg1)); } @@ -89,8 +89,8 @@ static void _call_ctor_QItemSelectionRange_4682 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write (new QItemSelectionRange (arg1, arg2)); } @@ -109,7 +109,7 @@ static void _call_ctor_QItemSelectionRange_2395 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write (new QItemSelectionRange (arg1)); } @@ -158,7 +158,7 @@ static void _call_f_contains_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionRange *)cls)->contains (arg1)); } @@ -181,9 +181,9 @@ static void _call_f_contains_c3713 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionRange *)cls)->contains (arg1, arg2, arg3)); } @@ -232,7 +232,7 @@ static void _call_f_intersected_c3220 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelectionRange &arg1 = args.read (heap); + const QItemSelectionRange &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelectionRange)((QItemSelectionRange *)cls)->intersected (arg1)); } @@ -251,7 +251,7 @@ static void _call_f_intersects_c3220 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelectionRange &arg1 = args.read (heap); + const QItemSelectionRange &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionRange *)cls)->intersects (arg1)); } @@ -330,7 +330,7 @@ static void _call_f_operator_excl__eq__c3220 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelectionRange &arg1 = args.read (heap); + const QItemSelectionRange &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionRange *)cls)->operator!= (arg1)); } @@ -349,7 +349,7 @@ static void _call_f_operator_lt__c3220 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelectionRange &arg1 = args.read (heap); + const QItemSelectionRange &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionRange *)cls)->operator< (arg1)); } @@ -368,7 +368,7 @@ static void _call_f_operator_eq__eq__c3220 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelectionRange &arg1 = args.read (heap); + const QItemSelectionRange &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemSelectionRange *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray.cc index 04c598db0..0c18a67b4 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray.cc @@ -67,7 +67,7 @@ static void _call_ctor_QJsonArray_2315 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray &arg1 = args.read (heap); + const QJsonArray &arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonArray (arg1)); } @@ -86,7 +86,7 @@ static void _call_f_append_2313 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QJsonArray *)cls)->append (arg1); } @@ -106,7 +106,7 @@ static void _call_f_at_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonValue)((QJsonArray *)cls)->at (arg1)); } @@ -185,7 +185,7 @@ static void _call_f_contains_c2313 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray *)cls)->contains (arg1)); } @@ -264,7 +264,7 @@ static void _call_f_erase_2428 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QJsonArray::iterator arg1 = args.read (heap); + QJsonArray::iterator arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray::iterator)((QJsonArray *)cls)->erase (arg1)); } @@ -300,8 +300,8 @@ static void _call_f_insert_2972 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QJsonValue &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QJsonValue &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QJsonArray *)cls)->insert (arg1, arg2); } @@ -323,8 +323,8 @@ static void _call_f_insert_4633 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QJsonArray::iterator arg1 = args.read (heap); - const QJsonValue &arg2 = args.read (heap); + QJsonArray::iterator arg1 = gsi::arg_reader() (args, heap); + const QJsonValue &arg2 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray::iterator)((QJsonArray *)cls)->insert (arg1, arg2)); } @@ -373,7 +373,7 @@ static void _call_f_operator_eq__2315 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray &arg1 = args.read (heap); + const QJsonArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray &)((QJsonArray *)cls)->operator = (arg1)); } @@ -392,7 +392,7 @@ static void _call_f_operator_excl__eq__c2315 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray &arg1 = args.read (heap); + const QJsonArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray *)cls)->operator!= (arg1)); } @@ -411,7 +411,7 @@ static void _call_f_operator_plus__c2313 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray)((QJsonArray *)cls)->operator+ (arg1)); } @@ -430,7 +430,7 @@ static void _call_f_operator_plus__eq__2313 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray &)((QJsonArray *)cls)->operator+= (arg1)); } @@ -449,7 +449,7 @@ static void _call_f_operator_lt__lt__2313 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray &)((QJsonArray *)cls)->operator<< (arg1)); } @@ -468,7 +468,7 @@ static void _call_f_operator_eq__eq__c2315 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray &arg1 = args.read (heap); + const QJsonArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray *)cls)->operator== (arg1)); } @@ -487,7 +487,7 @@ static void _call_f_operator_index__767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonValueRef)((QJsonArray *)cls)->operator[] (arg1)); } @@ -506,7 +506,7 @@ static void _call_f_operator_index__c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonValue)((QJsonArray *)cls)->operator[] (arg1)); } @@ -557,7 +557,7 @@ static void _call_f_prepend_2313 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QJsonArray *)cls)->prepend (arg1); } @@ -577,7 +577,7 @@ static void _call_f_push_back_2313 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QJsonArray *)cls)->push_back (arg1); } @@ -597,7 +597,7 @@ static void _call_f_push_front_2313 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QJsonArray *)cls)->push_front (arg1); } @@ -617,7 +617,7 @@ static void _call_f_removeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QJsonArray *)cls)->removeAt (arg1); } @@ -671,8 +671,8 @@ static void _call_f_replace_2972 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QJsonValue &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QJsonValue &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QJsonArray *)cls)->replace (arg1, arg2); } @@ -707,7 +707,7 @@ static void _call_f_takeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonValue)((QJsonArray *)cls)->takeAt (arg1)); } @@ -741,7 +741,7 @@ static void _call_f_fromStringList_2437 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray)QJsonArray::fromStringList (arg1)); } @@ -760,7 +760,7 @@ static void _call_f_fromVariantList_2734 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QJsonArray)QJsonArray::fromVariantList (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Const_iterator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Const_iterator.cc index 4897da4cb..c73a31ffe 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Const_iterator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Const_iterator.cc @@ -70,8 +70,8 @@ static void _call_ctor_QJsonArray_Const_iterator_2978 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray *arg1 = args.read (heap); - int arg2 = args.read (heap); + const QJsonArray *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QJsonArray::const_iterator (arg1, arg2)); } @@ -90,7 +90,7 @@ static void _call_ctor_QJsonArray_Const_iterator_3951 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::const_iterator &arg1 = args.read (heap); + const QJsonArray::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonArray::const_iterator (arg1)); } @@ -109,7 +109,7 @@ static void _call_ctor_QJsonArray_Const_iterator_3305 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::iterator &arg1 = args.read (heap); + const QJsonArray::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonArray::const_iterator (arg1)); } @@ -128,7 +128,7 @@ static void _call_f_operator_excl__eq__c3951 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::const_iterator &arg1 = args.read (heap); + const QJsonArray::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::const_iterator *)cls)->operator!= (arg1)); } @@ -162,7 +162,7 @@ static void _call_f_operator_plus__c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray::const_iterator)((QJsonArray::const_iterator *)cls)->operator+ (arg1)); } @@ -196,7 +196,7 @@ static void _call_f_operator_plus__plus__767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray::const_iterator)((QJsonArray::const_iterator *)cls)->operator++ (arg1)); } @@ -215,7 +215,7 @@ static void _call_f_operator_plus__eq__767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray::const_iterator &)((QJsonArray::const_iterator *)cls)->operator+= (arg1)); } @@ -234,7 +234,7 @@ static void _call_f_operator_minus__c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray::const_iterator)((QJsonArray::const_iterator *)cls)->operator- (arg1)); } @@ -253,7 +253,7 @@ static void _call_f_operator_minus__c3074 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QJsonArray::const_iterator arg1 = args.read (heap); + QJsonArray::const_iterator arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QJsonArray::const_iterator *)cls)->operator- (arg1)); } @@ -287,7 +287,7 @@ static void _call_f_operator_minus__minus__767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray::const_iterator)((QJsonArray::const_iterator *)cls)->operator-- (arg1)); } @@ -306,7 +306,7 @@ static void _call_f_operator_minus__eq__767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray::const_iterator &)((QJsonArray::const_iterator *)cls)->operator-= (arg1)); } @@ -340,7 +340,7 @@ static void _call_f_operator_lt__c3951 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::const_iterator &arg1 = args.read (heap); + const QJsonArray::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::const_iterator *)cls)->operator< (arg1)); } @@ -359,7 +359,7 @@ static void _call_f_operator_lt__eq__c3951 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::const_iterator &arg1 = args.read (heap); + const QJsonArray::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::const_iterator *)cls)->operator<= (arg1)); } @@ -378,7 +378,7 @@ static void _call_f_operator_eq__eq__c3951 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::const_iterator &arg1 = args.read (heap); + const QJsonArray::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::const_iterator *)cls)->operator== (arg1)); } @@ -397,7 +397,7 @@ static void _call_f_operator_gt__c3951 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::const_iterator &arg1 = args.read (heap); + const QJsonArray::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::const_iterator *)cls)->operator> (arg1)); } @@ -416,7 +416,7 @@ static void _call_f_operator_gt__eq__c3951 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::const_iterator &arg1 = args.read (heap); + const QJsonArray::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::const_iterator *)cls)->operator>= (arg1)); } @@ -435,7 +435,7 @@ static void _call_f_operator_index__c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonValue)((QJsonArray::const_iterator *)cls)->operator[] (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Iterator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Iterator.cc index 9c1fe7238..2e4cb6841 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Iterator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonArray_Iterator.cc @@ -70,8 +70,8 @@ static void _call_ctor_QJsonArray_Iterator_2283 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QJsonArray *arg1 = args.read (heap); - int arg2 = args.read (heap); + QJsonArray *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QJsonArray::iterator (arg1, arg2)); } @@ -90,7 +90,7 @@ static void _call_f_operator_excl__eq__c3305 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::iterator &arg1 = args.read (heap); + const QJsonArray::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::iterator *)cls)->operator!= (arg1)); } @@ -109,7 +109,7 @@ static void _call_f_operator_excl__eq__c3951 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::const_iterator &arg1 = args.read (heap); + const QJsonArray::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::iterator *)cls)->operator!= (arg1)); } @@ -143,7 +143,7 @@ static void _call_f_operator_plus__c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray::iterator)((QJsonArray::iterator *)cls)->operator+ (arg1)); } @@ -177,7 +177,7 @@ static void _call_f_operator_plus__plus__767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray::iterator)((QJsonArray::iterator *)cls)->operator++ (arg1)); } @@ -196,7 +196,7 @@ static void _call_f_operator_plus__eq__767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray::iterator &)((QJsonArray::iterator *)cls)->operator+= (arg1)); } @@ -215,7 +215,7 @@ static void _call_f_operator_minus__c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray::iterator)((QJsonArray::iterator *)cls)->operator- (arg1)); } @@ -234,7 +234,7 @@ static void _call_f_operator_minus__c2428 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QJsonArray::iterator arg1 = args.read (heap); + QJsonArray::iterator arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QJsonArray::iterator *)cls)->operator- (arg1)); } @@ -268,7 +268,7 @@ static void _call_f_operator_minus__minus__767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray::iterator)((QJsonArray::iterator *)cls)->operator-- (arg1)); } @@ -287,7 +287,7 @@ static void _call_f_operator_minus__eq__767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray::iterator &)((QJsonArray::iterator *)cls)->operator-= (arg1)); } @@ -321,7 +321,7 @@ static void _call_f_operator_lt__c3305 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::iterator &arg1 = args.read (heap); + const QJsonArray::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::iterator *)cls)->operator< (arg1)); } @@ -340,7 +340,7 @@ static void _call_f_operator_lt__c3951 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::const_iterator &arg1 = args.read (heap); + const QJsonArray::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::iterator *)cls)->operator< (arg1)); } @@ -359,7 +359,7 @@ static void _call_f_operator_lt__eq__c3305 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::iterator &arg1 = args.read (heap); + const QJsonArray::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::iterator *)cls)->operator<= (arg1)); } @@ -378,7 +378,7 @@ static void _call_f_operator_lt__eq__c3951 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::const_iterator &arg1 = args.read (heap); + const QJsonArray::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::iterator *)cls)->operator<= (arg1)); } @@ -397,7 +397,7 @@ static void _call_f_operator_eq__eq__c3305 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::iterator &arg1 = args.read (heap); + const QJsonArray::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::iterator *)cls)->operator== (arg1)); } @@ -416,7 +416,7 @@ static void _call_f_operator_eq__eq__c3951 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::const_iterator &arg1 = args.read (heap); + const QJsonArray::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::iterator *)cls)->operator== (arg1)); } @@ -435,7 +435,7 @@ static void _call_f_operator_gt__c3305 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::iterator &arg1 = args.read (heap); + const QJsonArray::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::iterator *)cls)->operator> (arg1)); } @@ -454,7 +454,7 @@ static void _call_f_operator_gt__c3951 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::const_iterator &arg1 = args.read (heap); + const QJsonArray::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::iterator *)cls)->operator> (arg1)); } @@ -473,7 +473,7 @@ static void _call_f_operator_gt__eq__c3305 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::iterator &arg1 = args.read (heap); + const QJsonArray::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::iterator *)cls)->operator>= (arg1)); } @@ -492,7 +492,7 @@ static void _call_f_operator_gt__eq__c3951 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray::const_iterator &arg1 = args.read (heap); + const QJsonArray::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonArray::iterator *)cls)->operator>= (arg1)); } @@ -511,7 +511,7 @@ static void _call_f_operator_index__c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonValueRef)((QJsonArray::iterator *)cls)->operator[] (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonDocument.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonDocument.cc index 5e8ca7b31..3d7787891 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonDocument.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonDocument.cc @@ -68,7 +68,7 @@ static void _call_ctor_QJsonDocument_2403 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject &arg1 = args.read (heap); + const QJsonObject &arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonDocument (arg1)); } @@ -87,7 +87,7 @@ static void _call_ctor_QJsonDocument_2315 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray &arg1 = args.read (heap); + const QJsonArray &arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonDocument (arg1)); } @@ -106,7 +106,7 @@ static void _call_ctor_QJsonDocument_2635 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonDocument &arg1 = args.read (heap); + const QJsonDocument &arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonDocument (arg1)); } @@ -215,7 +215,7 @@ static void _call_f_operator_eq__2635 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonDocument &arg1 = args.read (heap); + const QJsonDocument &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonDocument &)((QJsonDocument *)cls)->operator = (arg1)); } @@ -234,7 +234,7 @@ static void _call_f_operator_excl__eq__c2635 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonDocument &arg1 = args.read (heap); + const QJsonDocument &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonDocument *)cls)->operator!= (arg1)); } @@ -253,7 +253,7 @@ static void _call_f_operator_eq__eq__c2635 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonDocument &arg1 = args.read (heap); + const QJsonDocument &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonDocument *)cls)->operator== (arg1)); } @@ -272,7 +272,7 @@ static void _call_f_rawData_c953 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); ret.write ((const char *)((QJsonDocument *)cls)->rawData (arg1)); } @@ -291,7 +291,7 @@ static void _call_f_setArray_2315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray &arg1 = args.read (heap); + const QJsonArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QJsonDocument *)cls)->setArray (arg1); } @@ -311,7 +311,7 @@ static void _call_f_setObject_2403 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject &arg1 = args.read (heap); + const QJsonObject &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QJsonDocument *)cls)->setObject (arg1); } @@ -361,7 +361,7 @@ static void _call_f_toJson_c2901 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QByteArray)((QJsonDocument *)cls)->toJson (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -397,8 +397,8 @@ static void _call_f_fromBinaryData_5488 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QJsonDocument::Validate)); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QJsonDocument::Validate), heap); ret.write ((QJsonDocument)QJsonDocument::fromBinaryData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -419,8 +419,8 @@ static void _call_f_fromJson_4343 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - QJsonParseError *arg2 = args ? args.read (heap) : (QJsonParseError *)(0); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + QJsonParseError *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QJsonDocument)QJsonDocument::fromJson (arg1, arg2)); } @@ -443,9 +443,9 @@ static void _call_f_fromRawData_5569 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QJsonDocument::Validate)); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QJsonDocument::Validate), heap); ret.write ((QJsonDocument)QJsonDocument::fromRawData (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -464,7 +464,7 @@ static void _call_f_fromVariant_2119 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonDocument)QJsonDocument::fromVariant (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject.cc index 58bf9f999..931ca1e52 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject.cc @@ -67,7 +67,7 @@ static void _call_ctor_QJsonObject_2403 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject &arg1 = args.read (heap); + const QJsonObject &arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonObject (arg1)); } @@ -146,7 +146,7 @@ static void _call_f_constFind_c2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::const_iterator)((QJsonObject *)cls)->constFind (arg1)); } @@ -165,7 +165,7 @@ static void _call_f_contains_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonObject *)cls)->contains (arg1)); } @@ -244,7 +244,7 @@ static void _call_f_erase_2516 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QJsonObject::iterator arg1 = args.read (heap); + QJsonObject::iterator arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::iterator)((QJsonObject *)cls)->erase (arg1)); } @@ -263,7 +263,7 @@ static void _call_f_find_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::iterator)((QJsonObject *)cls)->find (arg1)); } @@ -282,7 +282,7 @@ static void _call_f_find_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::const_iterator)((QJsonObject *)cls)->find (arg1)); } @@ -303,8 +303,8 @@ static void _call_f_insert_4230 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QJsonValue &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QJsonValue &arg2 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::iterator)((QJsonObject *)cls)->insert (arg1, arg2)); } @@ -368,7 +368,7 @@ static void _call_f_operator_eq__2403 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject &arg1 = args.read (heap); + const QJsonObject &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject &)((QJsonObject *)cls)->operator = (arg1)); } @@ -387,7 +387,7 @@ static void _call_f_operator_excl__eq__c2403 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject &arg1 = args.read (heap); + const QJsonObject &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonObject *)cls)->operator!= (arg1)); } @@ -406,7 +406,7 @@ static void _call_f_operator_eq__eq__c2403 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject &arg1 = args.read (heap); + const QJsonObject &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonObject *)cls)->operator== (arg1)); } @@ -425,7 +425,7 @@ static void _call_f_operator_index__c2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonValue)((QJsonObject *)cls)->operator[] (arg1)); } @@ -444,7 +444,7 @@ static void _call_f_operator_index__2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonValueRef)((QJsonObject *)cls)->operator[] (arg1)); } @@ -463,7 +463,7 @@ static void _call_f_remove_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QJsonObject *)cls)->remove (arg1); } @@ -498,7 +498,7 @@ static void _call_f_take_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonValue)((QJsonObject *)cls)->take (arg1)); } @@ -547,7 +547,7 @@ static void _call_f_value_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonValue)((QJsonObject *)cls)->value (arg1)); } @@ -566,7 +566,7 @@ static void _call_f_fromVariantHash_3610 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHash &arg1 = args.read & > (heap); + const QHash &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QJsonObject)QJsonObject::fromVariantHash (arg1)); } @@ -585,7 +585,7 @@ static void _call_f_fromVariantMap_3508 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMap &arg1 = args.read & > (heap); + const QMap &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QJsonObject)QJsonObject::fromVariantMap (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Const_iterator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Const_iterator.cc index d6605b254..210bff9da 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Const_iterator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Const_iterator.cc @@ -70,8 +70,8 @@ static void _call_ctor_QJsonObject_Const_iterator_3066 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject *arg1 = args.read (heap); - int arg2 = args.read (heap); + const QJsonObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QJsonObject::const_iterator (arg1, arg2)); } @@ -90,7 +90,7 @@ static void _call_ctor_QJsonObject_Const_iterator_3393 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject::iterator &arg1 = args.read (heap); + const QJsonObject::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonObject::const_iterator (arg1)); } @@ -124,7 +124,7 @@ static void _call_f_operator_excl__eq__c4039 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject::const_iterator &arg1 = args.read (heap); + const QJsonObject::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonObject::const_iterator *)cls)->operator!= (arg1)); } @@ -143,7 +143,7 @@ static void _call_f_operator_excl__eq__c3393 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject::iterator &arg1 = args.read (heap); + const QJsonObject::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonObject::const_iterator *)cls)->operator!= (arg1)); } @@ -177,7 +177,7 @@ static void _call_f_operator_plus__c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::const_iterator)((QJsonObject::const_iterator *)cls)->operator+ (arg1)); } @@ -211,7 +211,7 @@ static void _call_f_operator_plus__plus__767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::const_iterator)((QJsonObject::const_iterator *)cls)->operator++ (arg1)); } @@ -230,7 +230,7 @@ static void _call_f_operator_plus__eq__767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::const_iterator &)((QJsonObject::const_iterator *)cls)->operator+= (arg1)); } @@ -249,7 +249,7 @@ static void _call_f_operator_minus__c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::const_iterator)((QJsonObject::const_iterator *)cls)->operator- (arg1)); } @@ -283,7 +283,7 @@ static void _call_f_operator_minus__minus__767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::const_iterator)((QJsonObject::const_iterator *)cls)->operator-- (arg1)); } @@ -302,7 +302,7 @@ static void _call_f_operator_minus__eq__767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::const_iterator &)((QJsonObject::const_iterator *)cls)->operator-= (arg1)); } @@ -336,7 +336,7 @@ static void _call_f_operator_eq__eq__c4039 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject::const_iterator &arg1 = args.read (heap); + const QJsonObject::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonObject::const_iterator *)cls)->operator== (arg1)); } @@ -355,7 +355,7 @@ static void _call_f_operator_eq__eq__c3393 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject::iterator &arg1 = args.read (heap); + const QJsonObject::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonObject::const_iterator *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Iterator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Iterator.cc index a951206a7..a0e705ce2 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Iterator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonObject_Iterator.cc @@ -70,8 +70,8 @@ static void _call_ctor_QJsonObject_Iterator_2371 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QJsonObject *arg1 = args.read (heap); - int arg2 = args.read (heap); + QJsonObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QJsonObject::iterator (arg1, arg2)); } @@ -105,7 +105,7 @@ static void _call_f_operator_excl__eq__c3393 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject::iterator &arg1 = args.read (heap); + const QJsonObject::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonObject::iterator *)cls)->operator!= (arg1)); } @@ -124,7 +124,7 @@ static void _call_f_operator_excl__eq__c4039 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject::const_iterator &arg1 = args.read (heap); + const QJsonObject::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonObject::iterator *)cls)->operator!= (arg1)); } @@ -158,7 +158,7 @@ static void _call_f_operator_plus__c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::iterator)((QJsonObject::iterator *)cls)->operator+ (arg1)); } @@ -192,7 +192,7 @@ static void _call_f_operator_plus__plus__767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::iterator)((QJsonObject::iterator *)cls)->operator++ (arg1)); } @@ -211,7 +211,7 @@ static void _call_f_operator_plus__eq__767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::iterator &)((QJsonObject::iterator *)cls)->operator+= (arg1)); } @@ -230,7 +230,7 @@ static void _call_f_operator_minus__c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::iterator)((QJsonObject::iterator *)cls)->operator- (arg1)); } @@ -264,7 +264,7 @@ static void _call_f_operator_minus__minus__767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::iterator)((QJsonObject::iterator *)cls)->operator-- (arg1)); } @@ -283,7 +283,7 @@ static void _call_f_operator_minus__eq__767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject::iterator &)((QJsonObject::iterator *)cls)->operator-= (arg1)); } @@ -317,7 +317,7 @@ static void _call_f_operator_eq__eq__c3393 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject::iterator &arg1 = args.read (heap); + const QJsonObject::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonObject::iterator *)cls)->operator== (arg1)); } @@ -336,7 +336,7 @@ static void _call_f_operator_eq__eq__c4039 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject::const_iterator &arg1 = args.read (heap); + const QJsonObject::const_iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonObject::iterator *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValue.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValue.cc index 363d74492..0ebcfa7d3 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValue.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValue.cc @@ -52,7 +52,7 @@ static void _call_ctor_QJsonValue_1970 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QJsonValue::Null)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QJsonValue::Null), heap); ret.write (new QJsonValue (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -71,7 +71,7 @@ static void _call_ctor_QJsonValue_864 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonValue (arg1)); } @@ -90,7 +90,7 @@ static void _call_ctor_QJsonValue_1071 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonValue (arg1)); } @@ -109,7 +109,7 @@ static void _call_ctor_QJsonValue_767 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonValue (arg1)); } @@ -128,7 +128,7 @@ static void _call_ctor_QJsonValue_986 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonValue (arg1)); } @@ -147,7 +147,7 @@ static void _call_ctor_QJsonValue_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonValue (arg1)); } @@ -166,7 +166,7 @@ static void _call_ctor_QJsonValue_1731 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonValue (arg1)); } @@ -185,7 +185,7 @@ static void _call_ctor_QJsonValue_2315 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray &arg1 = args.read (heap); + const QJsonArray &arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonValue (arg1)); } @@ -204,7 +204,7 @@ static void _call_ctor_QJsonValue_2403 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject &arg1 = args.read (heap); + const QJsonObject &arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonValue (arg1)); } @@ -223,7 +223,7 @@ static void _call_ctor_QJsonValue_2313 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonValue (arg1)); } @@ -347,7 +347,7 @@ static void _call_f_operator_eq__2313 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonValue &)((QJsonValue *)cls)->operator = (arg1)); } @@ -366,7 +366,7 @@ static void _call_f_operator_excl__eq__c2313 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonValue *)cls)->operator!= (arg1)); } @@ -385,7 +385,7 @@ static void _call_f_operator_eq__eq__c2313 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonValue *)cls)->operator== (arg1)); } @@ -419,7 +419,7 @@ static void _call_f_toArray_c2315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonArray &arg1 = args.read (heap); + const QJsonArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonArray)((QJsonValue *)cls)->toArray (arg1)); } @@ -438,7 +438,7 @@ static void _call_f_toBool_c864 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((bool)((QJsonValue *)cls)->toBool (arg1)); } @@ -457,7 +457,7 @@ static void _call_f_toDouble_c1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args ? args.read (heap) : (double)(0); + double arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((double)((QJsonValue *)cls)->toDouble (arg1)); } @@ -476,7 +476,7 @@ static void _call_f_toInt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QJsonValue *)cls)->toInt (arg1)); } @@ -510,7 +510,7 @@ static void _call_f_toObject_c2403 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonObject &arg1 = args.read (heap); + const QJsonObject &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonObject)((QJsonValue *)cls)->toObject (arg1)); } @@ -529,7 +529,7 @@ static void _call_f_toString_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QString)((QJsonValue *)cls)->toString (arg1)); } @@ -578,7 +578,7 @@ static void _call_f_fromVariant_2119 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonValue)QJsonValue::fromVariant (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValuePtr.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValuePtr.cc index 873896244..f0253e9ef 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValuePtr.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValuePtr.cc @@ -51,7 +51,7 @@ static void _call_ctor_QJsonValuePtr_2313 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); ret.write (new QJsonValuePtr (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRef.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRef.cc index 73b4fb635..78c9eeeff 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRef.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRef.cc @@ -55,8 +55,8 @@ static void _call_ctor_QJsonValueRef_2283 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QJsonArray *arg1 = args.read (heap); - int arg2 = args.read (heap); + QJsonArray *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QJsonValueRef (arg1, arg2)); } @@ -77,8 +77,8 @@ static void _call_ctor_QJsonValueRef_2371 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QJsonObject *arg1 = args.read (heap); - int arg2 = args.read (heap); + QJsonObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QJsonValueRef (arg1, arg2)); } @@ -202,7 +202,7 @@ static void _call_f_operator_eq__2313 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonValueRef &)((QJsonValueRef *)cls)->operator = (arg1)); } @@ -221,7 +221,7 @@ static void _call_f_operator_eq__2598 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValueRef &arg1 = args.read (heap); + const QJsonValueRef &arg1 = gsi::arg_reader() (args, heap); ret.write ((QJsonValueRef &)((QJsonValueRef *)cls)->operator = (arg1)); } @@ -240,7 +240,7 @@ static void _call_f_operator_excl__eq__c2313 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonValueRef *)cls)->operator!= (arg1)); } @@ -259,7 +259,7 @@ static void _call_f_operator_eq__eq__c2313 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QJsonValue &arg1 = args.read (heap); + const QJsonValue &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonValueRef *)cls)->operator== (arg1)); } @@ -308,7 +308,7 @@ static void _call_f_toBool_c864 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QJsonValueRef *)cls)->toBool (arg1)); } @@ -342,7 +342,7 @@ static void _call_f_toDouble_c1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QJsonValueRef *)cls)->toDouble (arg1)); } @@ -376,7 +376,7 @@ static void _call_f_toInt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QJsonValueRef *)cls)->toInt (arg1)); } @@ -425,7 +425,7 @@ static void _call_f_toString_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QJsonValueRef *)cls)->toString (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRefPtr.cc b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRefPtr.cc index 9fb74b168..64997b77a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRefPtr.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQJsonValueRefPtr.cc @@ -55,8 +55,8 @@ static void _call_ctor_QJsonValueRefPtr_2283 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QJsonArray *arg1 = args.read (heap); - int arg2 = args.read (heap); + QJsonArray *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QJsonValueRefPtr (arg1, arg2)); } @@ -77,8 +77,8 @@ static void _call_ctor_QJsonValueRefPtr_2371 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QJsonObject *arg1 = args.read (heap); - int arg2 = args.read (heap); + QJsonObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QJsonValueRefPtr (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQLibrary.cc b/src/gsiqt/qt5/QtCore/gsiDeclQLibrary.cc index 66962cf3d..885d93c8d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQLibrary.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQLibrary.cc @@ -144,7 +144,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary *)cls)->setFileName (arg1); } @@ -166,8 +166,8 @@ static void _call_f_setFileNameAndVersion_2684 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary *)cls)->setFileNameAndVersion (arg1, arg2); } @@ -189,8 +189,8 @@ static void _call_f_setFileNameAndVersion_3942 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary *)cls)->setFileNameAndVersion (arg1, arg2); } @@ -210,7 +210,7 @@ static void _call_f_setLoadHints_2841 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLibrary *)cls)->setLoadHints (arg1); } @@ -245,7 +245,7 @@ static void _call_f_isLibrary_2025 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QLibrary::isLibrary (arg1)); } @@ -268,9 +268,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QLibrary::tr (arg1, arg2, arg3)); } @@ -293,9 +293,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QLibrary::trUtf8 (arg1, arg2, arg3)); } @@ -527,7 +527,7 @@ static void _call_ctor_QLibrary_Adaptor_1302 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLibrary_Adaptor (arg1)); } @@ -547,8 +547,8 @@ static void _call_ctor_QLibrary_Adaptor_3219 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLibrary_Adaptor (arg1, arg2)); } @@ -570,9 +570,9 @@ static void _call_ctor_QLibrary_Adaptor_3878 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args.read (heap); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLibrary_Adaptor (arg1, arg2, arg3)); } @@ -594,9 +594,9 @@ static void _call_ctor_QLibrary_Adaptor_5136 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLibrary_Adaptor (arg1, arg2, arg3)); } @@ -662,7 +662,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QLibrary_Adaptor *)cls)->emitter_QLibrary_destroyed_1302 (arg1); } @@ -753,7 +753,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLibrary_Adaptor *)cls)->fp_QLibrary_isSignalConnected_c2394 (arg1)); } @@ -771,7 +771,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLibrary_Adaptor *)cls)->fp_QLibrary_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQLibraryInfo.cc b/src/gsiqt/qt5/QtCore/gsiDeclQLibraryInfo.cc index 7b373576c..1af1f0c56 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQLibraryInfo.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQLibraryInfo.cc @@ -126,7 +126,7 @@ static void _call_f_location_3304 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QLibraryInfo::location (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -145,7 +145,7 @@ static void _call_f_platformPluginArguments_2025 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)QLibraryInfo::platformPluginArguments (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQLine.cc b/src/gsiqt/qt5/QtCore/gsiDeclQLine.cc index cec38e5ae..7bd5c3684 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQLine.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQLine.cc @@ -68,8 +68,8 @@ static void _call_ctor_QLine_3724 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); ret.write (new QLine (arg1, arg2)); } @@ -94,10 +94,10 @@ static void _call_ctor_QLine_2744 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write (new QLine (arg1, arg2, arg3, arg4)); } @@ -161,7 +161,7 @@ static void _call_f_operator_excl__eq__c1786 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLine &arg1 = args.read (heap); + const QLine &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLine *)cls)->operator!= (arg1)); } @@ -180,7 +180,7 @@ static void _call_f_operator_eq__eq__c1786 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLine &arg1 = args.read (heap); + const QLine &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLine *)cls)->operator== (arg1)); } @@ -235,10 +235,10 @@ static void _call_f_setLine_2744 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLine *)cls)->setLine (arg1, arg2, arg3, arg4); } @@ -258,7 +258,7 @@ static void _call_f_setP1_1916 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLine *)cls)->setP1 (arg1); } @@ -278,7 +278,7 @@ static void _call_f_setP2_1916 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLine *)cls)->setP2 (arg1); } @@ -300,8 +300,8 @@ static void _call_f_setPoints_3724 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLine *)cls)->setPoints (arg1, arg2); } @@ -321,7 +321,7 @@ static void _call_f_translate_1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLine *)cls)->translate (arg1); } @@ -343,8 +343,8 @@ static void _call_f_translate_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLine *)cls)->translate (arg1, arg2); } @@ -364,7 +364,7 @@ static void _call_f_translated_c1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QLine)((QLine *)cls)->translated (arg1)); } @@ -385,8 +385,8 @@ static void _call_f_translated_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QLine)((QLine *)cls)->translated (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQLineF.cc b/src/gsiqt/qt5/QtCore/gsiDeclQLineF.cc index 6426b5c9d..93a2d22d8 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQLineF.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQLineF.cc @@ -69,8 +69,8 @@ static void _call_ctor_QLineF_3864 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); ret.write (new QLineF (arg1, arg2)); } @@ -95,10 +95,10 @@ static void _call_ctor_QLineF_3960 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write (new QLineF (arg1, arg2, arg3, arg4)); } @@ -117,7 +117,7 @@ static void _call_ctor_QLineF_1786 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLine &arg1 = args.read (heap); + const QLine &arg1 = gsi::arg_reader() (args, heap); ret.write (new QLineF (arg1)); } @@ -151,7 +151,7 @@ static void _call_f_angle_c1856 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QLineF *)cls)->angle (arg1)); } @@ -170,7 +170,7 @@ static void _call_f_angleTo_c1856 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QLineF *)cls)->angleTo (arg1)); } @@ -221,8 +221,8 @@ static void _call_f_intersect_c3043 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); - QPointF *arg2 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); + QPointF *arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QLineF *)cls)->intersect (arg1, arg2))); } @@ -286,7 +286,7 @@ static void _call_f_operator_excl__eq__c1856 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineF *)cls)->operator!= (arg1)); } @@ -305,7 +305,7 @@ static void _call_f_operator_eq__eq__c1856 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineF *)cls)->operator== (arg1)); } @@ -354,7 +354,7 @@ static void _call_f_pointAt_c1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QLineF *)cls)->pointAt (arg1)); } @@ -373,7 +373,7 @@ static void _call_f_setAngle_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->setAngle (arg1); } @@ -393,7 +393,7 @@ static void _call_f_setLength_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->setLength (arg1); } @@ -419,10 +419,10 @@ static void _call_f_setLine_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->setLine (arg1, arg2, arg3, arg4); } @@ -442,7 +442,7 @@ static void _call_f_setP1_1986 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->setP1 (arg1); } @@ -462,7 +462,7 @@ static void _call_f_setP2_1986 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->setP2 (arg1); } @@ -484,8 +484,8 @@ static void _call_f_setPoints_3864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->setPoints (arg1, arg2); } @@ -520,7 +520,7 @@ static void _call_f_translate_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->translate (arg1); } @@ -542,8 +542,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineF *)cls)->translate (arg1, arg2); } @@ -563,7 +563,7 @@ static void _call_f_translated_c1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QLineF)((QLineF *)cls)->translated (arg1)); } @@ -584,8 +584,8 @@ static void _call_f_translated_c2034 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QLineF)((QLineF *)cls)->translated (arg1, arg2)); } @@ -681,8 +681,8 @@ static void _call_f_fromPolar_2034 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QLineF)QLineF::fromPolar (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQLocale.cc b/src/gsiqt/qt5/QtCore/gsiDeclQLocale.cc index 1031cefba..287152fa6 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQLocale.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQLocale.cc @@ -68,7 +68,7 @@ static void _call_ctor_QLocale_2025 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QLocale (arg1)); } @@ -89,8 +89,8 @@ static void _call_ctor_QLocale_3902 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::AnyCountry)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::AnyCountry), heap); ret.write (new QLocale (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -113,9 +113,9 @@ static void _call_ctor_QLocale_5648 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QLocale (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -134,7 +134,7 @@ static void _call_ctor_QLocale_1986 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); ret.write (new QLocale (arg1)); } @@ -198,7 +198,7 @@ static void _call_f_createSeparatedList_c2437 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->createSeparatedList (arg1)); } @@ -217,7 +217,7 @@ static void _call_f_currencySymbol_c3315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::CurrencySymbol)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::CurrencySymbol), heap); ret.write ((QString)((QLocale *)cls)->currencySymbol (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -236,7 +236,7 @@ static void _call_f_dateFormat_c2260 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->dateFormat (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -255,7 +255,7 @@ static void _call_f_dateTimeFormat_c2260 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->dateTimeFormat (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -276,8 +276,8 @@ static void _call_f_dayName_c2919 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->dayName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -388,8 +388,8 @@ static void _call_f_monthName_c2919 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->monthName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -483,7 +483,7 @@ static void _call_f_operator_excl__eq__c1986 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLocale *)cls)->operator!= (arg1)); } @@ -502,7 +502,7 @@ static void _call_f_operator_eq__1986 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); ret.write ((QLocale &)((QLocale *)cls)->operator= (arg1)); } @@ -521,7 +521,7 @@ static void _call_f_operator_eq__eq__c1986 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLocale *)cls)->operator== (arg1)); } @@ -587,8 +587,8 @@ static void _call_f_quoteString_c4635 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::StandardQuotation)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::StandardQuotation), heap); ret.write ((QString)((QLocale *)cls)->quoteString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -609,8 +609,8 @@ static void _call_f_quoteString_c4920 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::StandardQuotation)); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::StandardQuotation), heap); ret.write ((QString)((QLocale *)cls)->quoteString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -644,7 +644,7 @@ static void _call_f_setNumberOptions_3171 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocale *)cls)->setNumberOptions (arg1); } @@ -666,8 +666,8 @@ static void _call_f_standaloneDayName_c2919 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->standaloneDayName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -688,8 +688,8 @@ static void _call_f_standaloneMonthName_c2919 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->standaloneMonthName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -723,7 +723,7 @@ static void _call_f_timeFormat_c2260 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->timeFormat (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -744,8 +744,8 @@ static void _call_f_toCurrencyString_c3330 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qlonglong arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + qlonglong arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QString)((QLocale *)cls)->toCurrencyString (arg1, arg2)); } @@ -766,8 +766,8 @@ static void _call_f_toCurrencyString_c3447 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qulonglong arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + qulonglong arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QString)((QLocale *)cls)->toCurrencyString (arg1, arg2)); } @@ -788,8 +788,8 @@ static void _call_f_toCurrencyString_c3388 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - short int arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + short int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QString)((QLocale *)cls)->toCurrencyString (arg1, arg2)); } @@ -810,8 +810,8 @@ static void _call_f_toCurrencyString_c4393 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned short int arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + unsigned short int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QString)((QLocale *)cls)->toCurrencyString (arg1, arg2)); } @@ -832,8 +832,8 @@ static void _call_f_toCurrencyString_c2684 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QString)((QLocale *)cls)->toCurrencyString (arg1, arg2)); } @@ -854,8 +854,8 @@ static void _call_f_toCurrencyString_c3689 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QString)((QLocale *)cls)->toCurrencyString (arg1, arg2)); } @@ -876,8 +876,8 @@ static void _call_f_toCurrencyString_c2988 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + double arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QString)((QLocale *)cls)->toCurrencyString (arg1, arg2)); } @@ -898,8 +898,8 @@ static void _call_f_toCurrencyString_c2887 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + float arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QString)((QLocale *)cls)->toCurrencyString (arg1, arg2)); } @@ -920,8 +920,8 @@ static void _call_f_toDate_c4177 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QDate)((QLocale *)cls)->toDate (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -942,8 +942,8 @@ static void _call_f_toDate_c3942 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDate)((QLocale *)cls)->toDate (arg1, arg2)); } @@ -964,8 +964,8 @@ static void _call_f_toDateTime_c4177 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QDateTime)((QLocale *)cls)->toDateTime (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -986,8 +986,8 @@ static void _call_f_toDateTime_c3942 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QLocale *)cls)->toDateTime (arg1, arg2)); } @@ -1008,8 +1008,8 @@ static void _call_f_toDouble_c2967 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((double)((QLocale *)cls)->toDouble (arg1, arg2)); } @@ -1030,8 +1030,8 @@ static void _call_f_toDouble_c3252 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((double)((QLocale *)cls)->toDouble (arg1, arg2)); } @@ -1052,8 +1052,8 @@ static void _call_f_toFloat_c2967 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((float)((QLocale *)cls)->toFloat (arg1, arg2)); } @@ -1074,8 +1074,8 @@ static void _call_f_toFloat_c3252 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((float)((QLocale *)cls)->toFloat (arg1, arg2)); } @@ -1096,8 +1096,8 @@ static void _call_f_toInt_c2967 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QLocale *)cls)->toInt (arg1, arg2)); } @@ -1118,8 +1118,8 @@ static void _call_f_toInt_c3252 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QLocale *)cls)->toInt (arg1, arg2)); } @@ -1140,8 +1140,8 @@ static void _call_f_toLongLong_c2967 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((qlonglong)((QLocale *)cls)->toLongLong (arg1, arg2)); } @@ -1162,8 +1162,8 @@ static void _call_f_toLongLong_c3252 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((qlonglong)((QLocale *)cls)->toLongLong (arg1, arg2)); } @@ -1182,7 +1182,7 @@ static void _call_f_toLower_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toLower (arg1)); } @@ -1203,8 +1203,8 @@ static void _call_f_toShort_c2967 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((short int)((QLocale *)cls)->toShort (arg1, arg2)); } @@ -1225,8 +1225,8 @@ static void _call_f_toShort_c3252 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((short int)((QLocale *)cls)->toShort (arg1, arg2)); } @@ -1245,7 +1245,7 @@ static void _call_f_toString_c1413 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qlonglong arg1 = args.read (heap); + qlonglong arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1)); } @@ -1264,7 +1264,7 @@ static void _call_f_toString_c1530 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qulonglong arg1 = args.read (heap); + qulonglong arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1)); } @@ -1283,7 +1283,7 @@ static void _call_f_toString_c1471 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - short int arg1 = args.read (heap); + short int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1)); } @@ -1302,7 +1302,7 @@ static void _call_f_toString_c2476 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned short int arg1 = args.read (heap); + unsigned short int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1)); } @@ -1321,7 +1321,7 @@ static void _call_f_toString_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1)); } @@ -1340,7 +1340,7 @@ static void _call_f_toString_c1772 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1)); } @@ -1363,9 +1363,9 @@ static void _call_f_toString_c2472 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - char arg2 = args ? args.read (heap) : (char)('g'); - int arg3 = args ? args.read (heap) : (int)(6); + double arg1 = gsi::arg_reader() (args, heap); + char arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() ('g', heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (6, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, arg2, arg3)); } @@ -1388,9 +1388,9 @@ static void _call_f_toString_c2371 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - char arg2 = args ? args.read (heap) : (char)('g'); - int arg3 = args ? args.read (heap) : (int)(6); + float arg1 = gsi::arg_reader() (args, heap); + char arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() ('g', heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (6, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, arg2, arg3)); } @@ -1411,8 +1411,8 @@ static void _call_f_toString_c3693 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, arg2)); } @@ -1433,8 +1433,8 @@ static void _call_f_toString_c3928 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const QDate &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1455,8 +1455,8 @@ static void _call_f_toString_c3710 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, arg2)); } @@ -1477,8 +1477,8 @@ static void _call_f_toString_c3945 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const QTime &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1499,8 +1499,8 @@ static void _call_f_toString_c4327 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1521,8 +1521,8 @@ static void _call_f_toString_c4092 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toString (arg1, arg2)); } @@ -1543,8 +1543,8 @@ static void _call_f_toTime_c4177 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::LongFormat), heap); ret.write ((QTime)((QLocale *)cls)->toTime (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1565,8 +1565,8 @@ static void _call_f_toTime_c3942 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QTime)((QLocale *)cls)->toTime (arg1, arg2)); } @@ -1587,8 +1587,8 @@ static void _call_f_toUInt_c2967 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((unsigned int)((QLocale *)cls)->toUInt (arg1, arg2)); } @@ -1609,8 +1609,8 @@ static void _call_f_toUInt_c3252 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((unsigned int)((QLocale *)cls)->toUInt (arg1, arg2)); } @@ -1631,8 +1631,8 @@ static void _call_f_toULongLong_c2967 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((qulonglong)((QLocale *)cls)->toULongLong (arg1, arg2)); } @@ -1653,8 +1653,8 @@ static void _call_f_toULongLong_c3252 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((qulonglong)((QLocale *)cls)->toULongLong (arg1, arg2)); } @@ -1675,8 +1675,8 @@ static void _call_f_toUShort_c2967 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((unsigned short int)((QLocale *)cls)->toUShort (arg1, arg2)); } @@ -1697,8 +1697,8 @@ static void _call_f_toUShort_c3252 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((unsigned short int)((QLocale *)cls)->toUShort (arg1, arg2)); } @@ -1717,7 +1717,7 @@ static void _call_f_toUpper_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QLocale *)cls)->toUpper (arg1)); } @@ -1796,7 +1796,7 @@ static void _call_f_countriesForLanguage_2029 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QList)QLocale::countriesForLanguage (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1815,7 +1815,7 @@ static void _call_f_countryToString_1981 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QLocale::countryToString (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1834,7 +1834,7 @@ static void _call_f_languageToString_2029 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QLocale::languageToString (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1857,9 +1857,9 @@ static void _call_f_matchingLocales_5648 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QList)QLocale::matchingLocales (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -1878,7 +1878,7 @@ static void _call_f_scriptToString_1854 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QLocale::scriptToString (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1897,7 +1897,7 @@ static void _call_f_setDefault_1986 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QLocale::setDefault (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQLockFile.cc b/src/gsiqt/qt5/QtCore/gsiDeclQLockFile.cc index 042df988e..6cb41cf5c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQLockFile.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQLockFile.cc @@ -50,7 +50,7 @@ static void _call_ctor_QLockFile_2025 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QLockFile (arg1)); } @@ -88,9 +88,9 @@ static void _call_f_getLockInfo_c3624 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 *arg1 = args.read (heap); - QString *arg2 = args.read (heap); - QString *arg3 = args.read (heap); + qint64 *arg1 = gsi::arg_reader() (args, heap); + QString *arg2 = gsi::arg_reader() (args, heap); + QString *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLockFile *)cls)->getLockInfo (arg1, arg2, arg3)); } @@ -154,7 +154,7 @@ static void _call_f_setStaleLockTime_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLockFile *)cls)->setStaleLockTime (arg1); } @@ -189,7 +189,7 @@ static void _call_f_tryLock_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QLockFile *)cls)->tryLock (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQLoggingCategory.cc b/src/gsiqt/qt5/QtCore/gsiDeclQLoggingCategory.cc index 4e6af9fb7..9c122492f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQLoggingCategory.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQLoggingCategory.cc @@ -50,7 +50,7 @@ static void _call_ctor_QLoggingCategory_1731 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write (new QLoggingCategory (arg1)); } @@ -71,8 +71,8 @@ static void _call_ctor_QLoggingCategory_2969 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QLoggingCategory (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -136,7 +136,7 @@ static void _call_f_isEnabled_c1346 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QLoggingCategory *)cls)->isEnabled (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -217,8 +217,8 @@ static void _call_f_setEnabled_2102 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLoggingCategory *)cls)->setEnabled (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -253,7 +253,7 @@ static void _call_f_setFilterRules_2025 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QLoggingCategory::setFilterRules (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMapDataBase.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMapDataBase.cc index 63427b577..801562e3c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMapDataBase.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMapDataBase.cc @@ -72,10 +72,10 @@ static void _call_f_createNode_3832 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QMapNodeBase *arg3 = args.read (heap); - bool arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QMapNodeBase *arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); ret.write ((QMapNodeBase *)((QMapDataBase *)cls)->createNode (arg1, arg2, arg3, arg4)); } @@ -94,7 +94,7 @@ static void _call_f_freeNodeAndRebalance_1758 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMapNodeBase *arg1 = args.read (heap); + QMapNodeBase *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMapDataBase *)cls)->freeNodeAndRebalance (arg1); } @@ -116,8 +116,8 @@ static void _call_f_freeTree_2417 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMapNodeBase *arg1 = args.read (heap); - int arg2 = args.read (heap); + QMapNodeBase *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMapDataBase *)cls)->freeTree (arg1, arg2); } @@ -137,7 +137,7 @@ static void _call_f_rebalance_1758 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMapNodeBase *arg1 = args.read (heap); + QMapNodeBase *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMapDataBase *)cls)->rebalance (arg1); } @@ -173,7 +173,7 @@ static void _call_f_rotateLeft_1758 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMapNodeBase *arg1 = args.read (heap); + QMapNodeBase *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMapDataBase *)cls)->rotateLeft (arg1); } @@ -193,7 +193,7 @@ static void _call_f_rotateRight_1758 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMapNodeBase *arg1 = args.read (heap); + QMapNodeBase *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMapDataBase *)cls)->rotateRight (arg1); } @@ -228,7 +228,7 @@ static void _call_f_freeData_1746 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMapDataBase *arg1 = args.read (heap); + QMapDataBase *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QMapDataBase::freeData (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMapNodeBase.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMapNodeBase.cc index 44a3aed4d..729e4162a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMapNodeBase.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMapNodeBase.cc @@ -155,7 +155,7 @@ static void _call_f_setColor_2199 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMapNodeBase *)cls)->setColor (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -175,7 +175,7 @@ static void _call_f_setParent_1758 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMapNodeBase *arg1 = args.read (heap); + QMapNodeBase *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMapNodeBase *)cls)->setParent (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMargins.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMargins.cc index 8e75bd13e..68ec6a0c9 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMargins.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMargins.cc @@ -71,10 +71,10 @@ static void _call_ctor_QMargins_2744 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write (new QMargins (arg1, arg2, arg3, arg4)); } @@ -138,7 +138,7 @@ static void _call_f_operator_star__eq__767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMargins &)((QMargins *)cls)->operator*= (arg1)); } @@ -157,7 +157,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QMargins &)((QMargins *)cls)->operator*= (arg1)); } @@ -176,7 +176,7 @@ static void _call_f_operator_plus__eq__2115 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMargins &)((QMargins *)cls)->operator+= (arg1)); } @@ -195,7 +195,7 @@ static void _call_f_operator_plus__eq__767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMargins &)((QMargins *)cls)->operator+= (arg1)); } @@ -214,7 +214,7 @@ static void _call_f_operator_minus__eq__2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMargins &)((QMargins *)cls)->operator-= (arg1)); } @@ -233,7 +233,7 @@ static void _call_f_operator_minus__eq__767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMargins &)((QMargins *)cls)->operator-= (arg1)); } @@ -252,7 +252,7 @@ static void _call_f_operator_slash__eq__767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMargins &)((QMargins *)cls)->operator/= (arg1)); } @@ -271,7 +271,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QMargins &)((QMargins *)cls)->operator/= (arg1)); } @@ -305,7 +305,7 @@ static void _call_f_setBottom_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMargins *)cls)->setBottom (arg1); } @@ -325,7 +325,7 @@ static void _call_f_setLeft_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMargins *)cls)->setLeft (arg1); } @@ -345,7 +345,7 @@ static void _call_f_setRight_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMargins *)cls)->setRight (arg1); } @@ -365,7 +365,7 @@ static void _call_f_setTop_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMargins *)cls)->setTop (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMarginsF.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMarginsF.cc index 22d98a4a6..6b067b9fb 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMarginsF.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMarginsF.cc @@ -72,10 +72,10 @@ static void _call_ctor_QMarginsF_3960 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write (new QMarginsF (arg1, arg2, arg3, arg4)); } @@ -94,7 +94,7 @@ static void _call_ctor_QMarginsF_2115 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMarginsF (arg1)); } @@ -158,7 +158,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QMarginsF &)((QMarginsF *)cls)->operator*= (arg1)); } @@ -177,7 +177,7 @@ static void _call_f_operator_plus__eq__2185 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMarginsF &arg1 = args.read (heap); + const QMarginsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMarginsF &)((QMarginsF *)cls)->operator+= (arg1)); } @@ -196,7 +196,7 @@ static void _call_f_operator_plus__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QMarginsF &)((QMarginsF *)cls)->operator+= (arg1)); } @@ -215,7 +215,7 @@ static void _call_f_operator_minus__eq__2185 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMarginsF &arg1 = args.read (heap); + const QMarginsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMarginsF &)((QMarginsF *)cls)->operator-= (arg1)); } @@ -234,7 +234,7 @@ static void _call_f_operator_minus__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QMarginsF &)((QMarginsF *)cls)->operator-= (arg1)); } @@ -253,7 +253,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QMarginsF &)((QMarginsF *)cls)->operator/= (arg1)); } @@ -287,7 +287,7 @@ static void _call_f_setBottom_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMarginsF *)cls)->setBottom (arg1); } @@ -307,7 +307,7 @@ static void _call_f_setLeft_1071 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMarginsF *)cls)->setLeft (arg1); } @@ -327,7 +327,7 @@ static void _call_f_setRight_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMarginsF *)cls)->setRight (arg1); } @@ -347,7 +347,7 @@ static void _call_f_setTop_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMarginsF *)cls)->setTop (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMessageAuthenticationCode.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMessageAuthenticationCode.cc index 55dda76c0..c53a4717e 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMessageAuthenticationCode.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMessageAuthenticationCode.cc @@ -53,8 +53,8 @@ static void _call_ctor_QMessageAuthenticationCode_5532 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QMessageAuthenticationCode (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -75,8 +75,8 @@ static void _call_f_addData_2390 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageAuthenticationCode *)cls)->addData (arg1, arg2); } @@ -96,7 +96,7 @@ static void _call_f_addData_2309 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageAuthenticationCode *)cls)->addData (arg1); } @@ -116,7 +116,7 @@ static void _call_f_addData_1447 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMessageAuthenticationCode *)cls)->addData (arg1)); } @@ -166,7 +166,7 @@ static void _call_f_setKey_2309 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageAuthenticationCode *)cls)->setKey (arg1); } @@ -190,9 +190,9 @@ static void _call_f_hash_7733 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QByteArray)QMessageAuthenticationCode::hash (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogContext.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogContext.cc index d8a31cf1f..59eed4150 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogContext.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogContext.cc @@ -71,10 +71,10 @@ static void _call_ctor_QMessageLogContext_5636 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); - const char *arg3 = args.read (heap); - const char *arg4 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); + const char *arg4 = gsi::arg_reader() (args, heap); ret.write (new QMessageLogContext (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogger.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogger.cc index 188bc1944..e47585c6a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogger.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMessageLogger.cc @@ -72,9 +72,9 @@ static void _call_ctor_QMessageLogger_4013 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); - const char *arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); ret.write (new QMessageLogger (arg1, arg2, arg3)); } @@ -99,10 +99,10 @@ static void _call_ctor_QMessageLogger_5636 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); - const char *arg3 = args.read (heap); - const char *arg4 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); + const char *arg4 = gsi::arg_reader() (args, heap); ret.write (new QMessageLogger (arg1, arg2, arg3, arg4)); } @@ -121,7 +121,7 @@ static void _call_f_critical_c1731 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageLogger *)cls)->critical (arg1); } @@ -143,8 +143,8 @@ static void _call_f_critical_c4558 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLoggingCategory &arg1 = args.read (heap); - const char *arg2 = args.read (heap); + const QLoggingCategory &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageLogger *)cls)->critical (arg1, arg2); } @@ -179,7 +179,7 @@ static void _call_f_critical_c2935 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLoggingCategory &arg1 = args.read (heap); + const QLoggingCategory &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDebug)((QMessageLogger *)cls)->critical (arg1)); } @@ -198,7 +198,7 @@ static void _call_f_debug_c1731 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageLogger *)cls)->debug (arg1); } @@ -220,8 +220,8 @@ static void _call_f_debug_c4558 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLoggingCategory &arg1 = args.read (heap); - const char *arg2 = args.read (heap); + const QLoggingCategory &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageLogger *)cls)->debug (arg1, arg2); } @@ -256,7 +256,7 @@ static void _call_f_debug_c2935 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLoggingCategory &arg1 = args.read (heap); + const QLoggingCategory &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDebug)((QMessageLogger *)cls)->debug (arg1)); } @@ -275,7 +275,7 @@ static void _call_f_fatal_c1731 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageLogger *)cls)->fatal (arg1); } @@ -295,7 +295,7 @@ static void _call_f_info_c1731 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageLogger *)cls)->info (arg1); } @@ -317,8 +317,8 @@ static void _call_f_info_c4558 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLoggingCategory &arg1 = args.read (heap); - const char *arg2 = args.read (heap); + const QLoggingCategory &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageLogger *)cls)->info (arg1, arg2); } @@ -353,7 +353,7 @@ static void _call_f_info_c2935 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLoggingCategory &arg1 = args.read (heap); + const QLoggingCategory &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDebug)((QMessageLogger *)cls)->info (arg1)); } @@ -372,7 +372,7 @@ static void _call_f_noDebug_c1731 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageLogger *)cls)->noDebug (arg1); } @@ -407,7 +407,7 @@ static void _call_f_warning_c1731 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageLogger *)cls)->warning (arg1); } @@ -429,8 +429,8 @@ static void _call_f_warning_c4558 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLoggingCategory &arg1 = args.read (heap); - const char *arg2 = args.read (heap); + const QLoggingCategory &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageLogger *)cls)->warning (arg1, arg2); } @@ -465,7 +465,7 @@ static void _call_f_warning_c2935 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLoggingCategory &arg1 = args.read (heap); + const QLoggingCategory &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDebug)((QMessageLogger *)cls)->warning (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMetaEnum.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMetaEnum.cc index 3dc5d0f28..b4d722a81 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMetaEnum.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMetaEnum.cc @@ -111,7 +111,7 @@ static void _call_f_key_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const char *)((QMetaEnum *)cls)->key (arg1)); } @@ -147,8 +147,8 @@ static void _call_f_keyToValue_c2673 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QMetaEnum *)cls)->keyToValue (arg1, arg2)); } @@ -169,8 +169,8 @@ static void _call_f_keysToValue_c2673 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QMetaEnum *)cls)->keysToValue (arg1, arg2)); } @@ -219,7 +219,7 @@ static void _call_f_value_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaEnum *)cls)->value (arg1)); } @@ -238,7 +238,7 @@ static void _call_f_valueToKey_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const char *)((QMetaEnum *)cls)->valueToKey (arg1)); } @@ -257,7 +257,7 @@ static void _call_f_valueToKeys_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QMetaEnum *)cls)->valueToKeys (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMetaMethod.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMetaMethod.cc index 893a2082c..82e276243 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMetaMethod.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMetaMethod.cc @@ -111,7 +111,7 @@ static void _call_f_getParameterTypes_c953 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMetaMethod *)cls)->getParameterTypes (arg1); } @@ -236,7 +236,7 @@ static void _call_f_parameterType_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaMethod *)cls)->parameterType (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject.cc index 8fbca4659..8a8cf6d18 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject.cc @@ -70,7 +70,7 @@ static void _call_f_cast_c1302 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((QObject *)((QMetaObject *)cls)->cast (arg1)); } @@ -89,7 +89,7 @@ static void _call_f_cast_c1997 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); + const QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((const QObject *)((QMetaObject *)cls)->cast (arg1)); } @@ -108,7 +108,7 @@ static void _call_f_classInfo_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMetaClassInfo)((QMetaObject *)cls)->classInfo (arg1)); } @@ -172,7 +172,7 @@ static void _call_f_constructor_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMetaMethod)((QMetaObject *)cls)->constructor (arg1)); } @@ -206,7 +206,7 @@ static void _call_f_enumerator_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMetaEnum)((QMetaObject *)cls)->enumerator (arg1)); } @@ -255,7 +255,7 @@ static void _call_f_indexOfClassInfo_c1731 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaObject *)cls)->indexOfClassInfo (arg1)); } @@ -274,7 +274,7 @@ static void _call_f_indexOfConstructor_c1731 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaObject *)cls)->indexOfConstructor (arg1)); } @@ -293,7 +293,7 @@ static void _call_f_indexOfEnumerator_c1731 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaObject *)cls)->indexOfEnumerator (arg1)); } @@ -312,7 +312,7 @@ static void _call_f_indexOfMethod_c1731 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaObject *)cls)->indexOfMethod (arg1)); } @@ -331,7 +331,7 @@ static void _call_f_indexOfProperty_c1731 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaObject *)cls)->indexOfProperty (arg1)); } @@ -350,7 +350,7 @@ static void _call_f_indexOfSignal_c1731 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaObject *)cls)->indexOfSignal (arg1)); } @@ -369,7 +369,7 @@ static void _call_f_indexOfSlot_c1731 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaObject *)cls)->indexOfSlot (arg1)); } @@ -388,7 +388,7 @@ static void _call_f_method_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMetaMethod)((QMetaObject *)cls)->method (arg1)); } @@ -437,7 +437,7 @@ static void _call_f_property_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMetaProperty)((QMetaObject *)cls)->property (arg1)); } @@ -505,9 +505,9 @@ static void _call_f_tr_c4013 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)((QMetaObject *)cls)->tr (arg1, arg2, arg3)); } @@ -543,8 +543,8 @@ static void _call_f_checkConnectArgs_3354 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QMetaObject::checkConnectArgs (arg1, arg2)); } @@ -565,8 +565,8 @@ static void _call_f_checkConnectArgs_4680 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); - const QMetaMethod &arg2 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); + const QMetaMethod &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QMetaObject::checkConnectArgs (arg1, arg2)); } @@ -595,12 +595,12 @@ static void _call_f_connect_6708 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args ? args.read (heap) : (int)(0); - int *arg6 = args ? args.read (heap) : (int *)(0); + const QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QMetaObject::Connection)QMetaObject::connect (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -619,7 +619,7 @@ static void _call_f_connectSlotsByName_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QMetaObject::connectSlotsByName (arg1); } @@ -645,10 +645,10 @@ static void _call_f_disconnect_5204 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - int arg4 = args.read (heap); + const QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)QMetaObject::disconnect (arg1, arg2, arg3, arg4)); } @@ -673,10 +673,10 @@ static void _call_f_disconnectOne_5204 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - int arg4 = args.read (heap); + const QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)QMetaObject::disconnectOne (arg1, arg2, arg3, arg4)); } @@ -695,7 +695,7 @@ static void _call_f_normalizedSignature_1731 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)QMetaObject::normalizedSignature (arg1)); } @@ -714,7 +714,7 @@ static void _call_f_normalizedType_1731 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)QMetaObject::normalizedType (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject_Connection.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject_Connection.cc index 93d9605cd..640e8d5e5 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject_Connection.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMetaObject_Connection.cc @@ -65,7 +65,7 @@ static void _call_ctor_QMetaObject_Connection_3540 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaObject::Connection &arg1 = args.read (heap); + const QMetaObject::Connection &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMetaObject::Connection (arg1)); } @@ -84,7 +84,7 @@ static void _call_f_operator_eq__3540 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaObject::Connection &arg1 = args.read (heap); + const QMetaObject::Connection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMetaObject::Connection &)((QMetaObject::Connection *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMetaProperty.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMetaProperty.cc index b12d7a5ca..8b867728a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMetaProperty.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMetaProperty.cc @@ -144,7 +144,7 @@ static void _call_f_isDesignable_c1997 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args ? args.read (heap) : (const QObject *)(0); + const QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QMetaProperty *)cls)->isDesignable (arg1)); } @@ -163,7 +163,7 @@ static void _call_f_isEditable_c1997 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args ? args.read (heap) : (const QObject *)(0); + const QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QMetaProperty *)cls)->isEditable (arg1)); } @@ -257,7 +257,7 @@ static void _call_f_isScriptable_c1997 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args ? args.read (heap) : (const QObject *)(0); + const QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QMetaProperty *)cls)->isScriptable (arg1)); } @@ -276,7 +276,7 @@ static void _call_f_isStored_c1997 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args ? args.read (heap) : (const QObject *)(0); + const QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QMetaProperty *)cls)->isStored (arg1)); } @@ -295,7 +295,7 @@ static void _call_f_isUser_c1997 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args ? args.read (heap) : (const QObject *)(0); + const QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QMetaProperty *)cls)->isUser (arg1)); } @@ -404,7 +404,7 @@ static void _call_f_read_c1997 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); + const QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QMetaProperty *)cls)->read (arg1)); } @@ -423,7 +423,7 @@ static void _call_f_readOnGadget_c1751 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const void *arg1 = args.read (heap); + const void *arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QMetaProperty *)cls)->readOnGadget (arg1)); } @@ -442,7 +442,7 @@ static void _call_f_reset_c1302 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMetaProperty *)cls)->reset (arg1)); } @@ -461,7 +461,7 @@ static void _call_f_resetOnGadget_c1056 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - void *arg1 = args.read (heap); + void *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMetaProperty *)cls)->resetOnGadget (arg1)); } @@ -542,8 +542,8 @@ static void _call_f_write_c3313 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMetaProperty *)cls)->write (arg1, arg2)); } @@ -564,8 +564,8 @@ static void _call_f_writeOnGadget_c3067 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - void *arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + void *arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMetaProperty *)cls)->writeOnGadget (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMimeData.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMimeData.cc index 8f3ea0d68..2bc34fa89 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMimeData.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMimeData.cc @@ -101,7 +101,7 @@ static void _call_f_data_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QMimeData *)cls)->data (arg1)); } @@ -150,7 +150,7 @@ static void _call_f_hasFormat_c2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeData *)cls)->hasFormat (arg1)); } @@ -259,7 +259,7 @@ static void _call_f_removeFormat_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData *)cls)->removeFormat (arg1); } @@ -279,7 +279,7 @@ static void _call_f_setColorData_2119 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData *)cls)->setColorData (arg1); } @@ -301,8 +301,8 @@ static void _call_f_setData_4226 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData *)cls)->setData (arg1, arg2); } @@ -322,7 +322,7 @@ static void _call_f_setHtml_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData *)cls)->setHtml (arg1); } @@ -342,7 +342,7 @@ static void _call_f_setImageData_2119 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData *)cls)->setImageData (arg1); } @@ -362,7 +362,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData *)cls)->setText (arg1); } @@ -382,7 +382,7 @@ static void _call_f_setUrls_2316 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeData *)cls)->setUrls (arg1); } @@ -436,9 +436,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMimeData::tr (arg1, arg2, arg3)); } @@ -461,9 +461,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMimeData::trUtf8 (arg1, arg2, arg3)); } @@ -773,7 +773,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMimeData_Adaptor *)cls)->emitter_QMimeData_destroyed_1302 (arg1); } @@ -906,7 +906,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeData_Adaptor *)cls)->fp_QMimeData_isSignalConnected_c2394 (arg1)); } @@ -924,7 +924,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMimeData_Adaptor *)cls)->fp_QMimeData_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMimeDatabase.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMimeDatabase.cc index 5e5d2f621..e362c1f90 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMimeDatabase.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMimeDatabase.cc @@ -84,7 +84,7 @@ static void _call_f_mimeTypeForData_c2309 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMimeType)((QMimeDatabase *)cls)->mimeTypeForData (arg1)); } @@ -103,7 +103,7 @@ static void _call_f_mimeTypeForData_c1447 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write ((QMimeType)((QMimeDatabase *)cls)->mimeTypeForData (arg1)); } @@ -124,8 +124,8 @@ static void _call_f_mimeTypeForFile_c4613 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QMimeDatabase::MatchDefault)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QMimeDatabase::MatchDefault), heap); ret.write ((QMimeType)((QMimeDatabase *)cls)->mimeTypeForFile (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -146,8 +146,8 @@ static void _call_f_mimeTypeForFile_c4762 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QMimeDatabase::MatchDefault)); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QMimeDatabase::MatchDefault), heap); ret.write ((QMimeType)((QMimeDatabase *)cls)->mimeTypeForFile (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -168,8 +168,8 @@ static void _call_f_mimeTypeForFileNameAndData_c3364 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QIODevice *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QIODevice *arg2 = gsi::arg_reader() (args, heap); ret.write ((QMimeType)((QMimeDatabase *)cls)->mimeTypeForFileNameAndData (arg1, arg2)); } @@ -190,8 +190,8 @@ static void _call_f_mimeTypeForFileNameAndData_c4226 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write ((QMimeType)((QMimeDatabase *)cls)->mimeTypeForFileNameAndData (arg1, arg2)); } @@ -210,7 +210,7 @@ static void _call_f_mimeTypeForName_c2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMimeType)((QMimeDatabase *)cls)->mimeTypeForName (arg1)); } @@ -229,7 +229,7 @@ static void _call_f_mimeTypeForUrl_c1701 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMimeType)((QMimeDatabase *)cls)->mimeTypeForUrl (arg1)); } @@ -248,7 +248,7 @@ static void _call_f_mimeTypesForFileName_c2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QMimeDatabase *)cls)->mimeTypesForFileName (arg1)); } @@ -267,7 +267,7 @@ static void _call_f_suffixForFileName_c2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QMimeDatabase *)cls)->suffixForFileName (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMimeType.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMimeType.cc index 1b89b0f8e..dd86019a0 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMimeType.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMimeType.cc @@ -65,7 +65,7 @@ static void _call_ctor_QMimeType_2204 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeType &arg1 = args.read (heap); + const QMimeType &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMimeType (arg1)); } @@ -189,7 +189,7 @@ static void _call_f_inherits_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeType *)cls)->inherits (arg1)); } @@ -253,7 +253,7 @@ static void _call_f_operator_excl__eq__c2204 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeType &arg1 = args.read (heap); + const QMimeType &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeType *)cls)->operator!= (arg1)); } @@ -272,7 +272,7 @@ static void _call_f_operator_eq__2204 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeType &arg1 = args.read (heap); + const QMimeType &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMimeType &)((QMimeType *)cls)->operator= (arg1)); } @@ -291,7 +291,7 @@ static void _call_f_operator_eq__eq__c2204 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeType &arg1 = args.read (heap); + const QMimeType &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMimeType *)cls)->operator== (arg1)); } @@ -355,7 +355,7 @@ static void _call_f_swap_1509 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMimeType &arg1 = args.read (heap); + QMimeType &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMimeType *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQModelIndex.cc b/src/gsiqt/qt5/QtCore/gsiDeclQModelIndex.cc index 277375812..580f97b97 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQModelIndex.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQModelIndex.cc @@ -68,8 +68,8 @@ static void _call_f_child_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QModelIndex *)cls)->child (arg1, arg2)); } @@ -103,7 +103,7 @@ static void _call_f_data_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QModelIndex *)cls)->data (arg1)); } @@ -197,7 +197,7 @@ static void _call_f_operator_excl__eq__c2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QModelIndex *)cls)->operator!= (arg1)); } @@ -216,7 +216,7 @@ static void _call_f_operator_lt__c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QModelIndex *)cls)->operator< (arg1)); } @@ -235,7 +235,7 @@ static void _call_f_operator_eq__eq__c2395 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QModelIndex *)cls)->operator== (arg1)); } @@ -286,8 +286,8 @@ static void _call_f_sibling_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QModelIndex *)cls)->sibling (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQMutex.cc b/src/gsiqt/qt5/QtCore/gsiDeclQMutex.cc index a7051a84b..d748f2998 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQMutex.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQMutex.cc @@ -50,7 +50,7 @@ static void _call_ctor_QMutex_2507 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QMutex::NonRecursive)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QMutex::NonRecursive), heap); ret.write (new QMutex (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -100,7 +100,7 @@ static void _call_f_tryLock_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QMutex *)cls)->tryLock (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQNoDebug.cc b/src/gsiqt/qt5/QtCore/gsiDeclQNoDebug.cc index 7b7910e89..1b522445f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQNoDebug.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQNoDebug.cc @@ -65,7 +65,7 @@ static void _call_f_maybeQuote_1545 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char arg1 = args ? args.read (heap) : (const char)('"'); + const char arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() ('"', heap); ret.write ((QNoDebug &)((QNoDebug *)cls)->maybeQuote (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQObject.cc b/src/gsiqt/qt5/QtCore/gsiDeclQObject.cc index 3dd887ee4..3f4f1dbd0 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQObject.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQObject.cc @@ -69,7 +69,7 @@ static void _call_f_blockSignals_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject *)cls)->blockSignals (arg1)); } @@ -109,10 +109,10 @@ static void _call_f_connect_c7342 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const char *arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AutoConnection)); + const QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AutoConnection), heap); ret.write ((QMetaObject::Connection)((QObject *)cls)->connect (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -147,7 +147,7 @@ static void _call_f_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject *)cls)->destroyed (arg1); } @@ -171,9 +171,9 @@ static void _call_f_disconnect_c5243 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args ? args.read (heap) : (const char *)(0); - const QObject *arg2 = args ? args.read (heap) : (const QObject *)(0); - const char *arg3 = args ? args.read (heap) : (const char *)(0); + const char *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QObject *)cls)->disconnect (arg1, arg2, arg3)); } @@ -194,8 +194,8 @@ static void _call_f_disconnect_c3620 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QObject *)cls)->disconnect (arg1, arg2)); } @@ -261,7 +261,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject *)cls)->event (arg1)); } @@ -282,8 +282,8 @@ static void _call_f_eventFilter_2411 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject *)cls)->eventFilter (arg1, arg2)); } @@ -302,7 +302,7 @@ static void _call_f_inherits_c1731 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject *)cls)->inherits (arg1)); } @@ -321,7 +321,7 @@ static void _call_f_installEventFilter_1302 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject *)cls)->installEventFilter (arg1); } @@ -371,7 +371,7 @@ static void _call_f_killTimer_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject *)cls)->killTimer (arg1); } @@ -391,7 +391,7 @@ static void _call_f_moveToThread_1303 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QThread *arg1 = args.read (heap); + QThread *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject *)cls)->moveToThread (arg1); } @@ -441,7 +441,7 @@ static void _call_f_property_c1731 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QObject *)cls)->property (arg1)); } @@ -460,7 +460,7 @@ static void _call_f_removeEventFilter_1302 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject *)cls)->removeEventFilter (arg1); } @@ -480,7 +480,7 @@ static void _call_f_setObjectName_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject *)cls)->setObjectName (arg1); } @@ -500,7 +500,7 @@ static void _call_f_setParent_1302 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QObject *)cls)->setParent (arg1); } @@ -522,8 +522,8 @@ static void _call_f_setProperty_3742 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject *)cls)->setProperty (arg1, arg2)); } @@ -559,8 +559,8 @@ static void _call_f_startTimer_2339 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::CoarseTimer)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::CoarseTimer), heap); ret.write ((int)((QObject *)cls)->startTimer (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -602,11 +602,11 @@ static void _call_f_connect_9231 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - const char *arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AutoConnection)); + const QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + const char *arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AutoConnection), heap); ret.write ((QMetaObject::Connection)QObject::connect (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -633,11 +633,11 @@ static void _call_f_connect_10557 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - const QMetaMethod &arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - const QMetaMethod &arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AutoConnection)); + const QObject *arg1 = gsi::arg_reader() (args, heap); + const QMetaMethod &arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + const QMetaMethod &arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AutoConnection), heap); ret.write ((QMetaObject::Connection)QObject::connect (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -662,10 +662,10 @@ static void _call_f_disconnect_7132 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - const char *arg4 = args.read (heap); + const QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + const char *arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)QObject::disconnect (arg1, arg2, arg3, arg4)); } @@ -690,10 +690,10 @@ static void _call_f_disconnect_8458 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - const QMetaMethod &arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - const QMetaMethod &arg4 = args.read (heap); + const QObject *arg1 = gsi::arg_reader() (args, heap); + const QMetaMethod &arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + const QMetaMethod &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)QObject::disconnect (arg1, arg2, arg3, arg4)); } @@ -712,7 +712,7 @@ static void _call_f_disconnect_3540 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaObject::Connection &arg1 = args.read (heap); + const QMetaObject::Connection &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QObject::disconnect (arg1)); } @@ -750,9 +750,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QObject::tr (arg1, arg2, arg3)); } @@ -775,9 +775,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QObject::trUtf8 (arg1, arg2, arg3)); } @@ -989,7 +989,7 @@ static void _call_ctor_QObject_Adaptor_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QObject_Adaptor (arg1)); } @@ -1128,7 +1128,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QObject_Adaptor *)cls)->fp_QObject_isSignalConnected_c2394 (arg1)); } @@ -1146,7 +1146,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QObject_Adaptor *)cls)->fp_QObject_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc b/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc index 04b2e4f5f..7326702e0 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQParallelAnimationGroup.cc @@ -90,9 +90,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QParallelAnimationGroup::tr (arg1, arg2, arg3)); } @@ -115,9 +115,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QParallelAnimationGroup::trUtf8 (arg1, arg2, arg3)); } @@ -395,7 +395,7 @@ static void _call_ctor_QParallelAnimationGroup_Adaptor_1302 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QParallelAnimationGroup_Adaptor (arg1)); } @@ -437,7 +437,7 @@ static void _call_emitter_currentLoopChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QParallelAnimationGroup_Adaptor *)cls)->emitter_QParallelAnimationGroup_currentLoopChanged_767 (arg1); } @@ -479,7 +479,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QParallelAnimationGroup_Adaptor *)cls)->emitter_QParallelAnimationGroup_destroyed_1302 (arg1); } @@ -497,7 +497,7 @@ static void _call_emitter_directionChanged_3310 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QParallelAnimationGroup_Adaptor *)cls)->emitter_QParallelAnimationGroup_directionChanged_3310 (arg1); } @@ -621,7 +621,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QParallelAnimationGroup_Adaptor *)cls)->fp_QParallelAnimationGroup_isSignalConnected_c2394 (arg1)); } @@ -639,7 +639,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QParallelAnimationGroup_Adaptor *)cls)->fp_QParallelAnimationGroup_receivers_c1731 (arg1)); } @@ -687,8 +687,8 @@ static void _call_emitter_stateChanged_5680 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ((QParallelAnimationGroup_Adaptor *)cls)->emitter_QParallelAnimationGroup_stateChanged_5680 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc index 9e3b572aa..cf3dce626 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPauseAnimation.cc @@ -85,7 +85,7 @@ static void _call_f_setDuration_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPauseAnimation *)cls)->setDuration (arg1); } @@ -109,9 +109,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPauseAnimation::tr (arg1, arg2, arg3)); } @@ -134,9 +134,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPauseAnimation::trUtf8 (arg1, arg2, arg3)); } @@ -427,7 +427,7 @@ static void _call_ctor_QPauseAnimation_Adaptor_1302 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPauseAnimation_Adaptor (arg1)); } @@ -447,8 +447,8 @@ static void _call_ctor_QPauseAnimation_Adaptor_1961 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + int arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPauseAnimation_Adaptor (arg1, arg2)); } @@ -490,7 +490,7 @@ static void _call_emitter_currentLoopChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPauseAnimation_Adaptor *)cls)->emitter_QPauseAnimation_currentLoopChanged_767 (arg1); } @@ -532,7 +532,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPauseAnimation_Adaptor *)cls)->emitter_QPauseAnimation_destroyed_1302 (arg1); } @@ -550,7 +550,7 @@ static void _call_emitter_directionChanged_3310 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QPauseAnimation_Adaptor *)cls)->emitter_QPauseAnimation_directionChanged_3310 (arg1); } @@ -674,7 +674,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPauseAnimation_Adaptor *)cls)->fp_QPauseAnimation_isSignalConnected_c2394 (arg1)); } @@ -692,7 +692,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPauseAnimation_Adaptor *)cls)->fp_QPauseAnimation_receivers_c1731 (arg1)); } @@ -740,8 +740,8 @@ static void _call_emitter_stateChanged_5680 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ((QPauseAnimation_Adaptor *)cls)->emitter_QPauseAnimation_stateChanged_5680 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPersistentModelIndex.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPersistentModelIndex.cc index 841eb67ea..35b1b3da6 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPersistentModelIndex.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPersistentModelIndex.cc @@ -71,7 +71,7 @@ static void _call_ctor_QPersistentModelIndex_2395 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPersistentModelIndex (arg1)); } @@ -90,7 +90,7 @@ static void _call_ctor_QPersistentModelIndex_3468 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPersistentModelIndex &arg1 = args.read (heap); + const QPersistentModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPersistentModelIndex (arg1)); } @@ -111,8 +111,8 @@ static void _call_f_child_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QPersistentModelIndex *)cls)->child (arg1, arg2)); } @@ -146,7 +146,7 @@ static void _call_f_data_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QPersistentModelIndex *)cls)->data (arg1)); } @@ -240,7 +240,7 @@ static void _call_f_operator_excl__eq__c3468 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPersistentModelIndex &arg1 = args.read (heap); + const QPersistentModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPersistentModelIndex *)cls)->operator!= (arg1)); } @@ -259,7 +259,7 @@ static void _call_f_operator_excl__eq__c2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPersistentModelIndex *)cls)->operator!= (arg1)); } @@ -278,7 +278,7 @@ static void _call_f_operator_lt__c3468 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPersistentModelIndex &arg1 = args.read (heap); + const QPersistentModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPersistentModelIndex *)cls)->operator< (arg1)); } @@ -297,7 +297,7 @@ static void _call_f_operator_eq__3468 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPersistentModelIndex &arg1 = args.read (heap); + const QPersistentModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPersistentModelIndex &)((QPersistentModelIndex *)cls)->operator= (arg1)); } @@ -316,7 +316,7 @@ static void _call_f_operator_eq__2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPersistentModelIndex &)((QPersistentModelIndex *)cls)->operator= (arg1)); } @@ -335,7 +335,7 @@ static void _call_f_operator_eq__eq__c3468 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPersistentModelIndex &arg1 = args.read (heap); + const QPersistentModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPersistentModelIndex *)cls)->operator== (arg1)); } @@ -354,7 +354,7 @@ static void _call_f_operator_eq__eq__c2395 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPersistentModelIndex *)cls)->operator== (arg1)); } @@ -405,8 +405,8 @@ static void _call_f_sibling_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QPersistentModelIndex *)cls)->sibling (arg1, arg2)); } @@ -425,7 +425,7 @@ static void _call_f_swap_2773 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPersistentModelIndex &arg1 = args.read (heap); + QPersistentModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPersistentModelIndex *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPluginLoader.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPluginLoader.cc index 4dfda126c..d67fabab9 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPluginLoader.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPluginLoader.cc @@ -176,7 +176,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader *)cls)->setFileName (arg1); } @@ -196,7 +196,7 @@ static void _call_f_setLoadHints_2841 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPluginLoader *)cls)->setLoadHints (arg1); } @@ -265,9 +265,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPluginLoader::tr (arg1, arg2, arg3)); } @@ -290,9 +290,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPluginLoader::trUtf8 (arg1, arg2, arg3)); } @@ -501,7 +501,7 @@ static void _call_ctor_QPluginLoader_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPluginLoader_Adaptor (arg1)); } @@ -521,8 +521,8 @@ static void _call_ctor_QPluginLoader_Adaptor_3219 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPluginLoader_Adaptor (arg1, arg2)); } @@ -588,7 +588,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPluginLoader_Adaptor *)cls)->emitter_QPluginLoader_destroyed_1302 (arg1); } @@ -679,7 +679,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPluginLoader_Adaptor *)cls)->fp_QPluginLoader_isSignalConnected_c2394 (arg1)); } @@ -697,7 +697,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPluginLoader_Adaptor *)cls)->fp_QPluginLoader_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPoint.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPoint.cc index bc8d66296..d35212bb1 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPoint.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPoint.cc @@ -69,8 +69,8 @@ static void _call_ctor_QPoint_1426 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QPoint (arg1, arg2)); } @@ -119,7 +119,7 @@ static void _call_f_operator_star__eq__970 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint &)((QPoint *)cls)->operator*= (arg1)); } @@ -138,7 +138,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint &)((QPoint *)cls)->operator*= (arg1)); } @@ -157,7 +157,7 @@ static void _call_f_operator_star__eq__767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint &)((QPoint *)cls)->operator*= (arg1)); } @@ -176,7 +176,7 @@ static void _call_f_operator_plus__eq__1916 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint &)((QPoint *)cls)->operator+= (arg1)); } @@ -195,7 +195,7 @@ static void _call_f_operator_minus__eq__1916 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint &)((QPoint *)cls)->operator-= (arg1)); } @@ -214,7 +214,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint &)((QPoint *)cls)->operator/= (arg1)); } @@ -263,7 +263,7 @@ static void _call_f_setX_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPoint *)cls)->setX (arg1); } @@ -283,7 +283,7 @@ static void _call_f_setY_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPoint *)cls)->setY (arg1); } @@ -335,8 +335,8 @@ static void _call_f_dotProduct_3724 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)QPoint::dotProduct (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPointF.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPointF.cc index 5b683f515..2380e4407 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPointF.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPointF.cc @@ -67,7 +67,7 @@ static void _call_ctor_QPointF_1916 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPointF (arg1)); } @@ -88,8 +88,8 @@ static void _call_ctor_QPointF_2034 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write (new QPointF (arg1, arg2)); } @@ -138,7 +138,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF &)((QPointF *)cls)->operator*= (arg1)); } @@ -157,7 +157,7 @@ static void _call_f_operator_plus__eq__1986 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF &)((QPointF *)cls)->operator+= (arg1)); } @@ -176,7 +176,7 @@ static void _call_f_operator_minus__eq__1986 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF &)((QPointF *)cls)->operator-= (arg1)); } @@ -195,7 +195,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF &)((QPointF *)cls)->operator/= (arg1)); } @@ -244,7 +244,7 @@ static void _call_f_setX_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPointF *)cls)->setX (arg1); } @@ -264,7 +264,7 @@ static void _call_f_setY_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPointF *)cls)->setY (arg1); } @@ -331,8 +331,8 @@ static void _call_f_dotProduct_3864 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); ret.write ((double)QPointF::dotProduct (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQProcess.cc b/src/gsiqt/qt5/QtCore/gsiDeclQProcess.cc index 614bd05e5..4c8eca76c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQProcess.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQProcess.cc @@ -68,7 +68,7 @@ static void _call_ctor_QProcess_1302 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QProcess (arg1)); } @@ -178,7 +178,7 @@ static void _call_f_closeReadChannel_2800 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->closeReadChannel (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -320,7 +320,7 @@ static void _call_f_open_3242 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); ret.write ((bool)((QProcess *)cls)->open (arg1)); } @@ -474,7 +474,7 @@ static void _call_f_setArguments_2437 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setArguments (arg1); } @@ -494,7 +494,7 @@ static void _call_f_setEnvironment_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setEnvironment (arg1); } @@ -514,7 +514,7 @@ static void _call_f_setInputChannelMode_2982 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setInputChannelMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -534,7 +534,7 @@ static void _call_f_setProcessChannelMode_3189 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setProcessChannelMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -554,7 +554,7 @@ static void _call_f_setProcessEnvironment_3302 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QProcessEnvironment &arg1 = args.read (heap); + const QProcessEnvironment &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setProcessEnvironment (arg1); } @@ -574,7 +574,7 @@ static void _call_f_setProgram_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setProgram (arg1); } @@ -594,7 +594,7 @@ static void _call_f_setReadChannel_2800 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setReadChannel (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -614,7 +614,7 @@ static void _call_f_setReadChannelMode_3189 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setReadChannelMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -636,8 +636,8 @@ static void _call_f_setStandardErrorFile_5159 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QIODevice::Truncate); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::Truncate, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setStandardErrorFile (arg1, arg2); } @@ -657,7 +657,7 @@ static void _call_f_setStandardInputFile_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setStandardInputFile (arg1); } @@ -679,8 +679,8 @@ static void _call_f_setStandardOutputFile_5159 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QIODevice::Truncate); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::Truncate, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setStandardOutputFile (arg1, arg2); } @@ -700,7 +700,7 @@ static void _call_f_setStandardOutputProcess_1438 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QProcess *arg1 = args.read (heap); + QProcess *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setStandardOutputProcess (arg1); } @@ -720,7 +720,7 @@ static void _call_f_setWorkingDirectory_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->setWorkingDirectory (arg1); } @@ -744,9 +744,9 @@ static void _call_f_start_7488 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->start (arg1, arg2, arg3); } @@ -768,8 +768,8 @@ static void _call_f_start_5159 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->start (arg1, arg2); } @@ -789,7 +789,7 @@ static void _call_f_start_3242 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcess *)cls)->start (arg1); } @@ -840,7 +840,7 @@ static void _call_f_waitForBytesWritten_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QProcess *)cls)->waitForBytesWritten (arg1)); } @@ -859,7 +859,7 @@ static void _call_f_waitForFinished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QProcess *)cls)->waitForFinished (arg1)); } @@ -878,7 +878,7 @@ static void _call_f_waitForReadyRead_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QProcess *)cls)->waitForReadyRead (arg1)); } @@ -897,7 +897,7 @@ static void _call_f_waitForStarted_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QProcess *)cls)->waitForStarted (arg1)); } @@ -933,8 +933,8 @@ static void _call_f_execute_4354 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)QProcess::execute (arg1, arg2)); } @@ -953,7 +953,7 @@ static void _call_f_execute_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)QProcess::execute (arg1)); } @@ -993,10 +993,10 @@ static void _call_f_startDetached_7335 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - qint64 *arg4 = args ? args.read (heap) : (qint64 *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + qint64 *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)QProcess::startDetached (arg1, arg2, arg3, arg4)); } @@ -1017,8 +1017,8 @@ static void _call_f_startDetached_4354 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QProcess::startDetached (arg1, arg2)); } @@ -1037,7 +1037,7 @@ static void _call_f_startDetached_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QProcess::startDetached (arg1)); } @@ -1075,9 +1075,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QProcess::tr (arg1, arg2, arg3)); } @@ -1100,9 +1100,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QProcess::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQProcessEnvironment.cc b/src/gsiqt/qt5/QtCore/gsiDeclQProcessEnvironment.cc index 75546e703..0b2123a15 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQProcessEnvironment.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQProcessEnvironment.cc @@ -65,7 +65,7 @@ static void _call_ctor_QProcessEnvironment_3302 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QProcessEnvironment &arg1 = args.read (heap); + const QProcessEnvironment &arg1 = gsi::arg_reader() (args, heap); ret.write (new QProcessEnvironment (arg1)); } @@ -100,7 +100,7 @@ static void _call_f_contains_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProcessEnvironment *)cls)->contains (arg1)); } @@ -121,8 +121,8 @@ static void _call_f_insert_3942 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcessEnvironment *)cls)->insert (arg1, arg2); } @@ -142,7 +142,7 @@ static void _call_f_insert_3302 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QProcessEnvironment &arg1 = args.read (heap); + const QProcessEnvironment &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcessEnvironment *)cls)->insert (arg1); } @@ -192,7 +192,7 @@ static void _call_f_operator_excl__eq__c3302 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QProcessEnvironment &arg1 = args.read (heap); + const QProcessEnvironment &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProcessEnvironment *)cls)->operator!= (arg1)); } @@ -211,7 +211,7 @@ static void _call_f_operator_eq__3302 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QProcessEnvironment &arg1 = args.read (heap); + const QProcessEnvironment &arg1 = gsi::arg_reader() (args, heap); ret.write ((QProcessEnvironment &)((QProcessEnvironment *)cls)->operator= (arg1)); } @@ -230,7 +230,7 @@ static void _call_f_operator_eq__eq__c3302 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QProcessEnvironment &arg1 = args.read (heap); + const QProcessEnvironment &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProcessEnvironment *)cls)->operator== (arg1)); } @@ -249,7 +249,7 @@ static void _call_f_remove_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcessEnvironment *)cls)->remove (arg1); } @@ -269,7 +269,7 @@ static void _call_f_swap_2607 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QProcessEnvironment &arg1 = args.read (heap); + QProcessEnvironment &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProcessEnvironment *)cls)->swap (arg1); } @@ -306,8 +306,8 @@ static void _call_f_value_c3942 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QString)((QProcessEnvironment *)cls)->value (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQPropertyAnimation.cc b/src/gsiqt/qt5/QtCore/gsiDeclQPropertyAnimation.cc index 2816a6ba0..1649bcee3 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQPropertyAnimation.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQPropertyAnimation.cc @@ -86,7 +86,7 @@ static void _call_f_setPropertyName_2309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation *)cls)->setPropertyName (arg1); } @@ -106,7 +106,7 @@ static void _call_f_setTargetObject_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPropertyAnimation *)cls)->setTargetObject (arg1); } @@ -145,9 +145,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPropertyAnimation::tr (arg1, arg2, arg3)); } @@ -170,9 +170,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPropertyAnimation::trUtf8 (arg1, arg2, arg3)); } @@ -504,7 +504,7 @@ static void _call_ctor_QPropertyAnimation_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPropertyAnimation_Adaptor (arg1)); } @@ -526,9 +526,9 @@ static void _call_ctor_QPropertyAnimation_Adaptor_4697 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPropertyAnimation_Adaptor (arg1, arg2, arg3)); } @@ -570,7 +570,7 @@ static void _call_emitter_currentLoopChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPropertyAnimation_Adaptor *)cls)->emitter_QPropertyAnimation_currentLoopChanged_767 (arg1); } @@ -612,7 +612,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPropertyAnimation_Adaptor *)cls)->emitter_QPropertyAnimation_destroyed_1302 (arg1); } @@ -630,7 +630,7 @@ static void _call_emitter_directionChanged_3310 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QPropertyAnimation_Adaptor *)cls)->emitter_QPropertyAnimation_directionChanged_3310 (arg1); } @@ -783,7 +783,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPropertyAnimation_Adaptor *)cls)->fp_QPropertyAnimation_isSignalConnected_c2394 (arg1)); } @@ -801,7 +801,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPropertyAnimation_Adaptor *)cls)->fp_QPropertyAnimation_receivers_c1731 (arg1)); } @@ -849,8 +849,8 @@ static void _call_emitter_stateChanged_5680 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ((QPropertyAnimation_Adaptor *)cls)->emitter_QPropertyAnimation_stateChanged_5680 (arg1, arg2); } @@ -991,7 +991,7 @@ static void _call_emitter_valueChanged_2119 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ((QPropertyAnimation_Adaptor *)cls)->emitter_QPropertyAnimation_valueChanged_2119 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQReadLocker.cc b/src/gsiqt/qt5/QtCore/gsiDeclQReadLocker.cc index ab9873e02..f3e42891b 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQReadLocker.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQReadLocker.cc @@ -51,7 +51,7 @@ static void _call_ctor_QReadLocker_1999 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QReadWriteLock *arg1 = args.read (heap); + QReadWriteLock *arg1 = gsi::arg_reader() (args, heap); ret.write (new QReadLocker (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQReadWriteLock.cc b/src/gsiqt/qt5/QtCore/gsiDeclQReadWriteLock.cc index 9bdba3b2b..c7b20116a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQReadWriteLock.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQReadWriteLock.cc @@ -50,7 +50,7 @@ static void _call_ctor_QReadWriteLock_3272 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QReadWriteLock::NonRecursive)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QReadWriteLock::NonRecursive), heap); ret.write (new QReadWriteLock (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -116,7 +116,7 @@ static void _call_f_tryLockForRead_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QReadWriteLock *)cls)->tryLockForRead (arg1)); } @@ -150,7 +150,7 @@ static void _call_f_tryLockForWrite_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QReadWriteLock *)cls)->tryLockForWrite (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQRect.cc b/src/gsiqt/qt5/QtCore/gsiDeclQRect.cc index 5e25dd7b8..e10860609 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQRect.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQRect.cc @@ -70,8 +70,8 @@ static void _call_ctor_QRect_3724 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); ret.write (new QRect (arg1, arg2)); } @@ -92,8 +92,8 @@ static void _call_ctor_QRect_3613 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); ret.write (new QRect (arg1, arg2)); } @@ -118,10 +118,10 @@ static void _call_ctor_QRect_2744 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write (new QRect (arg1, arg2, arg3, arg4)); } @@ -146,10 +146,10 @@ static void _call_f_adjust_2744 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->adjust (arg1, arg2, arg3, arg4); } @@ -175,10 +175,10 @@ static void _call_f_adjusted_c2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->adjusted (arg1, arg2, arg3, arg4)); } @@ -259,8 +259,8 @@ static void _call_f_contains_c2548 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QRect &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((bool)((QRect *)cls)->contains (arg1, arg2)); } @@ -281,8 +281,8 @@ static void _call_f_contains_c2672 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((bool)((QRect *)cls)->contains (arg1, arg2)); } @@ -303,8 +303,8 @@ static void _call_f_contains_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRect *)cls)->contains (arg1, arg2)); } @@ -327,9 +327,9 @@ static void _call_f_contains_c2182 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - bool arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + bool arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRect *)cls)->contains (arg1, arg2, arg3)); } @@ -354,10 +354,10 @@ static void _call_f_getCoords_c3488 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->getCoords (arg1, arg2, arg3, arg4); } @@ -383,10 +383,10 @@ static void _call_f_getRect_c3488 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->getRect (arg1, arg2, arg3, arg4); } @@ -421,7 +421,7 @@ static void _call_f_intersected_c1792 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->intersected (arg1)); } @@ -440,7 +440,7 @@ static void _call_f_intersects_c1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRect *)cls)->intersects (arg1)); } @@ -519,7 +519,7 @@ static void _call_f_marginsAdded_c2115 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->marginsAdded (arg1)); } @@ -538,7 +538,7 @@ static void _call_f_marginsRemoved_c2115 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->marginsRemoved (arg1)); } @@ -557,7 +557,7 @@ static void _call_f_moveBottom_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveBottom (arg1); } @@ -577,7 +577,7 @@ static void _call_f_moveBottomLeft_1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveBottomLeft (arg1); } @@ -597,7 +597,7 @@ static void _call_f_moveBottomRight_1916 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveBottomRight (arg1); } @@ -617,7 +617,7 @@ static void _call_f_moveCenter_1916 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveCenter (arg1); } @@ -637,7 +637,7 @@ static void _call_f_moveLeft_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveLeft (arg1); } @@ -657,7 +657,7 @@ static void _call_f_moveRight_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveRight (arg1); } @@ -679,8 +679,8 @@ static void _call_f_moveTo_1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveTo (arg1, arg2); } @@ -700,7 +700,7 @@ static void _call_f_moveTo_1916 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveTo (arg1); } @@ -720,7 +720,7 @@ static void _call_f_moveTop_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveTop (arg1); } @@ -740,7 +740,7 @@ static void _call_f_moveTopLeft_1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveTopLeft (arg1); } @@ -760,7 +760,7 @@ static void _call_f_moveTopRight_1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->moveTopRight (arg1); } @@ -795,7 +795,7 @@ static void _call_f_operator_amp__c1792 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->operator& (arg1)); } @@ -814,7 +814,7 @@ static void _call_f_operator_amp__eq__1792 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect &)((QRect *)cls)->operator&= (arg1)); } @@ -833,7 +833,7 @@ static void _call_f_operator_plus__eq__2115 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect &)((QRect *)cls)->operator+= (arg1)); } @@ -852,7 +852,7 @@ static void _call_f_operator_minus__eq__2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect &)((QRect *)cls)->operator-= (arg1)); } @@ -871,7 +871,7 @@ static void _call_f_operator_pipe__c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->operator| (arg1)); } @@ -890,7 +890,7 @@ static void _call_f_operator_pipe__eq__1792 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect &)((QRect *)cls)->operator|= (arg1)); } @@ -924,7 +924,7 @@ static void _call_f_setBottom_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setBottom (arg1); } @@ -944,7 +944,7 @@ static void _call_f_setBottomLeft_1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setBottomLeft (arg1); } @@ -964,7 +964,7 @@ static void _call_f_setBottomRight_1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setBottomRight (arg1); } @@ -990,10 +990,10 @@ static void _call_f_setCoords_2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setCoords (arg1, arg2, arg3, arg4); } @@ -1013,7 +1013,7 @@ static void _call_f_setHeight_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setHeight (arg1); } @@ -1033,7 +1033,7 @@ static void _call_f_setLeft_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setLeft (arg1); } @@ -1059,10 +1059,10 @@ static void _call_f_setRect_2744 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setRect (arg1, arg2, arg3, arg4); } @@ -1082,7 +1082,7 @@ static void _call_f_setRight_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setRight (arg1); } @@ -1102,7 +1102,7 @@ static void _call_f_setSize_1805 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setSize (arg1); } @@ -1122,7 +1122,7 @@ static void _call_f_setTop_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setTop (arg1); } @@ -1142,7 +1142,7 @@ static void _call_f_setTopLeft_1916 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setTopLeft (arg1); } @@ -1162,7 +1162,7 @@ static void _call_f_setTopRight_1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setTopRight (arg1); } @@ -1182,7 +1182,7 @@ static void _call_f_setWidth_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setWidth (arg1); } @@ -1202,7 +1202,7 @@ static void _call_f_setX_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setX (arg1); } @@ -1222,7 +1222,7 @@ static void _call_f_setY_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->setY (arg1); } @@ -1304,8 +1304,8 @@ static void _call_f_translate_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->translate (arg1, arg2); } @@ -1325,7 +1325,7 @@ static void _call_f_translate_1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRect *)cls)->translate (arg1); } @@ -1347,8 +1347,8 @@ static void _call_f_translated_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->translated (arg1, arg2)); } @@ -1367,7 +1367,7 @@ static void _call_f_translated_c1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->translated (arg1)); } @@ -1386,7 +1386,7 @@ static void _call_f_united_c1792 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QRect *)cls)->united (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQRectF.cc b/src/gsiqt/qt5/QtCore/gsiDeclQRectF.cc index b4ab787d2..4a567940e 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQRectF.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQRectF.cc @@ -71,8 +71,8 @@ static void _call_ctor_QRectF_3753 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QSizeF &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QSizeF &arg2 = gsi::arg_reader() (args, heap); ret.write (new QRectF (arg1, arg2)); } @@ -93,8 +93,8 @@ static void _call_ctor_QRectF_3864 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); ret.write (new QRectF (arg1, arg2)); } @@ -119,10 +119,10 @@ static void _call_ctor_QRectF_3960 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write (new QRectF (arg1, arg2, arg3, arg4)); } @@ -141,7 +141,7 @@ static void _call_ctor_QRectF_1792 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write (new QRectF (arg1)); } @@ -166,10 +166,10 @@ static void _call_f_adjust_3960 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->adjust (arg1, arg2, arg3, arg4); } @@ -195,10 +195,10 @@ static void _call_f_adjusted_c3960 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->adjusted (arg1, arg2, arg3, arg4)); } @@ -277,7 +277,7 @@ static void _call_f_contains_c1862 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRectF *)cls)->contains (arg1)); } @@ -296,7 +296,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRectF *)cls)->contains (arg1)); } @@ -317,8 +317,8 @@ static void _call_f_contains_c2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRectF *)cls)->contains (arg1, arg2)); } @@ -343,10 +343,10 @@ static void _call_f_getCoords_c4704 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->getCoords (arg1, arg2, arg3, arg4); } @@ -372,10 +372,10 @@ static void _call_f_getRect_c4704 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->getRect (arg1, arg2, arg3, arg4); } @@ -410,7 +410,7 @@ static void _call_f_intersected_c1862 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->intersected (arg1)); } @@ -429,7 +429,7 @@ static void _call_f_intersects_c1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRectF *)cls)->intersects (arg1)); } @@ -508,7 +508,7 @@ static void _call_f_marginsAdded_c2185 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMarginsF &arg1 = args.read (heap); + const QMarginsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->marginsAdded (arg1)); } @@ -527,7 +527,7 @@ static void _call_f_marginsRemoved_c2185 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMarginsF &arg1 = args.read (heap); + const QMarginsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->marginsRemoved (arg1)); } @@ -546,7 +546,7 @@ static void _call_f_moveBottom_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveBottom (arg1); } @@ -566,7 +566,7 @@ static void _call_f_moveBottomLeft_1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveBottomLeft (arg1); } @@ -586,7 +586,7 @@ static void _call_f_moveBottomRight_1986 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveBottomRight (arg1); } @@ -606,7 +606,7 @@ static void _call_f_moveCenter_1986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveCenter (arg1); } @@ -626,7 +626,7 @@ static void _call_f_moveLeft_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveLeft (arg1); } @@ -646,7 +646,7 @@ static void _call_f_moveRight_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveRight (arg1); } @@ -668,8 +668,8 @@ static void _call_f_moveTo_2034 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveTo (arg1, arg2); } @@ -689,7 +689,7 @@ static void _call_f_moveTo_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveTo (arg1); } @@ -709,7 +709,7 @@ static void _call_f_moveTop_1071 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveTop (arg1); } @@ -729,7 +729,7 @@ static void _call_f_moveTopLeft_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveTopLeft (arg1); } @@ -749,7 +749,7 @@ static void _call_f_moveTopRight_1986 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->moveTopRight (arg1); } @@ -784,7 +784,7 @@ static void _call_f_operator_amp__c1862 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->operator& (arg1)); } @@ -803,7 +803,7 @@ static void _call_f_operator_amp__eq__1862 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF &)((QRectF *)cls)->operator&= (arg1)); } @@ -822,7 +822,7 @@ static void _call_f_operator_plus__eq__2185 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMarginsF &arg1 = args.read (heap); + const QMarginsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF &)((QRectF *)cls)->operator+= (arg1)); } @@ -841,7 +841,7 @@ static void _call_f_operator_minus__eq__2185 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMarginsF &arg1 = args.read (heap); + const QMarginsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF &)((QRectF *)cls)->operator-= (arg1)); } @@ -860,7 +860,7 @@ static void _call_f_operator_pipe__c1862 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->operator| (arg1)); } @@ -879,7 +879,7 @@ static void _call_f_operator_pipe__eq__1862 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF &)((QRectF *)cls)->operator|= (arg1)); } @@ -913,7 +913,7 @@ static void _call_f_setBottom_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setBottom (arg1); } @@ -933,7 +933,7 @@ static void _call_f_setBottomLeft_1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setBottomLeft (arg1); } @@ -953,7 +953,7 @@ static void _call_f_setBottomRight_1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setBottomRight (arg1); } @@ -979,10 +979,10 @@ static void _call_f_setCoords_3960 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setCoords (arg1, arg2, arg3, arg4); } @@ -1002,7 +1002,7 @@ static void _call_f_setHeight_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setHeight (arg1); } @@ -1022,7 +1022,7 @@ static void _call_f_setLeft_1071 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setLeft (arg1); } @@ -1048,10 +1048,10 @@ static void _call_f_setRect_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setRect (arg1, arg2, arg3, arg4); } @@ -1071,7 +1071,7 @@ static void _call_f_setRight_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setRight (arg1); } @@ -1091,7 +1091,7 @@ static void _call_f_setSize_1875 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setSize (arg1); } @@ -1111,7 +1111,7 @@ static void _call_f_setTop_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setTop (arg1); } @@ -1131,7 +1131,7 @@ static void _call_f_setTopLeft_1986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setTopLeft (arg1); } @@ -1151,7 +1151,7 @@ static void _call_f_setTopRight_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setTopRight (arg1); } @@ -1171,7 +1171,7 @@ static void _call_f_setWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setWidth (arg1); } @@ -1191,7 +1191,7 @@ static void _call_f_setX_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setX (arg1); } @@ -1211,7 +1211,7 @@ static void _call_f_setY_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->setY (arg1); } @@ -1323,8 +1323,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->translate (arg1, arg2); } @@ -1344,7 +1344,7 @@ static void _call_f_translate_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRectF *)cls)->translate (arg1); } @@ -1366,8 +1366,8 @@ static void _call_f_translated_c2034 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->translated (arg1, arg2)); } @@ -1386,7 +1386,7 @@ static void _call_f_translated_c1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->translated (arg1)); } @@ -1405,7 +1405,7 @@ static void _call_f_united_c1862 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRectF *)cls)->united (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQRegExp.cc b/src/gsiqt/qt5/QtCore/gsiDeclQRegExp.cc index 74a97b3e5..7555409ee 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQRegExp.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQRegExp.cc @@ -69,9 +69,9 @@ static void _call_ctor_QRegExp_6734 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::CaseSensitive)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegExp::RegExp)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::CaseSensitive), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegExp::RegExp), heap); ret.write (new QRegExp (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -90,7 +90,7 @@ static void _call_ctor_QRegExp_1981 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); ret.write (new QRegExp (arg1)); } @@ -109,7 +109,7 @@ static void _call_f_cap_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QRegExp *)cls)->cap (arg1)); } @@ -128,7 +128,7 @@ static void _call_f_cap_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QRegExp *)cls)->cap (arg1)); } @@ -237,7 +237,7 @@ static void _call_f_exactMatch_c2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegExp *)cls)->exactMatch (arg1)); } @@ -260,9 +260,9 @@ static void _call_f_indexIn_c4680 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegExp::CaretAtZero)); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegExp::CaretAtZero), heap); ret.write ((int)((QRegExp *)cls)->indexIn (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -330,9 +330,9 @@ static void _call_f_lastIndexIn_c4680 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(-1); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegExp::CaretAtZero)); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegExp::CaretAtZero), heap); ret.write ((int)((QRegExp *)cls)->lastIndexIn (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -366,7 +366,7 @@ static void _call_f_operator_excl__eq__c1981 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegExp *)cls)->operator!= (arg1)); } @@ -385,7 +385,7 @@ static void _call_f_operator_eq__1981 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegExp &)((QRegExp *)cls)->operator= (arg1)); } @@ -404,7 +404,7 @@ static void _call_f_operator_eq__eq__c1981 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegExp *)cls)->operator== (arg1)); } @@ -453,7 +453,7 @@ static void _call_f_pos_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QRegExp *)cls)->pos (arg1)); } @@ -472,7 +472,7 @@ static void _call_f_pos_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QRegExp *)cls)->pos (arg1)); } @@ -491,7 +491,7 @@ static void _call_f_setCaseSensitivity_2324 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExp *)cls)->setCaseSensitivity (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -511,7 +511,7 @@ static void _call_f_setMinimal_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExp *)cls)->setMinimal (arg1); } @@ -531,7 +531,7 @@ static void _call_f_setPattern_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExp *)cls)->setPattern (arg1); } @@ -551,7 +551,7 @@ static void _call_f_setPatternSyntax_2601 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExp *)cls)->setPatternSyntax (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -571,7 +571,7 @@ static void _call_f_swap_1286 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QRegExp &arg1 = args.read (heap); + QRegExp &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExp *)cls)->swap (arg1); } @@ -591,7 +591,7 @@ static void _call_f_escape_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QRegExp::escape (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpression.cc b/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpression.cc index c65cc4ac2..40431e461 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpression.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpression.cc @@ -69,8 +69,8 @@ static void _call_ctor_QRegularExpression_6407 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QRegularExpression::NoPatternOption); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QRegularExpression::NoPatternOption, heap); ret.write (new QRegularExpression (arg1, arg2)); } @@ -89,7 +89,7 @@ static void _call_ctor_QRegularExpression_3188 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegularExpression &arg1 = args.read (heap); + const QRegularExpression &arg1 = gsi::arg_reader() (args, heap); ret.write (new QRegularExpression (arg1)); } @@ -144,10 +144,10 @@ static void _call_f_globalMatch_c10055 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegularExpression::NormalMatch)); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QRegularExpression::NoMatchOption); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegularExpression::NormalMatch), heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QRegularExpression::NoMatchOption, heap); ret.write ((QRegularExpressionMatchIterator)((QRegularExpression *)cls)->globalMatch (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -172,10 +172,10 @@ static void _call_f_globalMatch_c10340 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegularExpression::NormalMatch)); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QRegularExpression::NoMatchOption); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegularExpression::NormalMatch), heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QRegularExpression::NoMatchOption, heap); ret.write ((QRegularExpressionMatchIterator)((QRegularExpression *)cls)->globalMatch (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -215,10 +215,10 @@ static void _call_f_match_c10055 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegularExpression::NormalMatch)); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QRegularExpression::NoMatchOption); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegularExpression::NormalMatch), heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QRegularExpression::NoMatchOption, heap); ret.write ((QRegularExpressionMatch)((QRegularExpression *)cls)->match (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -243,10 +243,10 @@ static void _call_f_match_c10340 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegularExpression::NormalMatch)); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QRegularExpression::NoMatchOption); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegularExpression::NormalMatch), heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QRegularExpression::NoMatchOption, heap); ret.write ((QRegularExpressionMatch)((QRegularExpression *)cls)->match (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -280,7 +280,7 @@ static void _call_f_operator_excl__eq__c3188 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegularExpression &arg1 = args.read (heap); + const QRegularExpression &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegularExpression *)cls)->operator!= (arg1)); } @@ -299,7 +299,7 @@ static void _call_f_operator_eq__3188 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegularExpression &arg1 = args.read (heap); + const QRegularExpression &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegularExpression &)((QRegularExpression *)cls)->operator= (arg1)); } @@ -318,7 +318,7 @@ static void _call_f_operator_eq__eq__c3188 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegularExpression &arg1 = args.read (heap); + const QRegularExpression &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegularExpression *)cls)->operator== (arg1)); } @@ -398,7 +398,7 @@ static void _call_f_setPattern_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpression *)cls)->setPattern (arg1); } @@ -418,7 +418,7 @@ static void _call_f_setPatternOptions_4490 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpression *)cls)->setPatternOptions (arg1); } @@ -438,7 +438,7 @@ static void _call_f_swap_2493 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QRegularExpression &arg1 = args.read (heap); + QRegularExpression &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpression *)cls)->swap (arg1); } @@ -458,7 +458,7 @@ static void _call_f_escape_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QRegularExpression::escape (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatch.cc b/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatch.cc index 4b8904c79..d0b6dc23f 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatch.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatch.cc @@ -66,7 +66,7 @@ static void _call_ctor_QRegularExpressionMatch_3681 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegularExpressionMatch &arg1 = args.read (heap); + const QRegularExpressionMatch &arg1 = gsi::arg_reader() (args, heap); ret.write (new QRegularExpressionMatch (arg1)); } @@ -85,7 +85,7 @@ static void _call_f_captured_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QRegularExpressionMatch *)cls)->captured (arg1)); } @@ -104,7 +104,7 @@ static void _call_f_captured_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QRegularExpressionMatch *)cls)->captured (arg1)); } @@ -123,7 +123,7 @@ static void _call_f_capturedEnd_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QRegularExpressionMatch *)cls)->capturedEnd (arg1)); } @@ -142,7 +142,7 @@ static void _call_f_capturedEnd_c2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRegularExpressionMatch *)cls)->capturedEnd (arg1)); } @@ -161,7 +161,7 @@ static void _call_f_capturedLength_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QRegularExpressionMatch *)cls)->capturedLength (arg1)); } @@ -180,7 +180,7 @@ static void _call_f_capturedLength_c2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRegularExpressionMatch *)cls)->capturedLength (arg1)); } @@ -199,7 +199,7 @@ static void _call_f_capturedRef_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QStringRef)((QRegularExpressionMatch *)cls)->capturedRef (arg1)); } @@ -218,7 +218,7 @@ static void _call_f_capturedRef_c2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringRef)((QRegularExpressionMatch *)cls)->capturedRef (arg1)); } @@ -237,7 +237,7 @@ static void _call_f_capturedStart_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QRegularExpressionMatch *)cls)->capturedStart (arg1)); } @@ -256,7 +256,7 @@ static void _call_f_capturedStart_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRegularExpressionMatch *)cls)->capturedStart (arg1)); } @@ -380,7 +380,7 @@ static void _call_f_operator_eq__3681 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegularExpressionMatch &arg1 = args.read (heap); + const QRegularExpressionMatch &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegularExpressionMatch &)((QRegularExpressionMatch *)cls)->operator= (arg1)); } @@ -414,7 +414,7 @@ static void _call_f_swap_2986 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QRegularExpressionMatch &arg1 = args.read (heap); + QRegularExpressionMatch &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpressionMatch *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatchIterator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatchIterator.cc index 8d3c1847b..c701c6911 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatchIterator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQRegularExpressionMatchIterator.cc @@ -67,7 +67,7 @@ static void _call_ctor_QRegularExpressionMatchIterator_4523 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegularExpressionMatchIterator &arg1 = args.read (heap); + const QRegularExpressionMatchIterator &arg1 = gsi::arg_reader() (args, heap); ret.write (new QRegularExpressionMatchIterator (arg1)); } @@ -161,7 +161,7 @@ static void _call_f_operator_eq__4523 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegularExpressionMatchIterator &arg1 = args.read (heap); + const QRegularExpressionMatchIterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegularExpressionMatchIterator &)((QRegularExpressionMatchIterator *)cls)->operator= (arg1)); } @@ -210,7 +210,7 @@ static void _call_f_swap_3828 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QRegularExpressionMatchIterator &arg1 = args.read (heap); + QRegularExpressionMatchIterator &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpressionMatchIterator *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQResource.cc b/src/gsiqt/qt5/QtCore/gsiDeclQResource.cc index 0b155ee8d..8ed468a69 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQResource.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQResource.cc @@ -53,8 +53,8 @@ static void _call_ctor_QResource_3903 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); - const QLocale &arg2 = args ? args.read (heap) : (const QLocale &)(QLocale()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QLocale &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QLocale(), heap); ret.write (new QResource (arg1, arg2)); } @@ -163,7 +163,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QResource *)cls)->setFileName (arg1); } @@ -183,7 +183,7 @@ static void _call_f_setLocale_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QResource *)cls)->setLocale (arg1); } @@ -218,7 +218,7 @@ static void _call_f_addSearchPath_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QResource::addSearchPath (arg1); } @@ -240,8 +240,8 @@ static void _call_f_registerResource_3942 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)QResource::registerResource (arg1, arg2)); } @@ -262,8 +262,8 @@ static void _call_f_registerResource_4653 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const unsigned char *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const unsigned char *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)QResource::registerResource (arg1, arg2)); } @@ -299,8 +299,8 @@ static void _call_f_unregisterResource_3942 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)QResource::unregisterResource (arg1, arg2)); } @@ -321,8 +321,8 @@ static void _call_f_unregisterResource_4653 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const unsigned char *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const unsigned char *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)QResource::unregisterResource (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQRunnable.cc b/src/gsiqt/qt5/QtCore/gsiDeclQRunnable.cc index a9b5a9b69..783f0321e 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQRunnable.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQRunnable.cc @@ -81,7 +81,7 @@ static void _call_f_setAutoDelete_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRunnable *)cls)->setAutoDelete (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc index 3b876f781..d51cdd711 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSaveFile.cc @@ -130,7 +130,7 @@ static void _call_f_open_3242 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QSaveFile *)cls)->open (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_setDirectWriteFallback_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSaveFile *)cls)->setDirectWriteFallback (arg1); } @@ -169,7 +169,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSaveFile *)cls)->setFileName (arg1); } @@ -193,9 +193,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSaveFile::tr (arg1, arg2, arg3)); } @@ -218,9 +218,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSaveFile::trUtf8 (arg1, arg2, arg3)); } @@ -734,7 +734,7 @@ static void _call_ctor_QSaveFile_Adaptor_2025 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSaveFile_Adaptor (arg1)); } @@ -752,7 +752,7 @@ static void _call_ctor_QSaveFile_Adaptor_1302 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSaveFile_Adaptor (arg1)); } @@ -772,8 +772,8 @@ static void _call_ctor_QSaveFile_Adaptor_3219 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); ret.write (new QSaveFile_Adaptor (arg1, arg2)); } @@ -862,7 +862,7 @@ static void _call_emitter_bytesWritten_986 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ((QSaveFile_Adaptor *)cls)->emitter_QSaveFile_bytesWritten_986 (arg1); } @@ -947,7 +947,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSaveFile_Adaptor *)cls)->emitter_QSaveFile_destroyed_1302 (arg1); } @@ -1076,7 +1076,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSaveFile_Adaptor *)cls)->fp_QSaveFile_isSignalConnected_c2394 (arg1)); } @@ -1183,7 +1183,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSaveFile_Adaptor *)cls)->fp_QSaveFile_receivers_c1731 (arg1)); } @@ -1294,7 +1294,7 @@ static void _call_fp_setErrorString_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSaveFile_Adaptor *)cls)->fp_QSaveFile_setErrorString_2025 (arg1); } @@ -1313,7 +1313,7 @@ static void _call_fp_setOpenMode_3242 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSaveFile_Adaptor *)cls)->fp_QSaveFile_setOpenMode_3242 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSemaphore.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSemaphore.cc index cee3bac17..bdeea43f6 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSemaphore.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSemaphore.cc @@ -50,7 +50,7 @@ static void _call_ctor_QSemaphore_767 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSemaphore (arg1)); } @@ -69,7 +69,7 @@ static void _call_f_acquire_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSemaphore *)cls)->acquire (arg1); } @@ -104,7 +104,7 @@ static void _call_f_release_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSemaphore *)cls)->release (arg1); } @@ -124,7 +124,7 @@ static void _call_f_tryAcquire_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write ((bool)((QSemaphore *)cls)->tryAcquire (arg1)); } @@ -145,8 +145,8 @@ static void _call_f_tryAcquire_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSemaphore *)cls)->tryAcquire (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc index 0e5973760..47a173353 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSequentialAnimationGroup.cc @@ -72,7 +72,7 @@ static void _call_f_addPause_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QPauseAnimation *)((QSequentialAnimationGroup *)cls)->addPause (arg1)); } @@ -123,8 +123,8 @@ static void _call_f_insertPause_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QPauseAnimation *)((QSequentialAnimationGroup *)cls)->insertPause (arg1, arg2)); } @@ -147,9 +147,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSequentialAnimationGroup::tr (arg1, arg2, arg3)); } @@ -172,9 +172,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSequentialAnimationGroup::trUtf8 (arg1, arg2, arg3)); } @@ -462,7 +462,7 @@ static void _call_ctor_QSequentialAnimationGroup_Adaptor_1302 (const qt_gsi::Gen { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSequentialAnimationGroup_Adaptor (arg1)); } @@ -504,7 +504,7 @@ static void _call_emitter_currentAnimationChanged_2451 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractAnimation *arg1 = args.read (heap); + QAbstractAnimation *arg1 = gsi::arg_reader() (args, heap); ((QSequentialAnimationGroup_Adaptor *)cls)->emitter_QSequentialAnimationGroup_currentAnimationChanged_2451 (arg1); } @@ -522,7 +522,7 @@ static void _call_emitter_currentLoopChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSequentialAnimationGroup_Adaptor *)cls)->emitter_QSequentialAnimationGroup_currentLoopChanged_767 (arg1); } @@ -564,7 +564,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSequentialAnimationGroup_Adaptor *)cls)->emitter_QSequentialAnimationGroup_destroyed_1302 (arg1); } @@ -582,7 +582,7 @@ static void _call_emitter_directionChanged_3310 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QSequentialAnimationGroup_Adaptor *)cls)->emitter_QSequentialAnimationGroup_directionChanged_3310 (arg1); } @@ -706,7 +706,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSequentialAnimationGroup_Adaptor *)cls)->fp_QSequentialAnimationGroup_isSignalConnected_c2394 (arg1)); } @@ -724,7 +724,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSequentialAnimationGroup_Adaptor *)cls)->fp_QSequentialAnimationGroup_receivers_c1731 (arg1)); } @@ -772,8 +772,8 @@ static void _call_emitter_stateChanged_5680 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ((QSequentialAnimationGroup_Adaptor *)cls)->emitter_QSequentialAnimationGroup_stateChanged_5680 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSequentialIterable.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSequentialIterable.cc index 742a542f0..a525ab273 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSequentialIterable.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSequentialIterable.cc @@ -50,7 +50,7 @@ static void _call_f_at_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSequentialIterable *)cls)->at (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSettings.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSettings.cc index 68016c2bc..82487f9f4 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSettings.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSettings.cc @@ -99,7 +99,7 @@ static void _call_f_beginGroup_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings *)cls)->beginGroup (arg1); } @@ -119,7 +119,7 @@ static void _call_f_beginReadArray_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSettings *)cls)->beginReadArray (arg1)); } @@ -140,8 +140,8 @@ static void _call_f_beginWriteArray_2684 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(-1); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings *)cls)->beginWriteArray (arg1, arg2); } @@ -207,7 +207,7 @@ static void _call_f_contains_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSettings *)cls)->contains (arg1)); } @@ -348,7 +348,7 @@ static void _call_f_remove_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings *)cls)->remove (arg1); } @@ -383,7 +383,7 @@ static void _call_f_setArrayIndex_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings *)cls)->setArrayIndex (arg1); } @@ -403,7 +403,7 @@ static void _call_f_setFallbacksEnabled_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings *)cls)->setFallbacksEnabled (arg1); } @@ -425,8 +425,8 @@ static void _call_f_setValue_4036 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSettings *)cls)->setValue (arg1, arg2); } @@ -479,8 +479,8 @@ static void _call_f_value_c4036 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args ? args.read (heap) : (const QVariant &)(QVariant()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QVariant(), heap); ret.write ((QVariant)((QSettings *)cls)->value (arg1, arg2)); } @@ -514,7 +514,7 @@ static void _call_f_setDefaultFormat_2099 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSettings::setDefaultFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -538,9 +538,9 @@ static void _call_f_setPath_5896 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QString &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSettings::setPath (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -560,7 +560,7 @@ static void _call_f_setSystemIniPath_2025 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSettings::setSystemIniPath (arg1); } @@ -580,7 +580,7 @@ static void _call_f_setUserIniPath_2025 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSettings::setUserIniPath (arg1); } @@ -604,9 +604,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSettings::tr (arg1, arg2, arg3)); } @@ -629,9 +629,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSettings::trUtf8 (arg1, arg2, arg3)); } @@ -916,9 +916,9 @@ static void _call_ctor_QSettings_Adaptor_5136 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSettings_Adaptor (arg1, arg2, arg3)); } @@ -942,10 +942,10 @@ static void _call_ctor_QSettings_Adaptor_7016 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - QObject *arg4 = args ? args.read (heap) : (QObject *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QObject *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSettings_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -971,11 +971,11 @@ static void _call_ctor_QSettings_Adaptor_9007 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - QObject *arg5 = args ? args.read (heap) : (QObject *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QObject *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSettings_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -997,9 +997,9 @@ static void _call_ctor_QSettings_Adaptor_5210 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSettings_Adaptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -1017,7 +1017,7 @@ static void _call_ctor_QSettings_Adaptor_1302 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSettings_Adaptor (arg1)); } @@ -1083,7 +1083,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSettings_Adaptor *)cls)->emitter_QSettings_destroyed_1302 (arg1); } @@ -1174,7 +1174,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSettings_Adaptor *)cls)->fp_QSettings_isSignalConnected_c2394 (arg1)); } @@ -1192,7 +1192,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSettings_Adaptor *)cls)->fp_QSettings_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSharedMemory.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSharedMemory.cc index 7264524db..30f8b5bf2 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSharedMemory.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSharedMemory.cc @@ -69,7 +69,7 @@ static void _call_f_attach_2848 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSharedMemory::ReadWrite)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSharedMemory::ReadWrite), heap); ret.write ((bool)((QSharedMemory *)cls)->attach (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -105,8 +105,8 @@ static void _call_f_create_3507 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSharedMemory::ReadWrite)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSharedMemory::ReadWrite), heap); ret.write ((bool)((QSharedMemory *)cls)->create (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -260,7 +260,7 @@ static void _call_f_setKey_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSharedMemory *)cls)->setKey (arg1); } @@ -280,7 +280,7 @@ static void _call_f_setNativeKey_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSharedMemory *)cls)->setNativeKey (arg1); } @@ -334,9 +334,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSharedMemory::tr (arg1, arg2, arg3)); } @@ -359,9 +359,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSharedMemory::trUtf8 (arg1, arg2, arg3)); } @@ -574,7 +574,7 @@ static void _call_ctor_QSharedMemory_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSharedMemory_Adaptor (arg1)); } @@ -594,8 +594,8 @@ static void _call_ctor_QSharedMemory_Adaptor_3219 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSharedMemory_Adaptor (arg1, arg2)); } @@ -661,7 +661,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSharedMemory_Adaptor *)cls)->emitter_QSharedMemory_destroyed_1302 (arg1); } @@ -752,7 +752,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSharedMemory_Adaptor *)cls)->fp_QSharedMemory_isSignalConnected_c2394 (arg1)); } @@ -770,7 +770,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSharedMemory_Adaptor *)cls)->fp_QSharedMemory_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSignalBlocker.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSignalBlocker.cc index 0b1110fe3..65f7fb203 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSignalBlocker.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSignalBlocker.cc @@ -51,7 +51,7 @@ static void _call_ctor_QSignalBlocker_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QSignalBlocker (arg1)); } @@ -70,7 +70,7 @@ static void _call_ctor_QSignalBlocker_1298 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject &arg1 = args.read (heap); + QObject &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSignalBlocker (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSignalMapper.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSignalMapper.cc index 9f0b03c57..a397ec199 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSignalMapper.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSignalMapper.cc @@ -86,7 +86,7 @@ static void _call_f_map_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper *)cls)->map (arg1); } @@ -106,7 +106,7 @@ static void _call_f_mapping_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QObject *)((QSignalMapper *)cls)->mapping (arg1)); } @@ -125,7 +125,7 @@ static void _call_f_mapping_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QObject *)((QSignalMapper *)cls)->mapping (arg1)); } @@ -144,7 +144,7 @@ static void _call_f_mapping_c1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QObject *)((QSignalMapper *)cls)->mapping (arg1)); } @@ -163,7 +163,7 @@ static void _call_f_mapping_c1302 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((QObject *)((QSignalMapper *)cls)->mapping (arg1)); } @@ -182,7 +182,7 @@ static void _call_f_removeMappings_1302 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper *)cls)->removeMappings (arg1); } @@ -204,8 +204,8 @@ static void _call_f_setMapping_1961 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper *)cls)->setMapping (arg1, arg2); } @@ -227,8 +227,8 @@ static void _call_f_setMapping_3219 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper *)cls)->setMapping (arg1, arg2); } @@ -250,8 +250,8 @@ static void _call_f_setMapping_2509 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper *)cls)->setMapping (arg1, arg2); } @@ -273,8 +273,8 @@ static void _call_f_setMapping_2496 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalMapper *)cls)->setMapping (arg1, arg2); } @@ -298,9 +298,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSignalMapper::tr (arg1, arg2, arg3)); } @@ -323,9 +323,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSignalMapper::trUtf8 (arg1, arg2, arg3)); } @@ -549,7 +549,7 @@ static void _call_ctor_QSignalMapper_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSignalMapper_Adaptor (arg1)); } @@ -615,7 +615,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSignalMapper_Adaptor *)cls)->emitter_QSignalMapper_destroyed_1302 (arg1); } @@ -706,7 +706,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSignalMapper_Adaptor *)cls)->fp_QSignalMapper_isSignalConnected_c2394 (arg1)); } @@ -724,7 +724,7 @@ static void _call_emitter_mapped_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSignalMapper_Adaptor *)cls)->emitter_QSignalMapper_mapped_767 (arg1); } @@ -742,7 +742,7 @@ static void _call_emitter_mapped_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSignalMapper_Adaptor *)cls)->emitter_QSignalMapper_mapped_2025 (arg1); } @@ -760,7 +760,7 @@ static void _call_emitter_mapped_1315 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ((QSignalMapper_Adaptor *)cls)->emitter_QSignalMapper_mapped_1315 (arg1); } @@ -778,7 +778,7 @@ static void _call_emitter_mapped_1302 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ((QSignalMapper_Adaptor *)cls)->emitter_QSignalMapper_mapped_1302 (arg1); } @@ -796,7 +796,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSignalMapper_Adaptor *)cls)->fp_QSignalMapper_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSignalTransition.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSignalTransition.cc index d97f9b5d4..8f21b6e89 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSignalTransition.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSignalTransition.cc @@ -88,7 +88,7 @@ static void _call_f_setSenderObject_1997 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); + const QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalTransition *)cls)->setSenderObject (arg1); } @@ -108,7 +108,7 @@ static void _call_f_setSignal_2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSignalTransition *)cls)->setSignal (arg1); } @@ -147,9 +147,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSignalTransition::tr (arg1, arg2, arg3)); } @@ -172,9 +172,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSignalTransition::trUtf8 (arg1, arg2, arg3)); } @@ -407,7 +407,7 @@ static void _call_ctor_QSignalTransition_Adaptor_1216 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QState *arg1 = args ? args.read (heap) : (QState *)(0); + QState *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSignalTransition_Adaptor (arg1)); } @@ -429,9 +429,9 @@ static void _call_ctor_QSignalTransition_Adaptor_4728 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - QState *arg3 = args ? args.read (heap) : (QState *)(0); + const QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + QState *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSignalTransition_Adaptor (arg1, arg2, arg3)); } @@ -497,7 +497,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSignalTransition_Adaptor *)cls)->emitter_QSignalTransition_destroyed_1302 (arg1); } @@ -611,7 +611,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSignalTransition_Adaptor *)cls)->fp_QSignalTransition_isSignalConnected_c2394 (arg1)); } @@ -653,7 +653,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSignalTransition_Adaptor *)cls)->fp_QSignalTransition_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSize.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSize.cc index f1592c977..edf8e8d97 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSize.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSize.cc @@ -67,8 +67,8 @@ static void _call_ctor_QSize_1426 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QSize (arg1, arg2)); } @@ -87,7 +87,7 @@ static void _call_f_boundedTo_c1805 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSize *)cls)->boundedTo (arg1)); } @@ -106,7 +106,7 @@ static void _call_f_expandedTo_c1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSize *)cls)->expandedTo (arg1)); } @@ -185,7 +185,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize &)((QSize *)cls)->operator*= (arg1)); } @@ -204,7 +204,7 @@ static void _call_f_operator_plus__eq__1805 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize &)((QSize *)cls)->operator+= (arg1)); } @@ -223,7 +223,7 @@ static void _call_f_operator_minus__eq__1805 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize &)((QSize *)cls)->operator-= (arg1)); } @@ -242,7 +242,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize &)((QSize *)cls)->operator/= (arg1)); } @@ -295,9 +295,9 @@ static void _call_f_scale_3575 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSize *)cls)->scale (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -319,8 +319,8 @@ static void _call_f_scale_3954 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSize *)cls)->scale (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -344,9 +344,9 @@ static void _call_f_scaled_c3575 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSize)((QSize *)cls)->scaled (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -367,8 +367,8 @@ static void _call_f_scaled_c3954 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSize)((QSize *)cls)->scaled (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -387,7 +387,7 @@ static void _call_f_setHeight_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSize *)cls)->setHeight (arg1); } @@ -407,7 +407,7 @@ static void _call_f_setWidth_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSize *)cls)->setWidth (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSizeF.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSizeF.cc index f6f89eeae..34da7ae62 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSizeF.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSizeF.cc @@ -66,7 +66,7 @@ static void _call_ctor_QSizeF_1805 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSizeF (arg1)); } @@ -87,8 +87,8 @@ static void _call_ctor_QSizeF_2034 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write (new QSizeF (arg1, arg2)); } @@ -107,7 +107,7 @@ static void _call_f_boundedTo_c1875 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSizeF)((QSizeF *)cls)->boundedTo (arg1)); } @@ -126,7 +126,7 @@ static void _call_f_expandedTo_c1875 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSizeF)((QSizeF *)cls)->expandedTo (arg1)); } @@ -205,7 +205,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QSizeF &)((QSizeF *)cls)->operator*= (arg1)); } @@ -224,7 +224,7 @@ static void _call_f_operator_plus__eq__1875 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSizeF &)((QSizeF *)cls)->operator+= (arg1)); } @@ -243,7 +243,7 @@ static void _call_f_operator_minus__eq__1875 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSizeF &)((QSizeF *)cls)->operator-= (arg1)); } @@ -262,7 +262,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QSizeF &)((QSizeF *)cls)->operator/= (arg1)); } @@ -315,9 +315,9 @@ static void _call_f_scale_4183 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeF *)cls)->scale (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -339,8 +339,8 @@ static void _call_f_scale_4024 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeF *)cls)->scale (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -364,9 +364,9 @@ static void _call_f_scaled_c4183 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSizeF)((QSizeF *)cls)->scaled (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -387,8 +387,8 @@ static void _call_f_scaled_c4024 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSizeF)((QSizeF *)cls)->scaled (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -407,7 +407,7 @@ static void _call_f_setHeight_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeF *)cls)->setHeight (arg1); } @@ -427,7 +427,7 @@ static void _call_f_setWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeF *)cls)->setWidth (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSocketNotifier.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSocketNotifier.cc index 283683e5b..82a18e6a0 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSocketNotifier.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSocketNotifier.cc @@ -84,7 +84,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSocketNotifier *)cls)->setEnabled (arg1); } @@ -138,9 +138,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSocketNotifier::tr (arg1, arg2, arg3)); } @@ -163,9 +163,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSocketNotifier::trUtf8 (arg1, arg2, arg3)); } @@ -358,9 +358,9 @@ static void _call_ctor_QSocketNotifier_Adaptor_7056 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIntegerForSizeof::Signed arg1 = args.read::Signed > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + QIntegerForSizeof::Signed arg1 = gsi::arg_reader::Signed >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSocketNotifier_Adaptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -426,7 +426,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSocketNotifier_Adaptor *)cls)->emitter_QSocketNotifier_destroyed_1302 (arg1); } @@ -517,7 +517,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSocketNotifier_Adaptor *)cls)->fp_QSocketNotifier_isSignalConnected_c2394 (arg1)); } @@ -535,7 +535,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSocketNotifier_Adaptor *)cls)->fp_QSocketNotifier_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc index 9ef90f660..5a3f62b42 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSortFilterProxyModel.cc @@ -77,7 +77,7 @@ static void _call_f_buddy_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel *)cls)->buddy (arg1)); } @@ -96,7 +96,7 @@ static void _call_f_canFetchMore_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->canFetchMore (arg1)); } @@ -131,7 +131,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSortFilterProxyModel *)cls)->columnCount (arg1)); } @@ -152,8 +152,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSortFilterProxyModel *)cls)->data (arg1, arg2)); } @@ -180,11 +180,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -218,7 +218,7 @@ static void _call_f_fetchMore_2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->fetchMore (arg1); } @@ -298,7 +298,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSortFilterProxyModel *)cls)->flags (arg1)); } @@ -317,7 +317,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->hasChildren (arg1)); } @@ -340,9 +340,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSortFilterProxyModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -365,9 +365,9 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QSortFilterProxyModel *)cls)->index (arg1, arg2, arg3)); } @@ -390,9 +390,9 @@ static void _call_f_insertColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->insertColumns (arg1, arg2, arg3)); } @@ -415,9 +415,9 @@ static void _call_f_insertRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->insertRows (arg1, arg2, arg3)); } @@ -467,7 +467,7 @@ static void _call_f_mapFromSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel *)cls)->mapFromSource (arg1)); } @@ -486,7 +486,7 @@ static void _call_f_mapSelectionFromSource_c2727 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QSortFilterProxyModel *)cls)->mapSelectionFromSource (arg1)); } @@ -505,7 +505,7 @@ static void _call_f_mapSelectionToSource_c2727 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QItemSelection &arg1 = args.read (heap); + const QItemSelection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QItemSelection)((QSortFilterProxyModel *)cls)->mapSelectionToSource (arg1)); } @@ -524,7 +524,7 @@ static void _call_f_mapToSource_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel *)cls)->mapToSource (arg1)); } @@ -551,11 +551,11 @@ static void _call_f_match_c7932 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(1); - QFlags arg5 = args ? args.read > (heap) : (QFlags)(Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap)); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchFlags(Qt::MatchStartsWith|Qt::MatchWrap), heap); ret.write > ((QList)((QSortFilterProxyModel *)cls)->match (arg1, arg2, arg3, arg4, arg5)); } @@ -574,7 +574,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QSortFilterProxyModel *)cls)->mimeData (arg1)); } @@ -623,7 +623,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel *)cls)->parent (arg1)); } @@ -646,9 +646,9 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->removeColumns (arg1, arg2, arg3)); } @@ -671,9 +671,9 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->removeRows (arg1, arg2, arg3)); } @@ -692,7 +692,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSortFilterProxyModel *)cls)->rowCount (arg1)); } @@ -715,9 +715,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->setData (arg1, arg2, arg3)); } @@ -736,7 +736,7 @@ static void _call_f_setDynamicSortFilter_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setDynamicSortFilter (arg1); } @@ -756,7 +756,7 @@ static void _call_f_setFilterCaseSensitivity_2324 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setFilterCaseSensitivity (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -776,7 +776,7 @@ static void _call_f_setFilterFixedString_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setFilterFixedString (arg1); } @@ -796,7 +796,7 @@ static void _call_f_setFilterKeyColumn_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setFilterKeyColumn (arg1); } @@ -816,7 +816,7 @@ static void _call_f_setFilterRegExp_1981 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setFilterRegExp (arg1); } @@ -836,7 +836,7 @@ static void _call_f_setFilterRegExp_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setFilterRegExp (arg1); } @@ -856,7 +856,7 @@ static void _call_f_setFilterRole_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setFilterRole (arg1); } @@ -876,7 +876,7 @@ static void _call_f_setFilterWildcard_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setFilterWildcard (arg1); } @@ -902,10 +902,10 @@ static void _call_f_setHeaderData_5242 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(Qt::EditRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSortFilterProxyModel *)cls)->setHeaderData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -924,7 +924,7 @@ static void _call_f_setSortCaseSensitivity_2324 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setSortCaseSensitivity (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -944,7 +944,7 @@ static void _call_f_setSortLocaleAware_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setSortLocaleAware (arg1); } @@ -964,7 +964,7 @@ static void _call_f_setSortRole_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setSortRole (arg1); } @@ -984,7 +984,7 @@ static void _call_f_setSourceModel_2419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->setSourceModel (arg1); } @@ -1008,9 +1008,9 @@ static void _call_f_sibling_c3713 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel *)cls)->sibling (arg1, arg2, arg3)); } @@ -1031,8 +1031,8 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel *)cls)->sort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1112,7 +1112,7 @@ static void _call_f_span_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QSortFilterProxyModel *)cls)->span (arg1)); } @@ -1150,9 +1150,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSortFilterProxyModel::tr (arg1, arg2, arg3)); } @@ -1175,9 +1175,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSortFilterProxyModel::trUtf8 (arg1, arg2, arg3)); } @@ -2236,7 +2236,7 @@ static void _call_ctor_QSortFilterProxyModel_Adaptor_1302 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSortFilterProxyModel_Adaptor (arg1)); } @@ -2258,9 +2258,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -2283,9 +2283,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -2312,11 +2312,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -2342,11 +2342,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -2368,9 +2368,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -2393,9 +2393,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -2512,8 +2512,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_changePersistentIndex_4682 (arg1, arg2); } @@ -2534,8 +2534,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -2605,9 +2605,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -2629,9 +2629,9 @@ static void _call_fp_createIndex_c2657 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quintptr arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quintptr arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_createIndex_c2657 (arg1, arg2, arg3)); } @@ -2703,9 +2703,9 @@ static void _call_emitter_dataChanged_7048 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); ((QSortFilterProxyModel_Adaptor *)cls)->emitter_QSortFilterProxyModel_dataChanged_7048 (arg1, arg2, arg3); } @@ -2729,10 +2729,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -2750,7 +2750,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSortFilterProxyModel_Adaptor *)cls)->emitter_QSortFilterProxyModel_destroyed_1302 (arg1); } @@ -2829,8 +2829,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_encodeData_c4599 (arg1, arg2); } @@ -3173,9 +3173,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QSortFilterProxyModel_Adaptor *)cls)->emitter_QSortFilterProxyModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -3295,7 +3295,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_isSignalConnected_c2394 (arg1)); } @@ -3338,8 +3338,8 @@ static void _call_emitter_layoutAboutToBeChanged_7947 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QSortFilterProxyModel_Adaptor *)cls)->emitter_QSortFilterProxyModel_layoutAboutToBeChanged_7947 (arg1, arg2); } @@ -3359,8 +3359,8 @@ static void _call_emitter_layoutChanged_7947 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QSortFilterProxyModel_Adaptor *)cls)->emitter_QSortFilterProxyModel_layoutChanged_7947 (arg1, arg2); } @@ -3680,7 +3680,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSortFilterProxyModel_Adaptor *)cls)->fp_QSortFilterProxyModel_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStandardPaths.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStandardPaths.cc index 2349e000f..bcfd13a51 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStandardPaths.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStandardPaths.cc @@ -50,7 +50,7 @@ static void _call_f_displayName_3604 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QStandardPaths::displayName (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -69,7 +69,7 @@ static void _call_f_enableTestMode_864 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QStandardPaths::enableTestMode (arg1); } @@ -91,8 +91,8 @@ static void _call_f_findExecutable_4354 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args ? args.read (heap) : (const QStringList &)(QStringList()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStringList(), heap); ret.write ((QString)QStandardPaths::findExecutable (arg1, arg2)); } @@ -130,9 +130,9 @@ static void _call_f_locate_9304 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QStandardPaths::LocateFile); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QStandardPaths::LocateFile, heap); ret.write ((QString)QStandardPaths::locate (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -155,9 +155,9 @@ static void _call_f_locateAll_9304 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QStandardPaths::LocateFile); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QStandardPaths::LocateFile, heap); ret.write ((QStringList)QStandardPaths::locateAll (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -176,7 +176,7 @@ static void _call_f_setTestModeEnabled_864 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QStandardPaths::setTestModeEnabled (arg1); } @@ -196,7 +196,7 @@ static void _call_f_standardLocations_3604 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QStringList)QStandardPaths::standardLocations (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -215,7 +215,7 @@ static void _call_f_writableLocation_3604 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QStandardPaths::writableLocation (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQState.cc b/src/gsiqt/qt5/QtCore/gsiDeclQState.cc index bc4c049a2..f04a2d230 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQState.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQState.cc @@ -73,7 +73,7 @@ static void _call_f_addTransition_2590 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractTransition *arg1 = args.read (heap); + QAbstractTransition *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QState *)cls)->addTransition (arg1); } @@ -97,9 +97,9 @@ static void _call_f_addTransition_5548 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - QAbstractState *arg3 = args.read (heap); + const QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + QAbstractState *arg3 = gsi::arg_reader() (args, heap); ret.write ((QSignalTransition *)((QState *)cls)->addTransition (arg1, arg2, arg3)); } @@ -118,7 +118,7 @@ static void _call_f_addTransition_2036 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractState *arg1 = args.read (heap); + QAbstractState *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractTransition *)((QState *)cls)->addTransition (arg1)); } @@ -141,9 +141,9 @@ static void _call_f_assignProperty_4936 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QState *)cls)->assignProperty (arg1, arg2, arg3); } @@ -208,7 +208,7 @@ static void _call_f_removeTransition_2590 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractTransition *arg1 = args.read (heap); + QAbstractTransition *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QState *)cls)->removeTransition (arg1); } @@ -228,7 +228,7 @@ static void _call_f_setChildMode_2019 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QState *)cls)->setChildMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -248,7 +248,7 @@ static void _call_f_setErrorState_2036 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractState *arg1 = args.read (heap); + QAbstractState *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QState *)cls)->setErrorState (arg1); } @@ -268,7 +268,7 @@ static void _call_f_setInitialState_2036 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractState *arg1 = args.read (heap); + QAbstractState *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QState *)cls)->setInitialState (arg1); } @@ -307,9 +307,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QState::tr (arg1, arg2, arg3)); } @@ -332,9 +332,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QState::trUtf8 (arg1, arg2, arg3)); } @@ -582,7 +582,7 @@ static void _call_ctor_QState_Adaptor_1216 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QState *arg1 = args ? args.read (heap) : (QState *)(0); + QState *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QState_Adaptor (arg1)); } @@ -602,8 +602,8 @@ static void _call_ctor_QState_Adaptor_3127 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QState *arg2 = args ? args.read (heap) : (QState *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QState *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QState_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -621,7 +621,7 @@ static void _call_emitter_activeChanged_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QState_Adaptor *)cls)->emitter_QState_activeChanged_864 (arg1); } @@ -687,7 +687,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QState_Adaptor *)cls)->emitter_QState_destroyed_1302 (arg1); } @@ -778,7 +778,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QState_Adaptor *)cls)->fp_QState_isSignalConnected_c2394 (arg1)); } @@ -844,7 +844,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QState_Adaptor *)cls)->fp_QState_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc index c6a40b4ac..c2b545595 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine.cc @@ -74,7 +74,7 @@ static void _call_f_addDefaultAnimation_2451 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractAnimation *arg1 = args.read (heap); + QAbstractAnimation *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->addDefaultAnimation (arg1); } @@ -94,7 +94,7 @@ static void _call_f_addState_2036 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractState *arg1 = args.read (heap); + QAbstractState *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->addState (arg1); } @@ -114,7 +114,7 @@ static void _call_f_cancelDelayedEvent_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStateMachine *)cls)->cancelDelayedEvent (arg1)); } @@ -211,8 +211,8 @@ static void _call_f_eventFilter_2411 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStateMachine *)cls)->eventFilter (arg1, arg2)); } @@ -278,8 +278,8 @@ static void _call_f_postDelayedEvent_1876 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); - int arg2 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QStateMachine *)cls)->postDelayedEvent (arg1, arg2)); } @@ -300,8 +300,8 @@ static void _call_f_postEvent_4328 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QStateMachine::NormalPriority)); + QEvent *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QStateMachine::NormalPriority), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->postEvent (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -321,7 +321,7 @@ static void _call_f_removeDefaultAnimation_2451 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractAnimation *arg1 = args.read (heap); + QAbstractAnimation *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->removeDefaultAnimation (arg1); } @@ -341,7 +341,7 @@ static void _call_f_removeState_2036 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractState *arg1 = args.read (heap); + QAbstractState *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->removeState (arg1); } @@ -361,7 +361,7 @@ static void _call_f_setAnimated_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->setAnimated (arg1); } @@ -381,7 +381,7 @@ static void _call_f_setGlobalRestorePolicy_2510 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->setGlobalRestorePolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -401,7 +401,7 @@ static void _call_f_setRunning_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStateMachine *)cls)->setRunning (arg1); } @@ -457,9 +457,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStateMachine::tr (arg1, arg2, arg3)); } @@ -482,9 +482,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStateMachine::trUtf8 (arg1, arg2, arg3)); } @@ -812,7 +812,7 @@ static void _call_ctor_QStateMachine_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStateMachine_Adaptor (arg1)); } @@ -832,8 +832,8 @@ static void _call_ctor_QStateMachine_Adaptor_3213 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStateMachine_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -851,7 +851,7 @@ static void _call_emitter_activeChanged_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QStateMachine_Adaptor *)cls)->emitter_QStateMachine_activeChanged_864 (arg1); } @@ -965,7 +965,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStateMachine_Adaptor *)cls)->emitter_QStateMachine_destroyed_1302 (arg1); } @@ -1104,7 +1104,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStateMachine_Adaptor *)cls)->fp_QStateMachine_isSignalConnected_c2394 (arg1)); } @@ -1170,7 +1170,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStateMachine_Adaptor *)cls)->fp_QStateMachine_receivers_c1731 (arg1)); } @@ -1188,7 +1188,7 @@ static void _call_emitter_runningChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QStateMachine_Adaptor *)cls)->emitter_QStateMachine_runningChanged_864 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_SignalEvent.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_SignalEvent.cc index f28c0f2fe..b397daabc 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_SignalEvent.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_SignalEvent.cc @@ -139,9 +139,9 @@ static void _call_ctor_QStateMachine_SignalEvent_Adaptor_4587 (const qt_gsi::Gen { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QList &arg3 = args.read & > (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QList &arg3 = gsi::arg_reader & >() (args, heap); ret.write (new QStateMachine_SignalEvent_Adaptor (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_WrappedEvent.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_WrappedEvent.cc index 2c4f624b3..66dd13441 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_WrappedEvent.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStateMachine_WrappedEvent.cc @@ -121,8 +121,8 @@ static void _call_ctor_QStateMachine_WrappedEvent_Adaptor_2411 (const qt_gsi::Ge { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write (new QStateMachine_WrappedEvent_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStorageInfo.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStorageInfo.cc index 295ae5243..e55a116af 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStorageInfo.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStorageInfo.cc @@ -66,7 +66,7 @@ static void _call_ctor_QStorageInfo_2025 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStorageInfo (arg1)); } @@ -85,7 +85,7 @@ static void _call_ctor_QStorageInfo_1681 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStorageInfo (arg1)); } @@ -104,7 +104,7 @@ static void _call_ctor_QStorageInfo_2515 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStorageInfo &arg1 = args.read (heap); + const QStorageInfo &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStorageInfo (arg1)); } @@ -288,7 +288,7 @@ static void _call_f_operator_eq__2515 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStorageInfo &arg1 = args.read (heap); + const QStorageInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStorageInfo &)((QStorageInfo *)cls)->operator= (arg1)); } @@ -338,7 +338,7 @@ static void _call_f_setPath_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStorageInfo *)cls)->setPath (arg1); } @@ -358,7 +358,7 @@ static void _call_f_swap_1820 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStorageInfo &arg1 = args.read (heap); + QStorageInfo &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStorageInfo *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc index 85b02bce0..40adab15c 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStringListModel.cc @@ -76,8 +76,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QStringListModel *)cls)->data (arg1, arg2)); } @@ -96,7 +96,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QStringListModel *)cls)->flags (arg1)); } @@ -119,9 +119,9 @@ static void _call_f_insertRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel *)cls)->insertRows (arg1, arg2, arg3)); } @@ -144,9 +144,9 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStringListModel *)cls)->removeRows (arg1, arg2, arg3)); } @@ -165,7 +165,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QStringListModel *)cls)->rowCount (arg1)); } @@ -188,9 +188,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStringListModel *)cls)->setData (arg1, arg2, arg3)); } @@ -209,7 +209,7 @@ static void _call_f_setStringList_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel *)cls)->setStringList (arg1); } @@ -233,9 +233,9 @@ static void _call_f_sibling_c3713 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStringListModel *)cls)->sibling (arg1, arg2, arg3)); } @@ -256,8 +256,8 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel *)cls)->sort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -311,9 +311,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStringListModel::tr (arg1, arg2, arg3)); } @@ -336,9 +336,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStringListModel::trUtf8 (arg1, arg2, arg3)); } @@ -1180,7 +1180,7 @@ static void _call_ctor_QStringListModel_Adaptor_1302 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStringListModel_Adaptor (arg1)); } @@ -1200,8 +1200,8 @@ static void _call_ctor_QStringListModel_Adaptor_3631 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStringListModel_Adaptor (arg1, arg2)); } @@ -1223,9 +1223,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->fp_QStringListModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1248,9 +1248,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->fp_QStringListModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1277,11 +1277,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->fp_QStringListModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1307,11 +1307,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->fp_QStringListModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1333,9 +1333,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->fp_QStringListModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1358,9 +1358,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->fp_QStringListModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -1477,8 +1477,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->fp_QStringListModel_changePersistentIndex_4682 (arg1, arg2); } @@ -1499,8 +1499,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->fp_QStringListModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -1547,9 +1547,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QStringListModel_Adaptor *)cls)->fp_QStringListModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -1571,9 +1571,9 @@ static void _call_fp_createIndex_c2657 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quintptr arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quintptr arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStringListModel_Adaptor *)cls)->fp_QStringListModel_createIndex_c2657 (arg1, arg2, arg3)); } @@ -1645,9 +1645,9 @@ static void _call_emitter_dataChanged_7048 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); ((QStringListModel_Adaptor *)cls)->emitter_QStringListModel_dataChanged_7048 (arg1, arg2, arg3); } @@ -1671,10 +1671,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->fp_QStringListModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -1692,7 +1692,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStringListModel_Adaptor *)cls)->emitter_QStringListModel_destroyed_1302 (arg1); } @@ -1771,8 +1771,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringListModel_Adaptor *)cls)->fp_QStringListModel_encodeData_c4599 (arg1, arg2); } @@ -2025,9 +2025,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QStringListModel_Adaptor *)cls)->emitter_QStringListModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2132,7 +2132,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStringListModel_Adaptor *)cls)->fp_QStringListModel_isSignalConnected_c2394 (arg1)); } @@ -2175,8 +2175,8 @@ static void _call_emitter_layoutAboutToBeChanged_7947 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QStringListModel_Adaptor *)cls)->emitter_QStringListModel_layoutAboutToBeChanged_7947 (arg1, arg2); } @@ -2196,8 +2196,8 @@ static void _call_emitter_layoutChanged_7947 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QStringListModel_Adaptor *)cls)->emitter_QStringListModel_layoutChanged_7947 (arg1, arg2); } @@ -2376,7 +2376,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStringListModel_Adaptor *)cls)->fp_QStringListModel_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQStringMatcher.cc b/src/gsiqt/qt5/QtCore/gsiDeclQStringMatcher.cc index b3c806ba9..815f82106 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQStringMatcher.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQStringMatcher.cc @@ -67,8 +67,8 @@ static void _call_ctor_QStringMatcher_4241 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::CaseSensitive)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::CaseSensitive), heap); ret.write (new QStringMatcher (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -87,7 +87,7 @@ static void _call_ctor_QStringMatcher_2733 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringMatcher &arg1 = args.read (heap); + const QStringMatcher &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStringMatcher (arg1)); } @@ -123,8 +123,8 @@ static void _call_f_indexIn_c2684 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStringMatcher *)cls)->indexIn (arg1, arg2)); } @@ -143,7 +143,7 @@ static void _call_f_operator_eq__2733 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringMatcher &arg1 = args.read (heap); + const QStringMatcher &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringMatcher &)((QStringMatcher *)cls)->operator= (arg1)); } @@ -177,7 +177,7 @@ static void _call_f_setCaseSensitivity_2324 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringMatcher *)cls)->setCaseSensitivity (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -197,7 +197,7 @@ static void _call_f_setPattern_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStringMatcher *)cls)->setPattern (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQSystemSemaphore.cc b/src/gsiqt/qt5/QtCore/gsiDeclQSystemSemaphore.cc index 89e079d69..c6cd1dd23 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQSystemSemaphore.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQSystemSemaphore.cc @@ -54,9 +54,9 @@ static void _call_ctor_QSystemSemaphore_5769 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSystemSemaphore::Open)); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSystemSemaphore::Open), heap); ret.write (new QSystemSemaphore (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -135,7 +135,7 @@ static void _call_f_release_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write ((bool)((QSystemSemaphore *)cls)->release (arg1)); } @@ -158,9 +158,9 @@ static void _call_f_setKey_5769 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSystemSemaphore::Open)); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSystemSemaphore::Open), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemSemaphore *)cls)->setKey (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref()); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryDir.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryDir.cc index 4da10bb50..55d9d6bcc 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryDir.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryDir.cc @@ -65,7 +65,7 @@ static void _call_ctor_QTemporaryDir_2025 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTemporaryDir (arg1)); } @@ -144,7 +144,7 @@ static void _call_f_setAutoRemove_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTemporaryDir *)cls)->setAutoRemove (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryFile.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryFile.cc index 00a9fc0e7..942f1fd64 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryFile.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTemporaryFile.cc @@ -83,7 +83,7 @@ static void _call_ctor_QTemporaryFile_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTemporaryFile (arg1)); } @@ -102,7 +102,7 @@ static void _call_ctor_QTemporaryFile_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTemporaryFile (arg1)); } @@ -123,8 +123,8 @@ static void _call_ctor_QTemporaryFile_3219 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); ret.write (new QTemporaryFile (arg1, arg2)); } @@ -203,7 +203,7 @@ static void _call_f_setAutoRemove_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTemporaryFile *)cls)->setAutoRemove (arg1); } @@ -223,7 +223,7 @@ static void _call_f_setFileTemplate_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTemporaryFile *)cls)->setFileTemplate (arg1); } @@ -243,7 +243,7 @@ static void _call_f_createLocalFile_2025 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTemporaryFile *)QTemporaryFile::createLocalFile (arg1)); } @@ -262,7 +262,7 @@ static void _call_f_createLocalFile_1083 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFile &arg1 = args.read (heap); + QFile &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTemporaryFile *)QTemporaryFile::createLocalFile (arg1)); } @@ -281,7 +281,7 @@ static void _call_f_createNativeFile_2025 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTemporaryFile *)QTemporaryFile::createNativeFile (arg1)); } @@ -300,7 +300,7 @@ static void _call_f_createNativeFile_1083 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFile &arg1 = args.read (heap); + QFile &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTemporaryFile *)QTemporaryFile::createNativeFile (arg1)); } @@ -323,9 +323,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTemporaryFile::tr (arg1, arg2, arg3)); } @@ -348,9 +348,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTemporaryFile::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTextBoundaryFinder.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTextBoundaryFinder.cc index 9ac3ec0b8..bd33a8837 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTextBoundaryFinder.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTextBoundaryFinder.cc @@ -65,7 +65,7 @@ static void _call_ctor_QTextBoundaryFinder_3251 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBoundaryFinder &arg1 = args.read (heap); + const QTextBoundaryFinder &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextBoundaryFinder (arg1)); } @@ -86,8 +86,8 @@ static void _call_ctor_QTextBoundaryFinder_5661 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write (new QTextBoundaryFinder (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -151,7 +151,7 @@ static void _call_f_operator_eq__3251 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBoundaryFinder &arg1 = args.read (heap); + const QTextBoundaryFinder &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextBoundaryFinder &)((QTextBoundaryFinder *)cls)->operator= (arg1)); } @@ -185,7 +185,7 @@ static void _call_f_setPosition_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBoundaryFinder *)cls)->setPosition (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec.cc index 4a305ae80..df29b1154 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec.cc @@ -67,7 +67,7 @@ static void _call_f_canEncode_c899 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QTextCodec *)cls)->canEncode (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -86,7 +86,7 @@ static void _call_f_canEncode_c2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCodec *)cls)->canEncode (arg1)); } @@ -105,7 +105,7 @@ static void _call_f_fromUnicode_c2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QTextCodec *)cls)->fromUnicode (arg1)); } @@ -124,7 +124,7 @@ static void _call_f_makeDecoder_c3668 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QTextCodec::DefaultConversion); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QTextCodec::DefaultConversion, heap); ret.write ((QTextDecoder *)((QTextCodec *)cls)->makeDecoder (arg1)); } @@ -143,7 +143,7 @@ static void _call_f_makeEncoder_c3668 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QTextCodec::DefaultConversion); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QTextCodec::DefaultConversion, heap); ret.write ((QTextEncoder *)((QTextCodec *)cls)->makeEncoder (arg1)); } @@ -192,7 +192,7 @@ static void _call_f_toUnicode_c1731 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextCodec *)cls)->toUnicode (arg1)); } @@ -215,9 +215,9 @@ static void _call_f_toUnicode_c5465 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); - QTextCodec::ConverterState *arg3 = args ? args.read (heap) : (QTextCodec::ConverterState *)(0); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QTextCodec::ConverterState *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QTextCodec *)cls)->toUnicode (arg1, arg2, arg3)); } @@ -266,7 +266,7 @@ static void _call_f_codecForHtml_2309 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCodec *)QTextCodec::codecForHtml (arg1)); } @@ -287,8 +287,8 @@ static void _call_f_codecForHtml_3803 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - QTextCodec *arg2 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + QTextCodec *arg2 = gsi::arg_reader() (args, heap); ret.write ((QTextCodec *)QTextCodec::codecForHtml (arg1, arg2)); } @@ -322,7 +322,7 @@ static void _call_f_codecForMib_767 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCodec *)QTextCodec::codecForMib (arg1)); } @@ -341,7 +341,7 @@ static void _call_f_codecForName_1731 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCodec *)QTextCodec::codecForName (arg1)); } @@ -360,7 +360,7 @@ static void _call_f_codecForUtfText_2309 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCodec *)QTextCodec::codecForUtfText (arg1)); } @@ -381,8 +381,8 @@ static void _call_f_codecForUtfText_3803 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - QTextCodec *arg2 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + QTextCodec *arg2 = gsi::arg_reader() (args, heap); ret.write ((QTextCodec *)QTextCodec::codecForUtfText (arg1, arg2)); } @@ -401,7 +401,7 @@ static void _call_f_setCodecForLocale_1602 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextCodec *arg1 = args.read (heap); + QTextCodec *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QTextCodec::setCodecForLocale (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec_ConverterState.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec_ConverterState.cc index c5aadee02..bcadd4e35 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec_ConverterState.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTextCodec_ConverterState.cc @@ -50,7 +50,7 @@ static void _call_ctor_QTextCodec_ConverterState_3668 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QTextCodec::DefaultConversion); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QTextCodec::DefaultConversion, heap); ret.write (new QTextCodec::ConverterState (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTextDecoder.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTextDecoder.cc index 6bb6e8529..07ec3f202 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTextDecoder.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTextDecoder.cc @@ -51,7 +51,7 @@ static void _call_ctor_QTextDecoder_2297 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCodec *arg1 = args.read (heap); + const QTextCodec *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextDecoder (arg1)); } @@ -72,8 +72,8 @@ static void _call_ctor_QTextDecoder_5857 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCodec *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QTextCodec *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write (new QTextDecoder (arg1, arg2)); } @@ -109,8 +109,8 @@ static void _call_f_toUnicode_2390 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextDecoder *)cls)->toUnicode (arg1, arg2)); } @@ -129,7 +129,7 @@ static void _call_f_toUnicode_2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextDecoder *)cls)->toUnicode (arg1)); } @@ -152,9 +152,9 @@ static void _call_f_toUnicode_3616 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - int arg3 = args.read (heap); + QString *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDecoder *)cls)->toUnicode (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTextEncoder.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTextEncoder.cc index 11d73fd38..36d163632 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTextEncoder.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTextEncoder.cc @@ -51,7 +51,7 @@ static void _call_ctor_QTextEncoder_2297 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCodec *arg1 = args.read (heap); + const QTextCodec *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextEncoder (arg1)); } @@ -72,8 +72,8 @@ static void _call_ctor_QTextEncoder_5857 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCodec *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QTextCodec *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write (new QTextEncoder (arg1, arg2)); } @@ -92,7 +92,7 @@ static void _call_f_fromUnicode_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QTextEncoder *)cls)->fromUnicode (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTextStream.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTextStream.cc index de7b0002c..d28409b81 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTextStream.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTextStream.cc @@ -392,7 +392,7 @@ static void _call_f_read_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextStream *)cls)->read (arg1)); } @@ -426,7 +426,7 @@ static void _call_f_readLine_986 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args ? args.read (heap) : (qint64)(0); + qint64 arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QTextStream *)cls)->readLine (arg1)); } @@ -447,8 +447,8 @@ static void _call_f_readLineInto_2212 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString *arg1 = args.read (heap); - qint64 arg2 = args ? args.read (heap) : (qint64)(0); + QString *arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QTextStream *)cls)->readLineInto (arg1, arg2)); } @@ -529,7 +529,7 @@ static void _call_f_seek_986 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextStream *)cls)->seek (arg1)); } @@ -548,7 +548,7 @@ static void _call_f_setAutoDetectUnicode_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setAutoDetectUnicode (arg1); } @@ -568,7 +568,7 @@ static void _call_f_setCodec_1602 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextCodec *arg1 = args.read (heap); + QTextCodec *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setCodec (arg1); } @@ -588,7 +588,7 @@ static void _call_f_setCodec_1731 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setCodec (arg1); } @@ -608,7 +608,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setDevice (arg1); } @@ -628,7 +628,7 @@ static void _call_f_setFieldAlignment_3085 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setFieldAlignment (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -648,7 +648,7 @@ static void _call_f_setFieldWidth_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setFieldWidth (arg1); } @@ -668,7 +668,7 @@ static void _call_f_setGenerateByteOrderMark_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setGenerateByteOrderMark (arg1); } @@ -688,7 +688,7 @@ static void _call_f_setIntegerBase_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setIntegerBase (arg1); } @@ -708,7 +708,7 @@ static void _call_f_setLocale_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setLocale (arg1); } @@ -728,7 +728,7 @@ static void _call_f_setNumberFlags_3365 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setNumberFlags (arg1); } @@ -748,7 +748,7 @@ static void _call_f_setPadChar_899 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setPadChar (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -768,7 +768,7 @@ static void _call_f_setRealNumberNotation_3523 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setRealNumberNotation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -788,7 +788,7 @@ static void _call_f_setRealNumberPrecision_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setRealNumberPrecision (arg1); } @@ -808,7 +808,7 @@ static void _call_f_setStatus_2318 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setStatus (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -830,8 +830,8 @@ static void _call_f_setString_4468 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString *arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + QString *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextStream *)cls)->setString (arg1, arg2); } @@ -1025,7 +1025,7 @@ static void _call_ctor_QTextStream_Adaptor_1447 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextStream_Adaptor (arg1)); } @@ -1045,8 +1045,8 @@ static void _call_ctor_QTextStream_Adaptor_4468 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString *arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + QString *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); ret.write (new QTextStream_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc b/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc index 99a4bbcce..4461ca220 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQThread.cc @@ -64,7 +64,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QThread *)cls)->event (arg1)); } @@ -98,7 +98,7 @@ static void _call_f_exit_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread *)cls)->exit (arg1); } @@ -225,7 +225,7 @@ static void _call_f_setEventDispatcher_3068 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractEventDispatcher *arg1 = args.read (heap); + QAbstractEventDispatcher *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread *)cls)->setEventDispatcher (arg1); } @@ -245,7 +245,7 @@ static void _call_f_setPriority_2099 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread *)cls)->setPriority (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -265,7 +265,7 @@ static void _call_f_setStackSize_1772 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread *)cls)->setStackSize (arg1); } @@ -300,7 +300,7 @@ static void _call_f_start_2099 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QThread::InheritPriority)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QThread::InheritPriority), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThread *)cls)->start (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -336,7 +336,7 @@ static void _call_f_wait_2348 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args ? args.read (heap) : (unsigned long int)(ULONG_MAX); + unsigned long int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (ULONG_MAX, heap); ret.write ((bool)((QThread *)cls)->wait (arg1)); } @@ -400,7 +400,7 @@ static void _call_f_msleep_2348 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args.read (heap); + unsigned long int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QThread::msleep (arg1); } @@ -420,7 +420,7 @@ static void _call_f_sleep_2348 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args.read (heap); + unsigned long int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QThread::sleep (arg1); } @@ -444,9 +444,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QThread::tr (arg1, arg2, arg3)); } @@ -469,9 +469,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QThread::trUtf8 (arg1, arg2, arg3)); } @@ -490,7 +490,7 @@ static void _call_f_usleep_2348 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args.read (heap); + unsigned long int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QThread::usleep (arg1); } @@ -742,7 +742,7 @@ static void _call_ctor_QThread_Adaptor_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QThread_Adaptor (arg1)); } @@ -808,7 +808,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QThread_Adaptor *)cls)->emitter_QThread_destroyed_1302 (arg1); } @@ -913,7 +913,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QThread_Adaptor *)cls)->fp_QThread_isSignalConnected_c2394 (arg1)); } @@ -931,7 +931,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QThread_Adaptor *)cls)->fp_QThread_receivers_c1731 (arg1)); } @@ -997,7 +997,7 @@ static void _call_fp_setTerminationEnabled_864 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); QThread_Adaptor::fp_QThread_setTerminationEnabled_864 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQThreadPool.cc b/src/gsiqt/qt5/QtCore/gsiDeclQThreadPool.cc index 9da131df8..26bd073b6 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQThreadPool.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQThreadPool.cc @@ -85,7 +85,7 @@ static void _call_f_cancel_1526 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QRunnable *arg1 = args.read (heap); + QRunnable *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThreadPool *)cls)->cancel (arg1); } @@ -183,7 +183,7 @@ static void _call_f_setExpiryTimeout_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThreadPool *)cls)->setExpiryTimeout (arg1); } @@ -203,7 +203,7 @@ static void _call_f_setMaxThreadCount_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThreadPool *)cls)->setMaxThreadCount (arg1); } @@ -225,8 +225,8 @@ static void _call_f_start_2185 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QRunnable *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QRunnable *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QThreadPool *)cls)->start (arg1, arg2); } @@ -246,7 +246,7 @@ static void _call_f_tryStart_1526 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QRunnable *arg1 = args.read (heap); + QRunnable *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QThreadPool *)cls)->tryStart (arg1)); } @@ -265,7 +265,7 @@ static void _call_f_waitForDone_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((bool)((QThreadPool *)cls)->waitForDone (arg1)); } @@ -303,9 +303,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QThreadPool::tr (arg1, arg2, arg3)); } @@ -328,9 +328,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QThreadPool::trUtf8 (arg1, arg2, arg3)); } @@ -528,7 +528,7 @@ static void _call_ctor_QThreadPool_Adaptor_1302 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QThreadPool_Adaptor (arg1)); } @@ -594,7 +594,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QThreadPool_Adaptor *)cls)->emitter_QThreadPool_destroyed_1302 (arg1); } @@ -685,7 +685,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QThreadPool_Adaptor *)cls)->fp_QThreadPool_isSignalConnected_c2394 (arg1)); } @@ -703,7 +703,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QThreadPool_Adaptor *)cls)->fp_QThreadPool_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTime.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTime.cc index 597877cd2..317fef597 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTime.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTime.cc @@ -71,10 +71,10 @@ static void _call_ctor_QTime_2744 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); - int arg4 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTime (arg1, arg2, arg3, arg4)); } @@ -93,7 +93,7 @@ static void _call_f_addMSecs_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTime)((QTime *)cls)->addMSecs (arg1)); } @@ -112,7 +112,7 @@ static void _call_f_addSecs_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTime)((QTime *)cls)->addSecs (arg1)); } @@ -236,7 +236,7 @@ static void _call_f_msecsTo_c1793 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTime *)cls)->msecsTo (arg1)); } @@ -255,7 +255,7 @@ static void _call_f_operator_excl__eq__c1793 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTime *)cls)->operator!= (arg1)); } @@ -274,7 +274,7 @@ static void _call_f_operator_lt__c1793 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTime *)cls)->operator< (arg1)); } @@ -293,7 +293,7 @@ static void _call_f_operator_lt__eq__c1793 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTime *)cls)->operator<= (arg1)); } @@ -312,7 +312,7 @@ static void _call_f_operator_eq__eq__c1793 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTime *)cls)->operator== (arg1)); } @@ -331,7 +331,7 @@ static void _call_f_operator_gt__c1793 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTime *)cls)->operator> (arg1)); } @@ -350,7 +350,7 @@ static void _call_f_operator_gt__eq__c1793 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTime *)cls)->operator>= (arg1)); } @@ -399,7 +399,7 @@ static void _call_f_secsTo_c1793 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTime *)cls)->secsTo (arg1)); } @@ -424,10 +424,10 @@ static void _call_f_setHMS_2744 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QTime *)cls)->setHMS (arg1, arg2, arg3, arg4)); } @@ -462,7 +462,7 @@ static void _call_f_toString_c1748 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate), heap); ret.write ((QString)((QTime *)cls)->toString (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -481,7 +481,7 @@ static void _call_f_toString_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTime *)cls)->toString (arg1)); } @@ -515,7 +515,7 @@ static void _call_f_fromMSecsSinceStartOfDay_767 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTime)QTime::fromMSecsSinceStartOfDay (arg1)); } @@ -536,8 +536,8 @@ static void _call_f_fromString_3665 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TextDate), heap); ret.write ((QTime)QTime::fromString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -558,8 +558,8 @@ static void _call_f_fromString_3942 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QTime)QTime::fromString (arg1, arg2)); } @@ -584,10 +584,10 @@ static void _call_f_isValid_2744 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)QTime::isValid (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTimeLine.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTimeLine.cc index 1827ed29f..efd781e6d 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTimeLine.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTimeLine.cc @@ -190,7 +190,7 @@ static void _call_f_frameForTime_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTimeLine *)cls)->frameForTime (arg1)); } @@ -240,7 +240,7 @@ static void _call_f_setCurrentTime_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setCurrentTime (arg1); } @@ -260,7 +260,7 @@ static void _call_f_setCurveShape_2438 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setCurveShape (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -280,7 +280,7 @@ static void _call_f_setDirection_2353 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -300,7 +300,7 @@ static void _call_f_setDuration_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setDuration (arg1); } @@ -320,7 +320,7 @@ static void _call_f_setEasingCurve_2510 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QEasingCurve &arg1 = args.read (heap); + const QEasingCurve &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setEasingCurve (arg1); } @@ -340,7 +340,7 @@ static void _call_f_setEndFrame_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setEndFrame (arg1); } @@ -362,8 +362,8 @@ static void _call_f_setFrameRange_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setFrameRange (arg1, arg2); } @@ -383,7 +383,7 @@ static void _call_f_setLoopCount_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setLoopCount (arg1); } @@ -403,7 +403,7 @@ static void _call_f_setPaused_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setPaused (arg1); } @@ -423,7 +423,7 @@ static void _call_f_setStartFrame_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setStartFrame (arg1); } @@ -443,7 +443,7 @@ static void _call_f_setUpdateInterval_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeLine *)cls)->setUpdateInterval (arg1); } @@ -556,7 +556,7 @@ static void _call_f_valueForTime_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QTimeLine *)cls)->valueForTime (arg1)); } @@ -579,9 +579,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTimeLine::tr (arg1, arg2, arg3)); } @@ -604,9 +604,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTimeLine::trUtf8 (arg1, arg2, arg3)); } @@ -844,8 +844,8 @@ static void _call_ctor_QTimeLine_Adaptor_1961 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1000); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1000, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTimeLine_Adaptor (arg1, arg2)); } @@ -911,7 +911,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTimeLine_Adaptor *)cls)->emitter_QTimeLine_destroyed_1302 (arg1); } @@ -1002,7 +1002,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeLine_Adaptor *)cls)->fp_QTimeLine_isSignalConnected_c2394 (arg1)); } @@ -1020,7 +1020,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTimeLine_Adaptor *)cls)->fp_QTimeLine_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTimeZone.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTimeZone.cc index 5ec23ac47..af9dbe800 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTimeZone.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTimeZone.cc @@ -67,7 +67,7 @@ static void _call_ctor_QTimeZone_2309 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTimeZone (arg1)); } @@ -86,7 +86,7 @@ static void _call_ctor_QTimeZone_767 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write (new QTimeZone (arg1)); } @@ -115,12 +115,12 @@ static void _call_ctor_QTimeZone_10592 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocale::AnyCountry)); - const QString &arg6 = args ? args.read (heap) : (const QString &)(QString()); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocale::AnyCountry), heap); + const QString &arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QTimeZone (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref(), arg6)); } @@ -139,7 +139,7 @@ static void _call_ctor_QTimeZone_2205 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTimeZone &arg1 = args.read (heap); + const QTimeZone &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTimeZone (arg1)); } @@ -158,7 +158,7 @@ static void _call_f_abbreviation_c2175 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTimeZone *)cls)->abbreviation (arg1)); } @@ -207,7 +207,7 @@ static void _call_f_daylightTimeOffset_c2175 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTimeZone *)cls)->daylightTimeOffset (arg1)); } @@ -230,9 +230,9 @@ static void _call_f_displayName_c6192 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTimeZone::DefaultName)); - const QLocale &arg3 = args ? args.read (heap) : (const QLocale &)(QLocale()); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTimeZone::DefaultName), heap); + const QLocale &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QLocale(), heap); ret.write ((QString)((QTimeZone *)cls)->displayName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -255,9 +255,9 @@ static void _call_f_displayName_c6278 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTimeZone::DefaultName)); - const QLocale &arg3 = args ? args.read (heap) : (const QLocale &)(QLocale()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTimeZone::DefaultName), heap); + const QLocale &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QLocale(), heap); ret.write ((QString)((QTimeZone *)cls)->displayName (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -321,7 +321,7 @@ static void _call_f_isDaylightTime_c2175 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeZone *)cls)->isDaylightTime (arg1)); } @@ -355,7 +355,7 @@ static void _call_f_nextTransition_c2175 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTimeZone::OffsetData)((QTimeZone *)cls)->nextTransition (arg1)); } @@ -374,7 +374,7 @@ static void _call_f_offsetData_c2175 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTimeZone::OffsetData)((QTimeZone *)cls)->offsetData (arg1)); } @@ -393,7 +393,7 @@ static void _call_f_offsetFromUtc_c2175 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTimeZone *)cls)->offsetFromUtc (arg1)); } @@ -412,7 +412,7 @@ static void _call_f_operator_excl__eq__c2205 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTimeZone &arg1 = args.read (heap); + const QTimeZone &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeZone *)cls)->operator!= (arg1)); } @@ -431,7 +431,7 @@ static void _call_f_operator_eq__2205 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTimeZone &arg1 = args.read (heap); + const QTimeZone &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTimeZone &)((QTimeZone *)cls)->operator= (arg1)); } @@ -450,7 +450,7 @@ static void _call_f_operator_eq__eq__c2205 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTimeZone &arg1 = args.read (heap); + const QTimeZone &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeZone *)cls)->operator== (arg1)); } @@ -469,7 +469,7 @@ static void _call_f_previousTransition_c2175 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTimeZone::OffsetData)((QTimeZone *)cls)->previousTransition (arg1)); } @@ -488,7 +488,7 @@ static void _call_f_standardTimeOffset_c2175 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTimeZone *)cls)->standardTimeOffset (arg1)); } @@ -507,7 +507,7 @@ static void _call_f_swap_1510 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimeZone &arg1 = args.read (heap); + QTimeZone &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeZone *)cls)->swap (arg1); } @@ -529,8 +529,8 @@ static void _call_f_transitions_c4242 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); - const QDateTime &arg2 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); + const QDateTime &arg2 = gsi::arg_reader() (args, heap); ret.write > ((QVector)((QTimeZone *)cls)->transitions (arg1, arg2)); } @@ -564,7 +564,7 @@ static void _call_f_availableTimeZoneIds_1981 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QList)QTimeZone::availableTimeZoneIds (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -583,7 +583,7 @@ static void _call_f_availableTimeZoneIds_767 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)QTimeZone::availableTimeZoneIds (arg1)); } @@ -602,7 +602,7 @@ static void _call_f_ianaIdToWindowsId_2309 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)QTimeZone::ianaIdToWindowsId (arg1)); } @@ -621,7 +621,7 @@ static void _call_f_isTimeZoneIdAvailable_2309 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QTimeZone::isTimeZoneIdAvailable (arg1)); } @@ -685,7 +685,7 @@ static void _call_f_windowsIdToDefaultIanaId_2309 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)QTimeZone::windowsIdToDefaultIanaId (arg1)); } @@ -706,8 +706,8 @@ static void _call_f_windowsIdToDefaultIanaId_4182 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QByteArray)QTimeZone::windowsIdToDefaultIanaId (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -726,7 +726,7 @@ static void _call_f_windowsIdToIanaIds_2309 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)QTimeZone::windowsIdToIanaIds (arg1)); } @@ -747,8 +747,8 @@ static void _call_f_windowsIdToIanaIds_4182 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QList)QTimeZone::windowsIdToIanaIds (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTimer.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTimer.cc index 38116d1b9..28267d1db 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTimer.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTimer.cc @@ -129,7 +129,7 @@ static void _call_f_setInterval_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer *)cls)->setInterval (arg1); } @@ -149,7 +149,7 @@ static void _call_f_setSingleShot_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer *)cls)->setSingleShot (arg1); } @@ -169,7 +169,7 @@ static void _call_f_setTimerType_1680 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer *)cls)->setTimerType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -189,7 +189,7 @@ static void _call_f_start_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimer *)cls)->start (arg1); } @@ -275,9 +275,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTimer::tr (arg1, arg2, arg3)); } @@ -300,9 +300,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTimer::trUtf8 (arg1, arg2, arg3)); } @@ -499,7 +499,7 @@ static void _call_ctor_QTimer_Adaptor_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTimer_Adaptor (arg1)); } @@ -565,7 +565,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTimer_Adaptor *)cls)->emitter_QTimer_destroyed_1302 (arg1); } @@ -656,7 +656,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimer_Adaptor *)cls)->fp_QTimer_isSignalConnected_c2394 (arg1)); } @@ -674,7 +674,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTimer_Adaptor *)cls)->fp_QTimer_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTimerEvent.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTimerEvent.cc index 7ea80e964..f183e067a 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTimerEvent.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTimerEvent.cc @@ -102,7 +102,7 @@ static void _call_ctor_QTimerEvent_Adaptor_767 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write (new QTimerEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQTranslator.cc b/src/gsiqt/qt5/QtCore/gsiDeclQTranslator.cc index aee2d4c61..df9d5eb9e 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQTranslator.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQTranslator.cc @@ -91,10 +91,10 @@ static void _call_f_load_7776 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QTranslator *)cls)->load (arg1, arg2, arg3, arg4)); } @@ -121,11 +121,11 @@ static void _call_f_load_9654 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg5 = args ? args.read (heap) : (const QString &)(QString()); + const QLocale &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QTranslator *)cls)->load (arg1, arg2, arg3, arg4, arg5)); } @@ -148,9 +148,9 @@ static void _call_f_load_5312 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const unsigned char *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); + const unsigned char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QTranslator *)cls)->load (arg1, arg2, arg3)); } @@ -175,10 +175,10 @@ static void _call_f_translate_c5636 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const char *arg3 = args ? args.read (heap) : (const char *)(0); - int arg4 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)((QTranslator *)cls)->translate (arg1, arg2, arg3, arg4)); } @@ -201,9 +201,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTranslator::tr (arg1, arg2, arg3)); } @@ -226,9 +226,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTranslator::trUtf8 (arg1, arg2, arg3)); } @@ -450,7 +450,7 @@ static void _call_ctor_QTranslator_Adaptor_1302 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTranslator_Adaptor (arg1)); } @@ -516,7 +516,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTranslator_Adaptor *)cls)->emitter_QTranslator_destroyed_1302 (arg1); } @@ -626,7 +626,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTranslator_Adaptor *)cls)->fp_QTranslator_isSignalConnected_c2394 (arg1)); } @@ -644,7 +644,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTranslator_Adaptor *)cls)->fp_QTranslator_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQUrl.cc b/src/gsiqt/qt5/QtCore/gsiDeclQUrl.cc index 1f0c4e5a4..e39ce48b0 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQUrl.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQUrl.cc @@ -67,7 +67,7 @@ static void _call_ctor_QUrl_1701 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write (new QUrl (arg1)); } @@ -88,8 +88,8 @@ static void _call_ctor_QUrl_3970 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode), heap); ret.write (new QUrl (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -108,7 +108,7 @@ static void _call_f_adjusted_c7571 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUrlTwoFlags arg1 = args.read > (heap); + QUrlTwoFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((QUrl)((QUrl *)cls)->adjusted (arg1)); } @@ -127,7 +127,7 @@ static void _call_f_authority_c4267 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QUrl::PrettyDecoded); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::PrettyDecoded, heap); ret.write ((QString)((QUrl *)cls)->authority (arg1)); } @@ -193,7 +193,7 @@ static void _call_f_fileName_c4267 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QUrl::FullyDecoded); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::FullyDecoded, heap); ret.write ((QString)((QUrl *)cls)->fileName (arg1)); } @@ -212,7 +212,7 @@ static void _call_f_fragment_c4267 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QUrl::PrettyDecoded); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::PrettyDecoded, heap); ret.write ((QString)((QUrl *)cls)->fragment (arg1)); } @@ -261,7 +261,7 @@ static void _call_f_host_c4267 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QUrl::FullyDecoded); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::FullyDecoded, heap); ret.write ((QString)((QUrl *)cls)->host (arg1)); } @@ -325,7 +325,7 @@ static void _call_f_isParentOf_c1701 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUrl *)cls)->isParentOf (arg1)); } @@ -376,8 +376,8 @@ static void _call_f_matches_c9164 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); - QUrlTwoFlags arg2 = args.read > (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); + QUrlTwoFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QUrl *)cls)->matches (arg1, arg2)); } @@ -396,7 +396,7 @@ static void _call_f_operator_excl__eq__c1701 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUrl *)cls)->operator != (arg1)); } @@ -415,7 +415,7 @@ static void _call_f_operator_lt__c1701 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUrl *)cls)->operator < (arg1)); } @@ -434,7 +434,7 @@ static void _call_f_operator_eq__1701 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl &)((QUrl *)cls)->operator = (arg1)); } @@ -453,7 +453,7 @@ static void _call_f_operator_eq__eq__c1701 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUrl *)cls)->operator == (arg1)); } @@ -472,7 +472,7 @@ static void _call_f_operator_eq__2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl &)((QUrl *)cls)->operator= (arg1)); } @@ -491,7 +491,7 @@ static void _call_f_password_c4267 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QUrl::FullyDecoded); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::FullyDecoded, heap); ret.write ((QString)((QUrl *)cls)->password (arg1)); } @@ -510,7 +510,7 @@ static void _call_f_path_c4267 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QUrl::FullyDecoded); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::FullyDecoded, heap); ret.write ((QString)((QUrl *)cls)->path (arg1)); } @@ -529,7 +529,7 @@ static void _call_f_port_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((int)((QUrl *)cls)->port (arg1)); } @@ -548,7 +548,7 @@ static void _call_f_query_c4267 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QUrl::PrettyDecoded); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::PrettyDecoded, heap); ret.write ((QString)((QUrl *)cls)->query (arg1)); } @@ -567,7 +567,7 @@ static void _call_f_resolved_c1701 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl)((QUrl *)cls)->resolved (arg1)); } @@ -603,8 +603,8 @@ static void _call_f_setAuthority_3970 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setAuthority (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -626,8 +626,8 @@ static void _call_f_setFragment_3970 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setFragment (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -649,8 +649,8 @@ static void _call_f_setHost_3970 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QUrl::DecodedMode)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QUrl::DecodedMode), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setHost (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -672,8 +672,8 @@ static void _call_f_setPassword_3970 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QUrl::DecodedMode)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QUrl::DecodedMode), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setPassword (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -695,8 +695,8 @@ static void _call_f_setPath_3970 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QUrl::DecodedMode)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QUrl::DecodedMode), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setPath (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -716,7 +716,7 @@ static void _call_f_setPort_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setPort (arg1); } @@ -738,8 +738,8 @@ static void _call_f_setQuery_3970 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setQuery (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -759,7 +759,7 @@ static void _call_f_setQuery_2235 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrlQuery &arg1 = args.read (heap); + const QUrlQuery &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setQuery (arg1); } @@ -779,7 +779,7 @@ static void _call_f_setScheme_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setScheme (arg1); } @@ -801,8 +801,8 @@ static void _call_f_setUrl_3970 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setUrl (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -824,8 +824,8 @@ static void _call_f_setUserInfo_3970 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setUserInfo (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -847,8 +847,8 @@ static void _call_f_setUserName_3970 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QUrl::DecodedMode)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QUrl::DecodedMode), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->setUserName (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -868,7 +868,7 @@ static void _call_f_swap_1006 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUrl &arg1 = args.read (heap); + QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrl *)cls)->swap (arg1); } @@ -888,7 +888,7 @@ static void _call_f_toDisplayString_c7571 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUrlTwoFlags arg1 = args ? args.read > (heap) : (QUrlTwoFlags)(QUrl::FormattingOptions(QUrl::PrettyDecoded)); + QUrlTwoFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::FormattingOptions(QUrl::PrettyDecoded), heap); ret.write ((QString)((QUrl *)cls)->toDisplayString (arg1)); } @@ -907,7 +907,7 @@ static void _call_f_toEncoded_c7571 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUrlTwoFlags arg1 = args ? args.read > (heap) : (QUrlTwoFlags)(QUrl::FullyEncoded); + QUrlTwoFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::FullyEncoded, heap); ret.write ((QByteArray)((QUrl *)cls)->toEncoded (arg1)); } @@ -941,7 +941,7 @@ static void _call_f_toString_c7571 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUrlTwoFlags arg1 = args ? args.read > (heap) : (QUrlTwoFlags)(QUrl::FormattingOptions(QUrl::PrettyDecoded)); + QUrlTwoFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::FormattingOptions(QUrl::PrettyDecoded), heap); ret.write ((QString)((QUrl *)cls)->toString (arg1)); } @@ -960,7 +960,7 @@ static void _call_f_topLevelDomain_c4267 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QUrl::FullyDecoded); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::FullyDecoded, heap); ret.write ((QString)((QUrl *)cls)->topLevelDomain (arg1)); } @@ -979,7 +979,7 @@ static void _call_f_url_c7571 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUrlTwoFlags arg1 = args ? args.read > (heap) : (QUrlTwoFlags)(QUrl::FormattingOptions(QUrl::PrettyDecoded)); + QUrlTwoFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::FormattingOptions(QUrl::PrettyDecoded), heap); ret.write ((QString)((QUrl *)cls)->url (arg1)); } @@ -998,7 +998,7 @@ static void _call_f_userInfo_c4267 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QUrl::PrettyDecoded); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::PrettyDecoded, heap); ret.write ((QString)((QUrl *)cls)->userInfo (arg1)); } @@ -1017,7 +1017,7 @@ static void _call_f_userName_c4267 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QUrl::FullyDecoded); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::FullyDecoded, heap); ret.write ((QString)((QUrl *)cls)->userName (arg1)); } @@ -1036,7 +1036,7 @@ static void _call_f_fromAce_2309 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QUrl::fromAce (arg1)); } @@ -1057,8 +1057,8 @@ static void _call_f_fromEncoded_4254 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode)); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode), heap); ret.write ((QUrl)QUrl::fromEncoded (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1077,7 +1077,7 @@ static void _call_f_fromLocalFile_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl)QUrl::fromLocalFile (arg1)); } @@ -1096,7 +1096,7 @@ static void _call_f_fromPercentEncoding_2309 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QUrl::fromPercentEncoding (arg1)); } @@ -1117,8 +1117,8 @@ static void _call_f_fromStringList_4382 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode)); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QUrl::TolerantMode), heap); ret.write > ((QList)QUrl::fromStringList (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1137,7 +1137,7 @@ static void _call_f_fromUserInput_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl)QUrl::fromUserInput (arg1)); } @@ -1160,9 +1160,9 @@ static void _call_f_fromUserInput_8122 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QUrl::DefaultResolution); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::DefaultResolution, heap); ret.write ((QUrl)QUrl::fromUserInput (arg1, arg2, arg3)); } @@ -1196,7 +1196,7 @@ static void _call_f_setIdnWhitelist_2437 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QUrl::setIdnWhitelist (arg1); } @@ -1216,7 +1216,7 @@ static void _call_f_toAce_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)QUrl::toAce (arg1)); } @@ -1239,9 +1239,9 @@ static void _call_f_toPercentEncoding_6427 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - const QByteArray &arg3 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); + const QByteArray &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write ((QByteArray)QUrl::toPercentEncoding (arg1, arg2, arg3)); } @@ -1262,8 +1262,8 @@ static void _call_f_toStringList_9779 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QUrlTwoFlags arg2 = args ? args.read > (heap) : (QUrlTwoFlags)(QUrl::FormattingOptions(QUrl::PrettyDecoded)); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QUrlTwoFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::FormattingOptions(QUrl::PrettyDecoded), heap); ret.write ((QStringList)QUrl::toStringList (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQUrlQuery.cc b/src/gsiqt/qt5/QtCore/gsiDeclQUrlQuery.cc index 06f2a802e..51ceff446 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQUrlQuery.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQUrlQuery.cc @@ -66,7 +66,7 @@ static void _call_ctor_QUrlQuery_1701 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write (new QUrlQuery (arg1)); } @@ -85,7 +85,7 @@ static void _call_ctor_QUrlQuery_2025 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QUrlQuery (arg1)); } @@ -104,7 +104,7 @@ static void _call_ctor_QUrlQuery_2235 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrlQuery &arg1 = args.read (heap); + const QUrlQuery &arg1 = gsi::arg_reader() (args, heap); ret.write (new QUrlQuery (arg1)); } @@ -125,8 +125,8 @@ static void _call_f_addQueryItem_3942 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlQuery *)cls)->addQueryItem (arg1, arg2); } @@ -148,8 +148,8 @@ static void _call_f_allQueryItemValues_c6184 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QUrl::PrettyDecoded); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::PrettyDecoded, heap); ret.write ((QStringList)((QUrlQuery *)cls)->allQueryItemValues (arg1, arg2)); } @@ -184,7 +184,7 @@ static void _call_f_hasQueryItem_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUrlQuery *)cls)->hasQueryItem (arg1)); } @@ -233,7 +233,7 @@ static void _call_f_operator_excl__eq__c2235 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrlQuery &arg1 = args.read (heap); + const QUrlQuery &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUrlQuery *)cls)->operator!= (arg1)); } @@ -252,7 +252,7 @@ static void _call_f_operator_eq__2235 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrlQuery &arg1 = args.read (heap); + const QUrlQuery &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrlQuery &)((QUrlQuery *)cls)->operator= (arg1)); } @@ -271,7 +271,7 @@ static void _call_f_operator_eq__eq__c2235 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrlQuery &arg1 = args.read (heap); + const QUrlQuery &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUrlQuery *)cls)->operator== (arg1)); } @@ -290,7 +290,7 @@ static void _call_f_query_c4267 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QUrl::PrettyDecoded); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::PrettyDecoded, heap); ret.write ((QString)((QUrlQuery *)cls)->query (arg1)); } @@ -311,8 +311,8 @@ static void _call_f_queryItemValue_c6184 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QUrl::PrettyDecoded); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::PrettyDecoded, heap); ret.write ((QString)((QUrlQuery *)cls)->queryItemValue (arg1, arg2)); } @@ -331,7 +331,7 @@ static void _call_f_queryItems_c4267 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QUrl::PrettyDecoded); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::PrettyDecoded, heap); ret.write > > ((QList >)((QUrlQuery *)cls)->queryItems (arg1)); } @@ -380,7 +380,7 @@ static void _call_f_removeAllQueryItems_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlQuery *)cls)->removeAllQueryItems (arg1); } @@ -400,7 +400,7 @@ static void _call_f_removeQueryItem_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlQuery *)cls)->removeQueryItem (arg1); } @@ -420,7 +420,7 @@ static void _call_f_setQuery_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlQuery *)cls)->setQuery (arg1); } @@ -442,8 +442,8 @@ static void _call_f_setQueryDelimiters_1690 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlQuery *)cls)->setQueryDelimiters (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -463,7 +463,7 @@ static void _call_f_setQueryItems_4283 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList > &arg1 = args.read > & > (heap); + const QList > &arg1 = gsi::arg_reader > & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlQuery *)cls)->setQueryItems (arg1); } @@ -483,7 +483,7 @@ static void _call_f_swap_1540 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUrlQuery &arg1 = args.read (heap); + QUrlQuery &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUrlQuery *)cls)->swap (arg1); } @@ -503,7 +503,7 @@ static void _call_f_toString_c4267 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QUrl::PrettyDecoded); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QUrl::PrettyDecoded, heap); ret.write ((QString)((QUrlQuery *)cls)->toString (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc b/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc index 6823b553e..0c6342617 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQVariantAnimation.cc @@ -131,7 +131,7 @@ static void _call_f_keyValueAt_c1071 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QVariantAnimation *)cls)->keyValueAt (arg1)); } @@ -165,7 +165,7 @@ static void _call_f_setDuration_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation *)cls)->setDuration (arg1); } @@ -185,7 +185,7 @@ static void _call_f_setEasingCurve_2510 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QEasingCurve &arg1 = args.read (heap); + const QEasingCurve &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation *)cls)->setEasingCurve (arg1); } @@ -205,7 +205,7 @@ static void _call_f_setEndValue_2119 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation *)cls)->setEndValue (arg1); } @@ -227,8 +227,8 @@ static void _call_f_setKeyValueAt_3082 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation *)cls)->setKeyValueAt (arg1, arg2); } @@ -248,7 +248,7 @@ static void _call_f_setKeyValues_4799 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation *)cls)->setKeyValues (arg1); } @@ -268,7 +268,7 @@ static void _call_f_setStartValue_2119 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVariantAnimation *)cls)->setStartValue (arg1); } @@ -307,9 +307,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVariantAnimation::tr (arg1, arg2, arg3)); } @@ -332,9 +332,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVariantAnimation::trUtf8 (arg1, arg2, arg3)); } @@ -663,7 +663,7 @@ static void _call_ctor_QVariantAnimation_Adaptor_1302 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QVariantAnimation_Adaptor (arg1)); } @@ -705,7 +705,7 @@ static void _call_emitter_currentLoopChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QVariantAnimation_Adaptor *)cls)->emitter_QVariantAnimation_currentLoopChanged_767 (arg1); } @@ -747,7 +747,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QVariantAnimation_Adaptor *)cls)->emitter_QVariantAnimation_destroyed_1302 (arg1); } @@ -765,7 +765,7 @@ static void _call_emitter_directionChanged_3310 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QVariantAnimation_Adaptor *)cls)->emitter_QVariantAnimation_directionChanged_3310 (arg1); } @@ -918,7 +918,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVariantAnimation_Adaptor *)cls)->fp_QVariantAnimation_isSignalConnected_c2394 (arg1)); } @@ -936,7 +936,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVariantAnimation_Adaptor *)cls)->fp_QVariantAnimation_receivers_c1731 (arg1)); } @@ -984,8 +984,8 @@ static void _call_emitter_stateChanged_5680 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ((QVariantAnimation_Adaptor *)cls)->emitter_QVariantAnimation_stateChanged_5680 (arg1, arg2); } @@ -1126,7 +1126,7 @@ static void _call_emitter_valueChanged_2119 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ((QVariantAnimation_Adaptor *)cls)->emitter_QVariantAnimation_valueChanged_2119 (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQWaitCondition.cc b/src/gsiqt/qt5/QtCore/gsiDeclQWaitCondition.cc index 4ab9503de..761b23ce9 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQWaitCondition.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQWaitCondition.cc @@ -69,8 +69,8 @@ static void _call_f_wait_3474 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMutex *arg1 = args.read (heap); - unsigned long int arg2 = args ? args.read (heap) : (unsigned long int)(ULONG_MAX); + QMutex *arg1 = gsi::arg_reader() (args, heap); + unsigned long int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (ULONG_MAX, heap); ret.write ((bool)((QWaitCondition *)cls)->wait (arg1, arg2)); } @@ -91,8 +91,8 @@ static void _call_f_wait_4239 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QReadWriteLock *arg1 = args.read (heap); - unsigned long int arg2 = args ? args.read (heap) : (unsigned long int)(ULONG_MAX); + QReadWriteLock *arg1 = gsi::arg_reader() (args, heap); + unsigned long int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (ULONG_MAX, heap); ret.write ((bool)((QWaitCondition *)cls)->wait (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQWriteLocker.cc b/src/gsiqt/qt5/QtCore/gsiDeclQWriteLocker.cc index d151177e7..5bef127da 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQWriteLocker.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQWriteLocker.cc @@ -51,7 +51,7 @@ static void _call_ctor_QWriteLocker_1999 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QReadWriteLock *arg1 = args.read (heap); + QReadWriteLock *arg1 = gsi::arg_reader() (args, heap); ret.write (new QWriteLocker (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttribute.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttribute.cc index 5c9b051c2..79b6fd4e2 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttribute.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttribute.cc @@ -67,8 +67,8 @@ static void _call_ctor_QXmlStreamAttribute_3942 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamAttribute (arg1, arg2)); } @@ -91,9 +91,9 @@ static void _call_ctor_QXmlStreamAttribute_5859 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamAttribute (arg1, arg2, arg3)); } @@ -112,7 +112,7 @@ static void _call_ctor_QXmlStreamAttribute_3267 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamAttribute &arg1 = args.read (heap); + const QXmlStreamAttribute &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamAttribute (arg1)); } @@ -176,7 +176,7 @@ static void _call_f_operator_excl__eq__c3267 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamAttribute &arg1 = args.read (heap); + const QXmlStreamAttribute &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlStreamAttribute *)cls)->operator!= (arg1)); } @@ -195,7 +195,7 @@ static void _call_f_operator_eq__3267 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamAttribute &arg1 = args.read (heap); + const QXmlStreamAttribute &arg1 = gsi::arg_reader() (args, heap); ret.write ((QXmlStreamAttribute &)((QXmlStreamAttribute *)cls)->operator= (arg1)); } @@ -214,7 +214,7 @@ static void _call_f_operator_eq__eq__c3267 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamAttribute &arg1 = args.read (heap); + const QXmlStreamAttribute &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlStreamAttribute *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttributes.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttributes.cc index d32f6e12a..0c036fb81 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttributes.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamAttributes.cc @@ -69,9 +69,9 @@ static void _call_f_append_5859 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamAttributes *)cls)->append (arg1, arg2, arg3); } @@ -93,8 +93,8 @@ static void _call_f_append_3942 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamAttributes *)cls)->append (arg1, arg2); } @@ -114,7 +114,7 @@ static void _call_f_hasAttribute_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlStreamAttributes *)cls)->hasAttribute (arg1)); } @@ -135,8 +135,8 @@ static void _call_f_hasAttribute_c3942 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlStreamAttributes *)cls)->hasAttribute (arg1, arg2)); } @@ -157,8 +157,8 @@ static void _call_f_value_c3942 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QStringRef)((QXmlStreamAttributes *)cls)->value (arg1, arg2)); } @@ -177,7 +177,7 @@ static void _call_f_value_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringRef)((QXmlStreamAttributes *)cls)->value (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityDeclaration.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityDeclaration.cc index 79b24f65d..29e9a7e38 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityDeclaration.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityDeclaration.cc @@ -65,7 +65,7 @@ static void _call_ctor_QXmlStreamEntityDeclaration_4082 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamEntityDeclaration &arg1 = args.read (heap); + const QXmlStreamEntityDeclaration &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamEntityDeclaration (arg1)); } @@ -114,7 +114,7 @@ static void _call_f_operator_excl__eq__c4082 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamEntityDeclaration &arg1 = args.read (heap); + const QXmlStreamEntityDeclaration &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlStreamEntityDeclaration *)cls)->operator!= (arg1)); } @@ -133,7 +133,7 @@ static void _call_f_operator_eq__4082 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamEntityDeclaration &arg1 = args.read (heap); + const QXmlStreamEntityDeclaration &arg1 = gsi::arg_reader() (args, heap); ret.write ((QXmlStreamEntityDeclaration &)((QXmlStreamEntityDeclaration *)cls)->operator= (arg1)); } @@ -152,7 +152,7 @@ static void _call_f_operator_eq__eq__c4082 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamEntityDeclaration &arg1 = args.read (heap); + const QXmlStreamEntityDeclaration &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlStreamEntityDeclaration *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityResolver.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityResolver.cc index f9b30acc7..3d4a83204 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityResolver.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamEntityResolver.cc @@ -52,8 +52,8 @@ static void _call_f_resolveEntity_3942 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlStreamEntityResolver *)cls)->resolveEntity (arg1, arg2)); } @@ -72,7 +72,7 @@ static void _call_f_resolveUndeclaredEntity_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlStreamEntityResolver *)cls)->resolveUndeclaredEntity (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNamespaceDeclaration.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNamespaceDeclaration.cc index 1bcf6f576..8c8f44757 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNamespaceDeclaration.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNamespaceDeclaration.cc @@ -65,7 +65,7 @@ static void _call_ctor_QXmlStreamNamespaceDeclaration_4354 (const qt_gsi::Generi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamNamespaceDeclaration &arg1 = args.read (heap); + const QXmlStreamNamespaceDeclaration &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamNamespaceDeclaration (arg1)); } @@ -86,8 +86,8 @@ static void _call_ctor_QXmlStreamNamespaceDeclaration_3942 (const qt_gsi::Generi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamNamespaceDeclaration (arg1, arg2)); } @@ -121,7 +121,7 @@ static void _call_f_operator_excl__eq__c4354 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamNamespaceDeclaration &arg1 = args.read (heap); + const QXmlStreamNamespaceDeclaration &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlStreamNamespaceDeclaration *)cls)->operator!= (arg1)); } @@ -140,7 +140,7 @@ static void _call_f_operator_eq__4354 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamNamespaceDeclaration &arg1 = args.read (heap); + const QXmlStreamNamespaceDeclaration &arg1 = gsi::arg_reader() (args, heap); ret.write ((QXmlStreamNamespaceDeclaration &)((QXmlStreamNamespaceDeclaration *)cls)->operator= (arg1)); } @@ -159,7 +159,7 @@ static void _call_f_operator_eq__eq__c4354 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamNamespaceDeclaration &arg1 = args.read (heap); + const QXmlStreamNamespaceDeclaration &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlStreamNamespaceDeclaration *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNotationDeclaration.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNotationDeclaration.cc index d6761c9b9..6294c05b5 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNotationDeclaration.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamNotationDeclaration.cc @@ -65,7 +65,7 @@ static void _call_ctor_QXmlStreamNotationDeclaration_4289 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamNotationDeclaration &arg1 = args.read (heap); + const QXmlStreamNotationDeclaration &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamNotationDeclaration (arg1)); } @@ -99,7 +99,7 @@ static void _call_f_operator_excl__eq__c4289 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamNotationDeclaration &arg1 = args.read (heap); + const QXmlStreamNotationDeclaration &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlStreamNotationDeclaration *)cls)->operator!= (arg1)); } @@ -118,7 +118,7 @@ static void _call_f_operator_eq__4289 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamNotationDeclaration &arg1 = args.read (heap); + const QXmlStreamNotationDeclaration &arg1 = gsi::arg_reader() (args, heap); ret.write ((QXmlStreamNotationDeclaration &)((QXmlStreamNotationDeclaration *)cls)->operator= (arg1)); } @@ -137,7 +137,7 @@ static void _call_f_operator_eq__eq__c4289 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamNotationDeclaration &arg1 = args.read (heap); + const QXmlStreamNotationDeclaration &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlStreamNotationDeclaration *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamReader.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamReader.cc index 03afa318a..dbe989f7e 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamReader.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamReader.cc @@ -71,7 +71,7 @@ static void _call_ctor_QXmlStreamReader_1447 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamReader (arg1)); } @@ -90,7 +90,7 @@ static void _call_ctor_QXmlStreamReader_2309 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamReader (arg1)); } @@ -109,7 +109,7 @@ static void _call_ctor_QXmlStreamReader_2025 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamReader (arg1)); } @@ -128,7 +128,7 @@ static void _call_ctor_QXmlStreamReader_1731 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamReader (arg1)); } @@ -147,7 +147,7 @@ static void _call_f_addData_2309 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamReader *)cls)->addData (arg1); } @@ -167,7 +167,7 @@ static void _call_f_addData_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamReader *)cls)->addData (arg1); } @@ -187,7 +187,7 @@ static void _call_f_addData_1731 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamReader *)cls)->addData (arg1); } @@ -207,7 +207,7 @@ static void _call_f_addExtraNamespaceDeclaration_4354 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamNamespaceDeclaration &arg1 = args.read (heap); + const QXmlStreamNamespaceDeclaration &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamReader *)cls)->addExtraNamespaceDeclaration (arg1); } @@ -227,7 +227,7 @@ static void _call_f_addExtraNamespaceDeclarations_5184 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamReader *)cls)->addExtraNamespaceDeclarations (arg1); } @@ -818,7 +818,7 @@ static void _call_f_raiseError_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamReader *)cls)->raiseError (arg1); } @@ -838,7 +838,7 @@ static void _call_f_readElementText_4601 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QXmlStreamReader::ErrorOnUnexpectedElement)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QXmlStreamReader::ErrorOnUnexpectedElement), heap); ret.write ((QString)((QXmlStreamReader *)cls)->readElementText (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -887,7 +887,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamReader *)cls)->setDevice (arg1); } @@ -907,7 +907,7 @@ static void _call_f_setEntityResolver_3115 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlStreamEntityResolver *arg1 = args.read (heap); + QXmlStreamEntityResolver *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamReader *)cls)->setEntityResolver (arg1); } @@ -927,7 +927,7 @@ static void _call_f_setNamespaceProcessing_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamReader *)cls)->setNamespaceProcessing (arg1); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamStringRef.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamStringRef.cc index 9a81da21d..cd042ad96 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamStringRef.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamStringRef.cc @@ -65,7 +65,7 @@ static void _call_ctor_QXmlStreamStringRef_2310 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamStringRef (arg1)); } @@ -84,7 +84,7 @@ static void _call_ctor_QXmlStreamStringRef_2025 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamStringRef (arg1)); } diff --git a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamWriter.cc b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamWriter.cc index d107d0103..4a867f1b0 100644 --- a/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamWriter.cc +++ b/src/gsiqt/qt5/QtCore/gsiDeclQXmlStreamWriter.cc @@ -70,7 +70,7 @@ static void _call_ctor_QXmlStreamWriter_1447 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamWriter (arg1)); } @@ -89,7 +89,7 @@ static void _call_ctor_QXmlStreamWriter_1618 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray *arg1 = args.read (heap); + QByteArray *arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamWriter (arg1)); } @@ -108,7 +108,7 @@ static void _call_ctor_QXmlStreamWriter_1334 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString *arg1 = args.read (heap); + QString *arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlStreamWriter (arg1)); } @@ -202,7 +202,7 @@ static void _call_f_setAutoFormatting_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->setAutoFormatting (arg1); } @@ -222,7 +222,7 @@ static void _call_f_setAutoFormattingIndent_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->setAutoFormattingIndent (arg1); } @@ -242,7 +242,7 @@ static void _call_f_setCodec_1602 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextCodec *arg1 = args.read (heap); + QTextCodec *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->setCodec (arg1); } @@ -262,7 +262,7 @@ static void _call_f_setCodec_1731 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->setCodec (arg1); } @@ -282,7 +282,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->setDevice (arg1); } @@ -304,8 +304,8 @@ static void _call_f_writeAttribute_3942 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeAttribute (arg1, arg2); } @@ -329,9 +329,9 @@ static void _call_f_writeAttribute_5859 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeAttribute (arg1, arg2, arg3); } @@ -351,7 +351,7 @@ static void _call_f_writeAttribute_3267 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamAttribute &arg1 = args.read (heap); + const QXmlStreamAttribute &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeAttribute (arg1); } @@ -371,7 +371,7 @@ static void _call_f_writeAttributes_3382 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamAttributes &arg1 = args.read (heap); + const QXmlStreamAttributes &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeAttributes (arg1); } @@ -391,7 +391,7 @@ static void _call_f_writeCDATA_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeCDATA (arg1); } @@ -411,7 +411,7 @@ static void _call_f_writeCharacters_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeCharacters (arg1); } @@ -431,7 +431,7 @@ static void _call_f_writeComment_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeComment (arg1); } @@ -451,7 +451,7 @@ static void _call_f_writeCurrentToken_2914 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlStreamReader &arg1 = args.read (heap); + const QXmlStreamReader &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeCurrentToken (arg1); } @@ -471,7 +471,7 @@ static void _call_f_writeDTD_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeDTD (arg1); } @@ -491,7 +491,7 @@ static void _call_f_writeDefaultNamespace_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeDefaultNamespace (arg1); } @@ -511,7 +511,7 @@ static void _call_f_writeEmptyElement_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeEmptyElement (arg1); } @@ -533,8 +533,8 @@ static void _call_f_writeEmptyElement_3942 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeEmptyElement (arg1, arg2); } @@ -586,7 +586,7 @@ static void _call_f_writeEntityReference_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeEntityReference (arg1); } @@ -608,8 +608,8 @@ static void _call_f_writeNamespace_3942 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeNamespace (arg1, arg2); } @@ -631,8 +631,8 @@ static void _call_f_writeProcessingInstruction_3942 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeProcessingInstruction (arg1, arg2); } @@ -668,7 +668,7 @@ static void _call_f_writeStartDocument_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeStartDocument (arg1); } @@ -690,8 +690,8 @@ static void _call_f_writeStartDocument_2781 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeStartDocument (arg1, arg2); } @@ -711,7 +711,7 @@ static void _call_f_writeStartElement_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeStartElement (arg1); } @@ -733,8 +733,8 @@ static void _call_f_writeStartElement_3942 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeStartElement (arg1, arg2); } @@ -756,8 +756,8 @@ static void _call_f_writeTextElement_3942 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeTextElement (arg1, arg2); } @@ -781,9 +781,9 @@ static void _call_f_writeTextElement_5859 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlStreamWriter *)cls)->writeTextElement (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionFactory.cc b/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionFactory.cc index 28d8318c9..62b17f0e1 100644 --- a/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionFactory.cc +++ b/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionFactory.cc @@ -53,8 +53,8 @@ static void _call_f_extension_c3219 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QObject *)((QAbstractExtensionFactory *)cls)->extension (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionManager.cc b/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionManager.cc index fd9fef2ab..bd865f5e2 100644 --- a/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionManager.cc +++ b/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractExtensionManager.cc @@ -54,8 +54,8 @@ static void _call_f_extension_c3219 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QObject *)((QAbstractExtensionManager *)cls)->extension (arg1, arg2)); } @@ -76,8 +76,8 @@ static void _call_f_registerExtensions_5125 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractExtensionFactory *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QAbstractExtensionFactory *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractExtensionManager *)cls)->registerExtensions (arg1, arg2); } @@ -99,8 +99,8 @@ static void _call_f_unregisterExtensions_5125 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractExtensionFactory *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QAbstractExtensionFactory *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractExtensionManager *)cls)->unregisterExtensions (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractFormBuilder.cc b/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractFormBuilder.cc index 2f29276bb..8bf464ee6 100644 --- a/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractFormBuilder.cc +++ b/src/gsiqt/qt5/QtDesigner/gsiDeclQAbstractFormBuilder.cc @@ -85,8 +85,8 @@ static void _call_f_load_2654 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QWidget *)((QAbstractFormBuilder *)cls)->load (arg1, arg2)); } @@ -107,8 +107,8 @@ static void _call_f_save_2654 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractFormBuilder *)cls)->save (arg1, arg2); } @@ -128,7 +128,7 @@ static void _call_f_setWorkingDirectory_1681 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractFormBuilder *)cls)->setWorkingDirectory (arg1); } diff --git a/src/gsiqt/qt5/QtDesigner/gsiDeclQFormBuilder.cc b/src/gsiqt/qt5/QtDesigner/gsiDeclQFormBuilder.cc index 059f3d742..d978b324d 100644 --- a/src/gsiqt/qt5/QtDesigner/gsiDeclQFormBuilder.cc +++ b/src/gsiqt/qt5/QtDesigner/gsiDeclQFormBuilder.cc @@ -68,7 +68,7 @@ static void _call_f_addPluginPath_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormBuilder *)cls)->addPluginPath (arg1); } @@ -119,7 +119,7 @@ static void _call_f_setPluginPath_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormBuilder *)cls)->setPluginPath (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout.cc index c0b6c2810..549e944ed 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAbstractTextDocumentLayout.cc @@ -81,7 +81,7 @@ static void _call_f_anchorAt_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAbstractTextDocumentLayout *)cls)->anchorAt (arg1)); } @@ -100,7 +100,7 @@ static void _call_f_blockBoundingRect_c2306 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QAbstractTextDocumentLayout *)cls)->blockBoundingRect (arg1)); } @@ -151,8 +151,8 @@ static void _call_f_draw_6787 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QAbstractTextDocumentLayout::PaintContext &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QAbstractTextDocumentLayout::PaintContext &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout *)cls)->draw (arg1, arg2); } @@ -172,7 +172,7 @@ static void _call_f_frameBoundingRect_c1615 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextFrame *arg1 = args.read (heap); + QTextFrame *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QAbstractTextDocumentLayout *)cls)->frameBoundingRect (arg1)); } @@ -191,7 +191,7 @@ static void _call_f_handlerForObject_c767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextObjectInterface *)((QAbstractTextDocumentLayout *)cls)->handlerForObject (arg1)); } @@ -212,8 +212,8 @@ static void _call_f_hitTest_c4147 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QAbstractTextDocumentLayout *)cls)->hitTest (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -264,8 +264,8 @@ static void _call_f_registerHandler_1961 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout *)cls)->registerHandler (arg1, arg2); } @@ -285,7 +285,7 @@ static void _call_f_setPaintDevice_1803 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout *)cls)->setPaintDevice (arg1); } @@ -307,8 +307,8 @@ static void _call_f_unregisterHandler_1961 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + int arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractTextDocumentLayout *)cls)->unregisterHandler (arg1, arg2); } @@ -332,9 +332,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractTextDocumentLayout::tr (arg1, arg2, arg3)); } @@ -357,9 +357,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractTextDocumentLayout::trUtf8 (arg1, arg2, arg3)); } @@ -758,7 +758,7 @@ static void _call_ctor_QAbstractTextDocumentLayout_Adaptor_1955 (const qt_gsi::G { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QAbstractTextDocumentLayout_Adaptor (arg1)); } @@ -847,7 +847,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractTextDocumentLayout_Adaptor *)cls)->emitter_QAbstractTextDocumentLayout_destroyed_1302 (arg1); } @@ -938,7 +938,7 @@ static void _call_emitter_documentSizeChanged_1875 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); ((QAbstractTextDocumentLayout_Adaptor *)cls)->emitter_QAbstractTextDocumentLayout_documentSizeChanged_1875 (arg1); } @@ -1068,7 +1068,7 @@ static void _call_fp_format_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCharFormat)((QAbstractTextDocumentLayout_Adaptor *)cls)->fp_QAbstractTextDocumentLayout_format_767 (arg1)); } @@ -1086,7 +1086,7 @@ static void _call_fp_formatIndex_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractTextDocumentLayout_Adaptor *)cls)->fp_QAbstractTextDocumentLayout_formatIndex_767 (arg1)); } @@ -1153,7 +1153,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractTextDocumentLayout_Adaptor *)cls)->fp_QAbstractTextDocumentLayout_isSignalConnected_c2394 (arg1)); } @@ -1190,7 +1190,7 @@ static void _call_emitter_pageCountChanged_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QAbstractTextDocumentLayout_Adaptor *)cls)->emitter_QAbstractTextDocumentLayout_pageCountChanged_767 (arg1); } @@ -1238,7 +1238,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractTextDocumentLayout_Adaptor *)cls)->fp_QAbstractTextDocumentLayout_receivers_c1731 (arg1)); } @@ -1338,7 +1338,7 @@ static void _call_emitter_update_1862 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args ? args.read (heap) : (const QRectF &)(QRectF(0., 0., 1000000000., 1000000000.)); + const QRectF &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(0., 0., 1000000000., 1000000000.), heap); ((QAbstractTextDocumentLayout_Adaptor *)cls)->emitter_QAbstractTextDocumentLayout_update_1862 (arg1); } @@ -1356,7 +1356,7 @@ static void _call_emitter_updateBlock_2306 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ((QAbstractTextDocumentLayout_Adaptor *)cls)->emitter_QAbstractTextDocumentLayout_updateBlock_2306 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessible.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessible.cc index d45c51c4c..8cb412076 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessible.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessible.cc @@ -54,7 +54,7 @@ static void _call_f_accessibleInterface_1772 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((QAccessibleInterface *)QAccessible::accessibleInterface (arg1)); } @@ -89,7 +89,7 @@ static void _call_f_deleteAccessibleInterface_1772 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QAccessible::deleteAccessibleInterface (arg1); } @@ -109,7 +109,7 @@ static void _call_f_installActivationObserver_3707 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessible::ActivationObserver *arg1 = args.read (heap); + QAccessible::ActivationObserver *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QAccessible::installActivationObserver (arg1); } @@ -146,8 +146,8 @@ static void _call_f_qAccessibleTextBoundaryHelper_5659 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QPair)QAccessible::qAccessibleTextBoundaryHelper (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -166,7 +166,7 @@ static void _call_f_queryAccessibleInterface_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAccessibleInterface *)QAccessible::queryAccessibleInterface (arg1)); } @@ -185,7 +185,7 @@ static void _call_f_registerAccessibleInterface_2622 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessibleInterface *arg1 = args.read (heap); + QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); ret.write ((unsigned int)QAccessible::registerAccessibleInterface (arg1)); } @@ -204,7 +204,7 @@ static void _call_f_removeActivationObserver_3707 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessible::ActivationObserver *arg1 = args.read (heap); + QAccessible::ActivationObserver *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QAccessible::removeActivationObserver (arg1); } @@ -224,7 +224,7 @@ static void _call_f_setActive_864 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QAccessible::setActive (arg1); } @@ -244,7 +244,7 @@ static void _call_f_setRootObject_1302 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QAccessible::setRootObject (arg1); } @@ -264,7 +264,7 @@ static void _call_f_uniqueId_2622 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessibleInterface *arg1 = args.read (heap); + QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); ret.write ((unsigned int)QAccessible::uniqueId (arg1)); } @@ -283,7 +283,7 @@ static void _call_f_updateAccessibility_2223 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessibleEvent *arg1 = args.read (heap); + QAccessibleEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QAccessible::updateAccessibility (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleActionInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleActionInterface.cc index 4fe124efe..b1277748b 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleActionInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleActionInterface.cc @@ -65,7 +65,7 @@ static void _call_f_doAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleActionInterface *)cls)->doAction (arg1); } @@ -85,7 +85,7 @@ static void _call_f_keyBindingsForAction_c2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QAccessibleActionInterface *)cls)->keyBindingsForAction (arg1)); } @@ -104,7 +104,7 @@ static void _call_f_localizedActionDescription_c2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleActionInterface *)cls)->localizedActionDescription (arg1)); } @@ -123,7 +123,7 @@ static void _call_f_localizedActionName_c2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleActionInterface *)cls)->localizedActionName (arg1)); } @@ -326,9 +326,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAccessibleActionInterface::tr (arg1, arg2, arg3)); } @@ -351,9 +351,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAccessibleActionInterface::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEditableTextInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEditableTextInterface.cc index f01c51a03..100eeac8b 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEditableTextInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEditableTextInterface.cc @@ -52,8 +52,8 @@ static void _call_f_deleteText_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleEditableTextInterface *)cls)->deleteText (arg1, arg2); } @@ -75,8 +75,8 @@ static void _call_f_insertText_2684 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleEditableTextInterface *)cls)->insertText (arg1, arg2); } @@ -100,9 +100,9 @@ static void _call_f_replaceText_3343 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleEditableTextInterface *)cls)->replaceText (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEvent.cc index af1571430..86216f165 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleEvent.cc @@ -54,8 +54,8 @@ static void _call_ctor_QAccessibleEvent_3347 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QAccessibleEvent (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -76,8 +76,8 @@ static void _call_ctor_QAccessibleEvent_4667 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessibleInterface *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QAccessibleEvent (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -141,7 +141,7 @@ static void _call_f_setChild_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleEvent *)cls)->setChild (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleInterface.cc index a8b163731..4ab8127b8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleInterface.cc @@ -70,7 +70,7 @@ static void _call_f_child_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QAccessibleInterface *)((QAccessibleInterface *)cls)->child (arg1)); } @@ -91,8 +91,8 @@ static void _call_f_childAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QAccessibleInterface *)((QAccessibleInterface *)cls)->childAt (arg1, arg2)); } @@ -156,7 +156,7 @@ static void _call_f_indexOfChild_c3317 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAccessibleInterface *arg1 = args.read (heap); + const QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleInterface *)cls)->indexOfChild (arg1)); } @@ -175,7 +175,7 @@ static void _call_f_interface_cast_2970 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((void *)((QAccessibleInterface *)cls)->interface_cast (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -254,7 +254,7 @@ static void _call_f_relations_c3543 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QAccessible::AllRelations); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QAccessible::AllRelations, heap); ret.write > > ((QVector >)((QAccessibleInterface *)cls)->relations (arg1)); } @@ -290,8 +290,8 @@ static void _call_f_setText_3977 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleInterface *)cls)->setText (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -341,7 +341,7 @@ static void _call_f_text_c2060 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QAccessibleInterface *)cls)->text (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -362,8 +362,8 @@ static void _call_f_virtual_hook_1715 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - void *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleInterface *)cls)->virtual_hook (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleObject.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleObject.cc index 25b9f94ec..cdd720641 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleObject.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleObject.cc @@ -58,8 +58,8 @@ static void _call_f_childAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QAccessibleInterface *)((QAccessibleObject *)cls)->childAt (arg1, arg2)); } @@ -125,8 +125,8 @@ static void _call_f_setText_3977 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleObject *)cls)->setText (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleStateChangeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleStateChangeEvent.cc index 2f21d4185..e62f6b256 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleStateChangeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleStateChangeEvent.cc @@ -126,8 +126,8 @@ static void _call_ctor_QAccessibleStateChangeEvent_Adaptor_3346 (const qt_gsi::G { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QAccessible::State arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QAccessible::State arg2 = gsi::arg_reader() (args, heap); ret.write (new QAccessibleStateChangeEvent_Adaptor (arg1, arg2)); } @@ -147,8 +147,8 @@ static void _call_ctor_QAccessibleStateChangeEvent_Adaptor_4666 (const qt_gsi::G { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessibleInterface *arg1 = args.read (heap); - QAccessible::State arg2 = args.read (heap); + QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); + QAccessible::State arg2 = gsi::arg_reader() (args, heap); ret.write (new QAccessibleStateChangeEvent_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableInterface.cc index 0bb650b36..3e7878eec 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableInterface.cc @@ -69,8 +69,8 @@ static void _call_f_cellAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QAccessibleInterface *)((QAccessibleTableInterface *)cls)->cellAt (arg1, arg2)); } @@ -104,7 +104,7 @@ static void _call_f_columnDescription_c767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTableInterface *)cls)->columnDescription (arg1)); } @@ -123,7 +123,7 @@ static void _call_f_isColumnSelected_c767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface *)cls)->isColumnSelected (arg1)); } @@ -142,7 +142,7 @@ static void _call_f_isRowSelected_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface *)cls)->isRowSelected (arg1)); } @@ -161,7 +161,7 @@ static void _call_f_modelChange_3790 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessibleTableModelChangeEvent *arg1 = args.read (heap); + QAccessibleTableModelChangeEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTableInterface *)cls)->modelChange (arg1); } @@ -196,7 +196,7 @@ static void _call_f_rowDescription_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTableInterface *)cls)->rowDescription (arg1)); } @@ -215,7 +215,7 @@ static void _call_f_selectColumn_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface *)cls)->selectColumn (arg1)); } @@ -234,7 +234,7 @@ static void _call_f_selectRow_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface *)cls)->selectRow (arg1)); } @@ -358,7 +358,7 @@ static void _call_f_unselectColumn_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface *)cls)->unselectColumn (arg1)); } @@ -377,7 +377,7 @@ static void _call_f_unselectRow_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAccessibleTableInterface *)cls)->unselectRow (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableModelChangeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableModelChangeEvent.cc index 03dbb7bd4..1744e5d90 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableModelChangeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTableModelChangeEvent.cc @@ -127,7 +127,7 @@ static void _call_f_setFirstColumn_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTableModelChangeEvent *)cls)->setFirstColumn (arg1); } @@ -147,7 +147,7 @@ static void _call_f_setFirstRow_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTableModelChangeEvent *)cls)->setFirstRow (arg1); } @@ -167,7 +167,7 @@ static void _call_f_setLastColumn_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTableModelChangeEvent *)cls)->setLastColumn (arg1); } @@ -187,7 +187,7 @@ static void _call_f_setLastRow_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTableModelChangeEvent *)cls)->setLastRow (arg1); } @@ -207,7 +207,7 @@ static void _call_f_setModelChangeType_5217 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTableModelChangeEvent *)cls)->setModelChangeType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -295,8 +295,8 @@ static void _call_ctor_QAccessibleTableModelChangeEvent_Adaptor_6411 (const qt_g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QAccessibleTableModelChangeEvent_Adaptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -316,8 +316,8 @@ static void _call_ctor_QAccessibleTableModelChangeEvent_Adaptor_7731 (const qt_g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessibleInterface *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QAccessibleTableModelChangeEvent_Adaptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextCursorEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextCursorEvent.cc index a9b3d7665..5c3ef9508 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextCursorEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextCursorEvent.cc @@ -67,7 +67,7 @@ static void _call_f_setCursorPosition_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextCursorEvent *)cls)->setCursorPosition (arg1); } @@ -147,8 +147,8 @@ static void _call_ctor_QAccessibleTextCursorEvent_Adaptor_1961 (const qt_gsi::Ge { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QAccessibleTextCursorEvent_Adaptor (arg1, arg2)); } @@ -168,8 +168,8 @@ static void _call_ctor_QAccessibleTextCursorEvent_Adaptor_3281 (const qt_gsi::Ge { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessibleInterface *arg1 = args.read (heap); - int arg2 = args.read (heap); + QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QAccessibleTextCursorEvent_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInsertEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInsertEvent.cc index 66b7c40e0..7175a8c05 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInsertEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInsertEvent.cc @@ -144,9 +144,9 @@ static void _call_ctor_QAccessibleTextInsertEvent_Adaptor_3878 (const qt_gsi::Ge { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write (new QAccessibleTextInsertEvent_Adaptor (arg1, arg2, arg3)); } @@ -168,9 +168,9 @@ static void _call_ctor_QAccessibleTextInsertEvent_Adaptor_5198 (const qt_gsi::Ge { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessibleInterface *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write (new QAccessibleTextInsertEvent_Adaptor (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInterface.cc index eb141c21d..1d55c6437 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextInterface.cc @@ -54,8 +54,8 @@ static void _call_f_addSelection_1426 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface *)cls)->addSelection (arg1, arg2); } @@ -79,9 +79,9 @@ static void _call_f_attributes_c2457 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTextInterface *)cls)->attributes (arg1, arg2, arg3)); } @@ -115,7 +115,7 @@ static void _call_f_characterRect_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QAccessibleTextInterface *)cls)->characterRect (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_offsetAtPoint_c1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleTextInterface *)cls)->offsetAtPoint (arg1)); } @@ -168,7 +168,7 @@ static void _call_f_removeSelection_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface *)cls)->removeSelection (arg1); } @@ -190,8 +190,8 @@ static void _call_f_scrollToSubstring_1426 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface *)cls)->scrollToSubstring (arg1, arg2); } @@ -215,9 +215,9 @@ static void _call_f_selection_c2457 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface *)cls)->selection (arg1, arg2, arg3); } @@ -252,7 +252,7 @@ static void _call_f_setCursorPosition_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface *)cls)->setCursorPosition (arg1); } @@ -276,9 +276,9 @@ static void _call_f_setSelection_2085 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextInterface *)cls)->setSelection (arg1, arg2, arg3); } @@ -300,8 +300,8 @@ static void _call_f_text_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTextInterface *)cls)->text (arg1, arg2)); } @@ -326,10 +326,10 @@ static void _call_f_textAfterOffset_c5663 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTextInterface *)cls)->textAfterOffset (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -354,10 +354,10 @@ static void _call_f_textAtOffset_c5663 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTextInterface *)cls)->textAtOffset (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -382,10 +382,10 @@ static void _call_f_textBeforeOffset_c5663 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAccessibleTextInterface *)cls)->textBeforeOffset (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextRemoveEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextRemoveEvent.cc index e5da570a9..01ae8be3f 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextRemoveEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextRemoveEvent.cc @@ -144,9 +144,9 @@ static void _call_ctor_QAccessibleTextRemoveEvent_Adaptor_3878 (const qt_gsi::Ge { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write (new QAccessibleTextRemoveEvent_Adaptor (arg1, arg2, arg3)); } @@ -168,9 +168,9 @@ static void _call_ctor_QAccessibleTextRemoveEvent_Adaptor_5198 (const qt_gsi::Ge { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessibleInterface *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write (new QAccessibleTextRemoveEvent_Adaptor (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextSelectionEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextSelectionEvent.cc index 1659ecdeb..a04fde0fd 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextSelectionEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextSelectionEvent.cc @@ -84,8 +84,8 @@ static void _call_f_setSelection_1426 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleTextSelectionEvent *)cls)->setSelection (arg1, arg2); } @@ -168,9 +168,9 @@ static void _call_ctor_QAccessibleTextSelectionEvent_Adaptor_2620 (const qt_gsi: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write (new QAccessibleTextSelectionEvent_Adaptor (arg1, arg2, arg3)); } @@ -192,9 +192,9 @@ static void _call_ctor_QAccessibleTextSelectionEvent_Adaptor_3940 (const qt_gsi: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessibleInterface *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write (new QAccessibleTextSelectionEvent_Adaptor (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextUpdateEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextUpdateEvent.cc index ea99e620b..3eb569039 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextUpdateEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleTextUpdateEvent.cc @@ -162,10 +162,10 @@ static void _call_ctor_QAccessibleTextUpdateEvent_Adaptor_5795 (const qt_gsi::Ge { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write (new QAccessibleTextUpdateEvent_Adaptor (arg1, arg2, arg3, arg4)); } @@ -189,10 +189,10 @@ static void _call_ctor_QAccessibleTextUpdateEvent_Adaptor_7115 (const qt_gsi::Ge { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessibleInterface *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write (new QAccessibleTextUpdateEvent_Adaptor (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueChangeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueChangeEvent.cc index 0a339aca3..f61084ded 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueChangeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueChangeEvent.cc @@ -52,7 +52,7 @@ static void _call_f_setValue_2119 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleValueChangeEvent *)cls)->setValue (arg1); } @@ -147,8 +147,8 @@ static void _call_ctor_QAccessibleValueChangeEvent_Adaptor_3313 (const qt_gsi::G { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write (new QAccessibleValueChangeEvent_Adaptor (arg1, arg2)); } @@ -168,8 +168,8 @@ static void _call_ctor_QAccessibleValueChangeEvent_Adaptor_4633 (const qt_gsi::G { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAccessibleInterface *arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write (new QAccessibleValueChangeEvent_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueInterface.cc index 513d9bf85..91dd7435c 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessibleValueInterface.cc @@ -110,7 +110,7 @@ static void _call_f_setCurrentValue_2119 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleValueInterface *)cls)->setCurrentValue (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_ActivationObserver.cc b/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_ActivationObserver.cc index 553841fbc..8a67a3a6f 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_ActivationObserver.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQAccessible_ActivationObserver.cc @@ -50,7 +50,7 @@ static void _call_f_accessibilityActiveChanged_864 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessible::ActivationObserver *)cls)->accessibilityActiveChanged (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQActionEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQActionEvent.cc index 1350a9225..4ab4f492f 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQActionEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQActionEvent.cc @@ -129,9 +129,9 @@ static void _call_ctor_QActionEvent_Adaptor_3169 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QAction *arg2 = args.read (heap); - QAction *arg3 = args ? args.read (heap) : (QAction *)(0); + int arg1 = gsi::arg_reader() (args, heap); + QAction *arg2 = gsi::arg_reader() (args, heap); + QAction *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QActionEvent_Adaptor (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQApplicationStateChangeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQApplicationStateChangeEvent.cc index 4606a3276..847abf2ca 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQApplicationStateChangeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQApplicationStateChangeEvent.cc @@ -51,7 +51,7 @@ static void _call_ctor_QApplicationStateChangeEvent_2402 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QApplicationStateChangeEvent (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQBackingStore.cc b/src/gsiqt/qt5/QtGui/gsiDeclQBackingStore.cc index 8beeaeac5..728e4b66a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQBackingStore.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQBackingStore.cc @@ -50,7 +50,7 @@ static void _call_ctor_QBackingStore_1335 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWindow *arg1 = args.read (heap); + QWindow *arg1 = gsi::arg_reader() (args, heap); ret.write (new QBackingStore (arg1)); } @@ -69,7 +69,7 @@ static void _call_f_beginPaint_2006 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBackingStore *)cls)->beginPaint (arg1); } @@ -109,9 +109,9 @@ static void _call_f_flush_5041 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); - QWindow *arg2 = args ? args.read (heap) : (QWindow *)(0); - const QPoint &arg3 = args ? args.read (heap) : (const QPoint &)(QPoint()); + const QRegion &arg1 = gsi::arg_reader() (args, heap); + QWindow *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QPoint &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPoint(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBackingStore *)cls)->flush (arg1, arg2, arg3); } @@ -161,7 +161,7 @@ static void _call_f_resize_1805 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBackingStore *)cls)->resize (arg1); } @@ -185,9 +185,9 @@ static void _call_f_scroll_3324 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBackingStore *)cls)->scroll (arg1, arg2, arg3)); } @@ -206,7 +206,7 @@ static void _call_f_setStaticContents_2006 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBackingStore *)cls)->setStaticContents (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc b/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc index 3af2ace4a..bcf61f5e0 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQBitmap.cc @@ -81,7 +81,7 @@ static void _call_f_operator_eq__2017 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); ret.write ((QBitmap &)((QBitmap *)cls)->operator= (arg1)); } @@ -100,7 +100,7 @@ static void _call_f_swap_1304 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QBitmap &arg1 = args.read (heap); + QBitmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBitmap *)cls)->swap (arg1); } @@ -120,7 +120,7 @@ static void _call_f_transformed_c2023 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write ((QBitmap)((QBitmap *)cls)->transformed (arg1)); } @@ -139,7 +139,7 @@ static void _call_f_transformed_c2350 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((QBitmap)((QBitmap *)cls)->transformed (arg1)); } @@ -162,9 +162,9 @@ static void _call_f_fromData_6058 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const unsigned char *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QImage::Format_MonoLSB)); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const unsigned char *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QImage::Format_MonoLSB), heap); ret.write ((QBitmap)QBitmap::fromData (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -185,8 +185,8 @@ static void _call_f_fromImage_5137 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QImage &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((QBitmap)QBitmap::fromImage (arg1, arg2)); } @@ -375,7 +375,7 @@ static void _call_ctor_QBitmap_Adaptor_2017 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); ret.write (new QBitmap_Adaptor (arg1)); } @@ -395,8 +395,8 @@ static void _call_ctor_QBitmap_Adaptor_1426 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QBitmap_Adaptor (arg1, arg2)); } @@ -414,7 +414,7 @@ static void _call_ctor_QBitmap_Adaptor_1805 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ret.write (new QBitmap_Adaptor (arg1)); } @@ -434,8 +434,8 @@ static void _call_ctor_QBitmap_Adaptor_3648 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QBitmap_Adaptor (arg1, arg2)); } @@ -455,8 +455,8 @@ static void _call_fp_fromImageInPlace_4442 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QImage &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + QImage &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((QPixmap)QBitmap_Adaptor::fp_QBitmap_fromImageInPlace_4442 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQBrush.cc b/src/gsiqt/qt5/QtGui/gsiDeclQBrush.cc index 0c5610989..ef3771d25 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQBrush.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQBrush.cc @@ -71,7 +71,7 @@ static void _call_ctor_QBrush_1794 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QBrush (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -92,8 +92,8 @@ static void _call_ctor_QBrush_3591 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::SolidPattern)); + const QColor &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::SolidPattern), heap); ret.write (new QBrush (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -114,8 +114,8 @@ static void _call_ctor_QBrush_3539 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::SolidPattern)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::SolidPattern), heap); ret.write (new QBrush (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -136,8 +136,8 @@ static void _call_ctor_QBrush_3814 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); ret.write (new QBrush (arg1, arg2)); } @@ -158,8 +158,8 @@ static void _call_ctor_QBrush_3762 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); ret.write (new QBrush (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -178,7 +178,7 @@ static void _call_ctor_QBrush_2017 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); ret.write (new QBrush (arg1)); } @@ -197,7 +197,7 @@ static void _call_ctor_QBrush_1877 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write (new QBrush (arg1)); } @@ -216,7 +216,7 @@ static void _call_ctor_QBrush_1910 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); ret.write (new QBrush (arg1)); } @@ -235,7 +235,7 @@ static void _call_ctor_QBrush_2208 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGradient &arg1 = args.read (heap); + const QGradient &arg1 = gsi::arg_reader() (args, heap); ret.write (new QBrush (arg1)); } @@ -329,7 +329,7 @@ static void _call_f_operator_excl__eq__c1910 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBrush *)cls)->operator!= (arg1)); } @@ -348,7 +348,7 @@ static void _call_f_operator_eq__1910 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); ret.write ((QBrush &)((QBrush *)cls)->operator= (arg1)); } @@ -367,7 +367,7 @@ static void _call_f_operator_eq__eq__c1910 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBrush *)cls)->operator== (arg1)); } @@ -386,7 +386,7 @@ static void _call_f_setColor_1905 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBrush *)cls)->setColor (arg1); } @@ -406,7 +406,7 @@ static void _call_f_setColor_1853 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBrush *)cls)->setColor (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -426,7 +426,7 @@ static void _call_f_setMatrix_2023 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBrush *)cls)->setMatrix (arg1); } @@ -446,7 +446,7 @@ static void _call_f_setStyle_1794 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBrush *)cls)->setStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -466,7 +466,7 @@ static void _call_f_setTexture_2017 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBrush *)cls)->setTexture (arg1); } @@ -486,7 +486,7 @@ static void _call_f_setTextureImage_1877 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBrush *)cls)->setTextureImage (arg1); } @@ -506,7 +506,7 @@ static void _call_f_setTransform_2350 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBrush *)cls)->setTransform (arg1); } @@ -541,7 +541,7 @@ static void _call_f_swap_1215 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QBrush &arg1 = args.read (heap); + QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBrush *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQClipboard.cc b/src/gsiqt/qt5/QtGui/gsiDeclQClipboard.cc index cd3c1c236..16d41e470 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQClipboard.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQClipboard.cc @@ -70,7 +70,7 @@ static void _call_f_clear_1934 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QClipboard *)cls)->clear (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -90,7 +90,7 @@ static void _call_f_image_c1934 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); ret.write ((QImage)((QClipboard *)cls)->image (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -109,7 +109,7 @@ static void _call_f_mimeData_c1934 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); ret.write ((const QMimeData *)((QClipboard *)cls)->mimeData (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -173,7 +173,7 @@ static void _call_f_pixmap_c1934 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); ret.write ((QPixmap)((QClipboard *)cls)->pixmap (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -194,8 +194,8 @@ static void _call_f_setImage_3703 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const QImage &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QClipboard *)cls)->setImage (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -217,8 +217,8 @@ static void _call_f_setMimeData_3299 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QClipboard *)cls)->setMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -240,8 +240,8 @@ static void _call_f_setPixmap_3843 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QClipboard *)cls)->setPixmap (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -263,8 +263,8 @@ static void _call_f_setText_3851 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QClipboard *)cls)->setText (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -314,7 +314,7 @@ static void _call_f_text_c1934 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); ret.write ((QString)((QClipboard *)cls)->text (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -335,8 +335,8 @@ static void _call_f_text_c3156 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard)); + QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QClipboard::Clipboard), heap); ret.write ((QString)((QClipboard *)cls)->text (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -359,9 +359,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QClipboard::tr (arg1, arg2, arg3)); } @@ -384,9 +384,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QClipboard::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQColor.cc b/src/gsiqt/qt5/QtGui/gsiDeclQColor.cc index c40ca2794..ef108bf7e 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQColor.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQColor.cc @@ -65,7 +65,7 @@ static void _call_ctor_QColor_1853 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QColor (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -90,10 +90,10 @@ static void _call_ctor_QColor_2744 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); ret.write (new QColor (arg1, arg2, arg3, arg4)); } @@ -112,7 +112,7 @@ static void _call_ctor_QColor_1772 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write (new QColor (arg1)); } @@ -131,7 +131,7 @@ static void _call_ctor_QColor_1731 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write (new QColor (arg1)); } @@ -150,7 +150,7 @@ static void _call_ctor_QColor_1905 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ret.write (new QColor (arg1)); } @@ -169,7 +169,7 @@ static void _call_ctor_QColor_1539 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QColor (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -278,7 +278,7 @@ static void _call_f_convertTo_c1539 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QColor)((QColor *)cls)->convertTo (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -327,7 +327,7 @@ static void _call_f_dark_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(200); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (200, heap); ret.write ((QColor)((QColor *)cls)->dark (arg1)); } @@ -346,7 +346,7 @@ static void _call_f_darker_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(200); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (200, heap); ret.write ((QColor)((QColor *)cls)->darker (arg1)); } @@ -373,11 +373,11 @@ static void _call_f_getCmyk_4333 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); - int *arg5 = args ? args.read (heap) : (int *)(0); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); + int *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getCmyk (arg1, arg2, arg3, arg4, arg5); } @@ -405,11 +405,11 @@ static void _call_f_getCmykF_5853 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); - double *arg5 = args ? args.read (heap) : (double *)(0); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); + double *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getCmykF (arg1, arg2, arg3, arg4, arg5); } @@ -435,10 +435,10 @@ static void _call_f_getHsl_c3488 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args ? args.read (heap) : (int *)(0); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getHsl (arg1, arg2, arg3, arg4); } @@ -464,10 +464,10 @@ static void _call_f_getHslF_c4704 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args ? args.read (heap) : (double *)(0); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getHslF (arg1, arg2, arg3, arg4); } @@ -493,10 +493,10 @@ static void _call_f_getHsv_c3488 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args ? args.read (heap) : (int *)(0); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getHsv (arg1, arg2, arg3, arg4); } @@ -522,10 +522,10 @@ static void _call_f_getHsvF_c4704 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args ? args.read (heap) : (double *)(0); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getHsvF (arg1, arg2, arg3, arg4); } @@ -551,10 +551,10 @@ static void _call_f_getRgb_c3488 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args ? args.read (heap) : (int *)(0); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getRgb (arg1, arg2, arg3, arg4); } @@ -580,10 +580,10 @@ static void _call_f_getRgbF_c4704 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args ? args.read (heap) : (double *)(0); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->getRgbF (arg1, arg2, arg3, arg4); } @@ -798,7 +798,7 @@ static void _call_f_light_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(150); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (150, heap); ret.write ((QColor)((QColor *)cls)->light (arg1)); } @@ -817,7 +817,7 @@ static void _call_f_lighter_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(150); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (150, heap); ret.write ((QColor)((QColor *)cls)->lighter (arg1)); } @@ -911,7 +911,7 @@ static void _call_f_name_c2146 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QColor *)cls)->name (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -930,7 +930,7 @@ static void _call_f_operator_excl__eq__c1905 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColor *)cls)->operator!= (arg1)); } @@ -949,7 +949,7 @@ static void _call_f_operator_eq__1905 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor &)((QColor *)cls)->operator= (arg1)); } @@ -968,7 +968,7 @@ static void _call_f_operator_eq__1853 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QColor &)((QColor *)cls)->operator= (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -987,7 +987,7 @@ static void _call_f_operator_eq__eq__c1905 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColor *)cls)->operator== (arg1)); } @@ -1096,7 +1096,7 @@ static void _call_f_setAlpha_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setAlpha (arg1); } @@ -1116,7 +1116,7 @@ static void _call_f_setAlphaF_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setAlphaF (arg1); } @@ -1136,7 +1136,7 @@ static void _call_f_setBlue_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setBlue (arg1); } @@ -1156,7 +1156,7 @@ static void _call_f_setBlueF_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setBlueF (arg1); } @@ -1184,11 +1184,11 @@ static void _call_f_setCmyk_3403 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setCmyk (arg1, arg2, arg3, arg4, arg5); } @@ -1216,11 +1216,11 @@ static void _call_f_setCmykF_4923 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setCmykF (arg1, arg2, arg3, arg4, arg5); } @@ -1240,7 +1240,7 @@ static void _call_f_setGreen_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setGreen (arg1); } @@ -1260,7 +1260,7 @@ static void _call_f_setGreenF_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setGreenF (arg1); } @@ -1286,10 +1286,10 @@ static void _call_f_setHsl_2744 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setHsl (arg1, arg2, arg3, arg4); } @@ -1315,10 +1315,10 @@ static void _call_f_setHslF_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setHslF (arg1, arg2, arg3, arg4); } @@ -1344,10 +1344,10 @@ static void _call_f_setHsv_2744 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setHsv (arg1, arg2, arg3, arg4); } @@ -1373,10 +1373,10 @@ static void _call_f_setHsvF_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setHsvF (arg1, arg2, arg3, arg4); } @@ -1396,7 +1396,7 @@ static void _call_f_setNamedColor_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setNamedColor (arg1); } @@ -1416,7 +1416,7 @@ static void _call_f_setRed_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setRed (arg1); } @@ -1436,7 +1436,7 @@ static void _call_f_setRedF_1071 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setRedF (arg1); } @@ -1462,10 +1462,10 @@ static void _call_f_setRgb_2744 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setRgb (arg1, arg2, arg3, arg4); } @@ -1485,7 +1485,7 @@ static void _call_f_setRgb_1772 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setRgb (arg1); } @@ -1511,10 +1511,10 @@ static void _call_f_setRgbF_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setRgbF (arg1, arg2, arg3, arg4); } @@ -1534,7 +1534,7 @@ static void _call_f_setRgba_1772 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColor *)cls)->setRgba (arg1); } @@ -1712,11 +1712,11 @@ static void _call_f_fromCmyk_3403 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); ret.write ((QColor)QColor::fromCmyk (arg1, arg2, arg3, arg4, arg5)); } @@ -1743,11 +1743,11 @@ static void _call_f_fromCmykF_4923 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); ret.write ((QColor)QColor::fromCmykF (arg1, arg2, arg3, arg4, arg5)); } @@ -1772,10 +1772,10 @@ static void _call_f_fromHsl_2744 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); ret.write ((QColor)QColor::fromHsl (arg1, arg2, arg3, arg4)); } @@ -1800,10 +1800,10 @@ static void _call_f_fromHslF_3960 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); ret.write ((QColor)QColor::fromHslF (arg1, arg2, arg3, arg4)); } @@ -1828,10 +1828,10 @@ static void _call_f_fromHsv_2744 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); ret.write ((QColor)QColor::fromHsv (arg1, arg2, arg3, arg4)); } @@ -1856,10 +1856,10 @@ static void _call_f_fromHsvF_3960 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); ret.write ((QColor)QColor::fromHsvF (arg1, arg2, arg3, arg4)); } @@ -1878,7 +1878,7 @@ static void _call_f_fromRgb_1772 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor)QColor::fromRgb (arg1)); } @@ -1903,10 +1903,10 @@ static void _call_f_fromRgb_2744 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(255); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (255, heap); ret.write ((QColor)QColor::fromRgb (arg1, arg2, arg3, arg4)); } @@ -1931,10 +1931,10 @@ static void _call_f_fromRgbF_3960 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); ret.write ((QColor)QColor::fromRgbF (arg1, arg2, arg3, arg4)); } @@ -1953,7 +1953,7 @@ static void _call_f_fromRgba_1772 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor)QColor::fromRgba (arg1)); } @@ -1972,7 +1972,7 @@ static void _call_f_isValidColor_2025 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QColor::isValidColor (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQConicalGradient.cc b/src/gsiqt/qt5/QtGui/gsiDeclQConicalGradient.cc index ab0abbb21..925f5ab9e 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQConicalGradient.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQConicalGradient.cc @@ -70,8 +70,8 @@ static void _call_ctor_QConicalGradient_2949 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - double arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write (new QConicalGradient (arg1, arg2)); } @@ -94,9 +94,9 @@ static void _call_ctor_QConicalGradient_2997 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write (new QConicalGradient (arg1, arg2, arg3)); } @@ -145,7 +145,7 @@ static void _call_f_setAngle_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QConicalGradient *)cls)->setAngle (arg1); } @@ -165,7 +165,7 @@ static void _call_f_setCenter_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QConicalGradient *)cls)->setCenter (arg1); } @@ -187,8 +187,8 @@ static void _call_f_setCenter_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QConicalGradient *)cls)->setCenter (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQContextMenuEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQContextMenuEvent.cc index eef3322ff..e933b85b2 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQContextMenuEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQContextMenuEvent.cc @@ -217,10 +217,10 @@ static void _call_ctor_QContextMenuEvent_Adaptor_9494 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPoint &arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - QFlags arg4 = args.read > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = gsi::arg_reader >() (args, heap); ret.write (new QContextMenuEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -242,9 +242,9 @@ static void _call_ctor_QContextMenuEvent_Adaptor_6525 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPoint &arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); ret.write (new QContextMenuEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -264,8 +264,8 @@ static void _call_ctor_QContextMenuEvent_Adaptor_4717 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPoint &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); ret.write (new QContextMenuEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQCursor.cc b/src/gsiqt/qt5/QtGui/gsiDeclQCursor.cc index 8ac1f622c..33f99c54a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQCursor.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQCursor.cc @@ -67,7 +67,7 @@ static void _call_ctor_QCursor_1884 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QCursor (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -92,10 +92,10 @@ static void _call_ctor_QCursor_5208 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBitmap &arg1 = args.read (heap); - const QBitmap &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(-1); - int arg4 = args ? args.read (heap) : (int)(-1); + const QBitmap &arg1 = gsi::arg_reader() (args, heap); + const QBitmap &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write (new QCursor (arg1, arg2, arg3, arg4)); } @@ -118,9 +118,9 @@ static void _call_ctor_QCursor_3335 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(-1); - int arg3 = args ? args.read (heap) : (int)(-1); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write (new QCursor (arg1, arg2, arg3)); } @@ -139,7 +139,7 @@ static void _call_ctor_QCursor_2032 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCursor &arg1 = args.read (heap); + const QCursor &arg1 = gsi::arg_reader() (args, heap); ret.write (new QCursor (arg1)); } @@ -203,7 +203,7 @@ static void _call_f_operator_eq__2032 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCursor &arg1 = args.read (heap); + const QCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QCursor &)((QCursor *)cls)->operator= (arg1)); } @@ -237,7 +237,7 @@ static void _call_f_setShape_1884 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCursor *)cls)->setShape (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -287,7 +287,7 @@ static void _call_f_pos_2006 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QScreen *arg1 = args.read (heap); + const QScreen *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)QCursor::pos (arg1)); } @@ -308,8 +308,8 @@ static void _call_f_setPos_1426 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCursor::setPos (arg1, arg2); } @@ -333,9 +333,9 @@ static void _call_f_setPos_2629 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScreen *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + QScreen *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCursor::setPos (arg1, arg2, arg3); } @@ -355,7 +355,7 @@ static void _call_f_setPos_1916 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCursor::setPos (arg1); } @@ -377,8 +377,8 @@ static void _call_f_setPos_3119 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScreen *arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + QScreen *arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QCursor::setPos (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDesktopServices.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDesktopServices.cc index 4016dbebf..4c3224a03 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDesktopServices.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDesktopServices.cc @@ -67,7 +67,7 @@ static void _call_f_openUrl_1701 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QDesktopServices::openUrl (arg1)); } @@ -90,9 +90,9 @@ static void _call_f_setUrlHandler_4842 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); - const char *arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QDesktopServices::setUrlHandler (arg1, arg2, arg3); } @@ -112,7 +112,7 @@ static void _call_f_unsetUrlHandler_2025 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QDesktopServices::unsetUrlHandler (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc index cb82ee032..163bb4282 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDoubleValidator.cc @@ -115,7 +115,7 @@ static void _call_f_setBottom_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator *)cls)->setBottom (arg1); } @@ -135,7 +135,7 @@ static void _call_f_setDecimals_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator *)cls)->setDecimals (arg1); } @@ -155,7 +155,7 @@ static void _call_f_setNotation_3014 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator *)cls)->setNotation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -179,9 +179,9 @@ static void _call_f_setRange_2693 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator *)cls)->setRange (arg1, arg2, arg3); } @@ -201,7 +201,7 @@ static void _call_f_setTop_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleValidator *)cls)->setTop (arg1); } @@ -238,8 +238,8 @@ static void _call_f_validate_c2171 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDoubleValidator *)cls)->validate (arg1, arg2))); } @@ -262,9 +262,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDoubleValidator::tr (arg1, arg2, arg3)); } @@ -287,9 +287,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDoubleValidator::trUtf8 (arg1, arg2, arg3)); } @@ -579,7 +579,7 @@ static void _call_ctor_QDoubleValidator_Adaptor_1302 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDoubleValidator_Adaptor (arg1)); } @@ -603,10 +603,10 @@ static void _call_ctor_QDoubleValidator_Adaptor_3887 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - int arg3 = args.read (heap); - QObject *arg4 = args ? args.read (heap) : (QObject *)(0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + QObject *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDoubleValidator_Adaptor (arg1, arg2, arg3, arg4)); } @@ -624,7 +624,7 @@ static void _call_emitter_bottomChanged_1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QDoubleValidator_Adaptor *)cls)->emitter_QDoubleValidator_bottomChanged_1071 (arg1); } @@ -704,7 +704,7 @@ static void _call_emitter_decimalsChanged_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDoubleValidator_Adaptor *)cls)->emitter_QDoubleValidator_decimalsChanged_767 (arg1); } @@ -722,7 +722,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDoubleValidator_Adaptor *)cls)->emitter_QDoubleValidator_destroyed_1302 (arg1); } @@ -837,7 +837,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleValidator_Adaptor *)cls)->fp_QDoubleValidator_isSignalConnected_c2394 (arg1)); } @@ -855,7 +855,7 @@ static void _call_emitter_notationChanged_3014 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QDoubleValidator_Adaptor *)cls)->emitter_QDoubleValidator_notationChanged_3014 (arg1); } @@ -873,7 +873,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDoubleValidator_Adaptor *)cls)->fp_QDoubleValidator_receivers_c1731 (arg1)); } @@ -973,7 +973,7 @@ static void _call_emitter_topChanged_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QDoubleValidator_Adaptor *)cls)->emitter_QDoubleValidator_topChanged_1071 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDrag.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDrag.cc index 65a17955e..7b7f5e202 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDrag.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDrag.cc @@ -87,7 +87,7 @@ static void _call_f_dragCursor_c1760 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPixmap)((QDrag *)cls)->dragCursor (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -106,7 +106,7 @@ static void _call_f_exec_2456 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(Qt::MoveAction); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MoveAction, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDrag *)cls)->exec (arg1))); } @@ -127,8 +127,8 @@ static void _call_f_exec_4108 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDrag *)cls)->exec (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()))); } @@ -194,8 +194,8 @@ static void _call_f_setDragCursor_3669 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag *)cls)->setDragCursor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -215,7 +215,7 @@ static void _call_f_setHotSpot_1916 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag *)cls)->setHotSpot (arg1); } @@ -235,7 +235,7 @@ static void _call_f_setMimeData_1473 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMimeData *arg1 = args.read (heap); + QMimeData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag *)cls)->setMimeData (arg1); } @@ -255,7 +255,7 @@ static void _call_f_setPixmap_2017 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDrag *)cls)->setPixmap (arg1); } @@ -290,7 +290,7 @@ static void _call_f_start_2456 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(Qt::CopyAction); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::CopyAction, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDrag *)cls)->start (arg1))); } @@ -343,9 +343,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDrag::tr (arg1, arg2, arg3)); } @@ -368,9 +368,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDrag::trUtf8 (arg1, arg2, arg3)); } @@ -578,7 +578,7 @@ static void _call_ctor_QDrag_Adaptor_1302 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QDrag_Adaptor (arg1)); } @@ -596,7 +596,7 @@ static void _call_emitter_actionChanged_1760 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QDrag_Adaptor *)cls)->emitter_QDrag_actionChanged_1760 (arg1); } @@ -662,7 +662,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDrag_Adaptor *)cls)->emitter_QDrag_destroyed_1302 (arg1); } @@ -753,7 +753,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDrag_Adaptor *)cls)->fp_QDrag_isSignalConnected_c2394 (arg1)); } @@ -771,7 +771,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDrag_Adaptor *)cls)->fp_QDrag_receivers_c1731 (arg1)); } @@ -817,7 +817,7 @@ static void _call_emitter_targetChanged_1302 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ((QDrag_Adaptor *)cls)->emitter_QDrag_targetChanged_1302 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDragEnterEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDragEnterEvent.cc index 4ccfd4e2d..a0d79e1aa 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDragEnterEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDragEnterEvent.cc @@ -99,11 +99,11 @@ static void _call_ctor_QDragEnterEvent_Adaptor_11787 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); - const QMimeData *arg3 = args.read (heap); - QFlags arg4 = args.read > (heap); - QFlags arg5 = args.read > (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + const QMimeData *arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = gsi::arg_reader >() (args, heap); + QFlags arg5 = gsi::arg_reader >() (args, heap); ret.write (new QDragEnterEvent_Adaptor (arg1, arg2, arg3, arg4, arg5)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDragMoveEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDragMoveEvent.cc index 1a4390992..234605d01 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDragMoveEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDragMoveEvent.cc @@ -72,7 +72,7 @@ static void _call_f_accept_1792 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDragMoveEvent *)cls)->accept (arg1); } @@ -123,7 +123,7 @@ static void _call_f_ignore_1792 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDragMoveEvent *)cls)->ignore (arg1); } @@ -199,12 +199,12 @@ static void _call_ctor_QDragMoveEvent_Adaptor_13244 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); - const QMimeData *arg3 = args.read (heap); - QFlags arg4 = args.read > (heap); - QFlags arg5 = args.read > (heap); - const qt_gsi::Converter::target_type & arg6 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::DragMove)); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + const QMimeData *arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = gsi::arg_reader >() (args, heap); + QFlags arg5 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg6 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::DragMove), heap); ret.write (new QDragMoveEvent_Adaptor (arg1, arg2, arg3, arg4, arg5, qt_gsi::QtToCppAdaptor(arg6).cref())); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQDropEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQDropEvent.cc index 7a8ee33b7..a50c55ce6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQDropEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQDropEvent.cc @@ -191,7 +191,7 @@ static void _call_f_setDropAction_1760 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDropEvent *)cls)->setDropAction (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -288,12 +288,12 @@ static void _call_ctor_QDropEvent_Adaptor_13314 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); - const QMimeData *arg3 = args.read (heap); - QFlags arg4 = args.read > (heap); - QFlags arg5 = args.read > (heap); - const qt_gsi::Converter::target_type & arg6 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::Drop)); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + const QMimeData *arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = gsi::arg_reader >() (args, heap); + QFlags arg5 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg6 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::Drop), heap); ret.write (new QDropEvent_Adaptor (arg1, arg2, arg3, arg4, arg5, qt_gsi::QtToCppAdaptor(arg6).cref())); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQEnterEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQEnterEvent.cc index 5d4186a29..598f01a24 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQEnterEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQEnterEvent.cc @@ -236,9 +236,9 @@ static void _call_ctor_QEnterEvent_Adaptor_5742 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); ret.write (new QEnterEvent_Adaptor (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQExposeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQExposeEvent.cc index 0ec4b6880..d8f317867 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQExposeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQExposeEvent.cc @@ -103,7 +103,7 @@ static void _call_ctor_QExposeEvent_Adaptor_2006 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write (new QExposeEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQFileOpenEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQFileOpenEvent.cc index ccf75580c..b1c1f3146 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQFileOpenEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQFileOpenEvent.cc @@ -70,8 +70,8 @@ static void _call_f_openFile_c4217 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFile &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QFile &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QFileOpenEvent *)cls)->openFile (arg1, arg2)); } @@ -149,7 +149,7 @@ static void _call_ctor_QFileOpenEvent_Adaptor_2025 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFileOpenEvent_Adaptor (arg1)); } @@ -167,7 +167,7 @@ static void _call_ctor_QFileOpenEvent_Adaptor_1701 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFileOpenEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQFocusEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQFocusEvent.cc index e6610468b..32e8d7fb7 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQFocusEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQFocusEvent.cc @@ -142,8 +142,8 @@ static void _call_ctor_QFocusEvent_Adaptor_3334 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason), heap); ret.write (new QFocusEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQFont.cc b/src/gsiqt/qt5/QtGui/gsiDeclQFont.cc index d74f6920d..7bd8611dd 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQFont.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQFont.cc @@ -77,10 +77,10 @@ static void _call_ctor_QFont_4099 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(-1); - int arg3 = args ? args.read (heap) : (int)(-1); - bool arg4 = args ? args.read (heap) : (bool)(false); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + bool arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write (new QFont (arg1, arg2, arg3, arg4)); } @@ -101,8 +101,8 @@ static void _call_ctor_QFont_3496 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); - QPaintDevice *arg2 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); + QPaintDevice *arg2 = gsi::arg_reader() (args, heap); ret.write (new QFont (arg1, arg2)); } @@ -121,7 +121,7 @@ static void _call_ctor_QFont_1801 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFont (arg1)); } @@ -230,7 +230,7 @@ static void _call_f_fromString_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFont *)cls)->fromString (arg1)); } @@ -264,7 +264,7 @@ static void _call_f_isCopyOf_c1801 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFont *)cls)->isCopyOf (arg1)); } @@ -388,7 +388,7 @@ static void _call_f_operator_excl__eq__c1801 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFont *)cls)->operator!= (arg1)); } @@ -407,7 +407,7 @@ static void _call_f_operator_lt__c1801 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFont *)cls)->operator< (arg1)); } @@ -426,7 +426,7 @@ static void _call_f_operator_eq__1801 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFont &)((QFont *)cls)->operator= (arg1)); } @@ -445,7 +445,7 @@ static void _call_f_operator_eq__eq__c1801 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFont *)cls)->operator== (arg1)); } @@ -554,7 +554,7 @@ static void _call_f_resolve_c1801 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFont)((QFont *)cls)->resolve (arg1)); } @@ -573,7 +573,7 @@ static void _call_f_setBold_864 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setBold (arg1); } @@ -593,7 +593,7 @@ static void _call_f_setCapitalization_2508 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setCapitalization (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -613,7 +613,7 @@ static void _call_f_setFamily_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setFamily (arg1); } @@ -633,7 +633,7 @@ static void _call_f_setFixedPitch_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setFixedPitch (arg1); } @@ -653,7 +653,7 @@ static void _call_f_setHintingPreference_2784 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setHintingPreference (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -673,7 +673,7 @@ static void _call_f_setItalic_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setItalic (arg1); } @@ -693,7 +693,7 @@ static void _call_f_setKerning_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setKerning (arg1); } @@ -715,8 +715,8 @@ static void _call_f_setLetterSpacing_3130 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - double arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setLetterSpacing (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -736,7 +736,7 @@ static void _call_f_setOverline_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setOverline (arg1); } @@ -756,7 +756,7 @@ static void _call_f_setPixelSize_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setPixelSize (arg1); } @@ -776,7 +776,7 @@ static void _call_f_setPointSize_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setPointSize (arg1); } @@ -796,7 +796,7 @@ static void _call_f_setPointSizeF_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setPointSizeF (arg1); } @@ -816,7 +816,7 @@ static void _call_f_setRawMode_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setRawMode (arg1); } @@ -836,7 +836,7 @@ static void _call_f_setRawName_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setRawName (arg1); } @@ -856,7 +856,7 @@ static void _call_f_setStretch_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setStretch (arg1); } @@ -876,7 +876,7 @@ static void _call_f_setStrikeOut_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setStrikeOut (arg1); } @@ -896,7 +896,7 @@ static void _call_f_setStyle_1569 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -918,8 +918,8 @@ static void _call_f_setStyleHint_4284 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QFont::PreferDefault)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QFont::PreferDefault), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setStyleHint (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -939,7 +939,7 @@ static void _call_f_setStyleName_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setStyleName (arg1); } @@ -959,7 +959,7 @@ static void _call_f_setStyleStrategy_2420 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setStyleStrategy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -979,7 +979,7 @@ static void _call_f_setUnderline_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setUnderline (arg1); } @@ -999,7 +999,7 @@ static void _call_f_setWeight_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setWeight (arg1); } @@ -1019,7 +1019,7 @@ static void _call_f_setWordSpacing_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->setWordSpacing (arg1); } @@ -1129,7 +1129,7 @@ static void _call_f_swap_1106 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFont &arg1 = args.read (heap); + QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFont *)cls)->swap (arg1); } @@ -1243,8 +1243,8 @@ static void _call_f_insertSubstitution_3942 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QFont::insertSubstitution (arg1, arg2); } @@ -1266,8 +1266,8 @@ static void _call_f_insertSubstitutions_4354 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QFont::insertSubstitutions (arg1, arg2); } @@ -1287,7 +1287,7 @@ static void _call_f_removeSubstitutions_2025 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QFont::removeSubstitutions (arg1); } @@ -1307,7 +1307,7 @@ static void _call_f_substitute_2025 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QFont::substitute (arg1)); } @@ -1326,7 +1326,7 @@ static void _call_f_substitutes_2025 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)QFont::substitutes (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQFontDatabase.cc b/src/gsiqt/qt5/QtGui/gsiDeclQFontDatabase.cc index 1aadab326..d2a26efdc 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQFontDatabase.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQFontDatabase.cc @@ -69,8 +69,8 @@ static void _call_f_bold_c3942 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDatabase *)cls)->bold (arg1, arg2)); } @@ -89,7 +89,7 @@ static void _call_f_families_c3214 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QFontDatabase::Any)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QFontDatabase::Any), heap); ret.write ((QStringList)((QFontDatabase *)cls)->families (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -112,9 +112,9 @@ static void _call_f_font_c4601 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QFont)((QFontDatabase *)cls)->font (arg1, arg2, arg3)); } @@ -133,7 +133,7 @@ static void _call_f_hasFamily_c2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDatabase *)cls)->hasFamily (arg1)); } @@ -154,8 +154,8 @@ static void _call_f_isBitmapScalable_c3942 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QFontDatabase *)cls)->isBitmapScalable (arg1, arg2)); } @@ -176,8 +176,8 @@ static void _call_f_isFixedPitch_c3942 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QFontDatabase *)cls)->isFixedPitch (arg1, arg2)); } @@ -196,7 +196,7 @@ static void _call_f_isPrivateFamily_c2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDatabase *)cls)->isPrivateFamily (arg1)); } @@ -217,8 +217,8 @@ static void _call_f_isScalable_c3942 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QFontDatabase *)cls)->isScalable (arg1, arg2)); } @@ -239,8 +239,8 @@ static void _call_f_isSmoothlyScalable_c3942 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QFontDatabase *)cls)->isSmoothlyScalable (arg1, arg2)); } @@ -261,8 +261,8 @@ static void _call_f_italic_c3942 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDatabase *)cls)->italic (arg1, arg2)); } @@ -283,8 +283,8 @@ static void _call_f_pointSizes_3942 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write > ((QList)((QFontDatabase *)cls)->pointSizes (arg1, arg2)); } @@ -305,8 +305,8 @@ static void _call_f_smoothSizes_3942 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QFontDatabase *)cls)->smoothSizes (arg1, arg2)); } @@ -325,7 +325,7 @@ static void _call_f_styleString_1801 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFontDatabase *)cls)->styleString (arg1)); } @@ -344,7 +344,7 @@ static void _call_f_styleString_2197 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontInfo &arg1 = args.read (heap); + const QFontInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFontDatabase *)cls)->styleString (arg1)); } @@ -363,7 +363,7 @@ static void _call_f_styles_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QFontDatabase *)cls)->styles (arg1)); } @@ -384,8 +384,8 @@ static void _call_f_weight_c3942 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QFontDatabase *)cls)->weight (arg1, arg2)); } @@ -419,7 +419,7 @@ static void _call_f_writingSystems_c2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QFontDatabase *)cls)->writingSystems (arg1)); } @@ -438,7 +438,7 @@ static void _call_f_addApplicationFont_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)QFontDatabase::addApplicationFont (arg1)); } @@ -457,7 +457,7 @@ static void _call_f_addApplicationFontFromData_2309 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)QFontDatabase::addApplicationFontFromData (arg1)); } @@ -476,7 +476,7 @@ static void _call_f_applicationFontFamilies_767 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)QFontDatabase::applicationFontFamilies (arg1)); } @@ -510,7 +510,7 @@ static void _call_f_removeApplicationFont_767 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QFontDatabase::removeApplicationFont (arg1)); } @@ -559,7 +559,7 @@ static void _call_f_systemFont_2881 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QFont)QFontDatabase::systemFont (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -578,7 +578,7 @@ static void _call_f_writingSystemName_3214 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QFontDatabase::writingSystemName (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -597,7 +597,7 @@ static void _call_f_writingSystemSample_3214 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QFontDatabase::writingSystemSample (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQFontInfo.cc b/src/gsiqt/qt5/QtGui/gsiDeclQFontInfo.cc index e82cae40d..ab2d75cd0 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQFontInfo.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQFontInfo.cc @@ -51,7 +51,7 @@ static void _call_ctor_QFontInfo_1801 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFontInfo (arg1)); } @@ -70,7 +70,7 @@ static void _call_ctor_QFontInfo_2197 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontInfo &arg1 = args.read (heap); + const QFontInfo &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFontInfo (arg1)); } @@ -164,7 +164,7 @@ static void _call_f_operator_eq__2197 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontInfo &arg1 = args.read (heap); + const QFontInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFontInfo &)((QFontInfo *)cls)->operator= (arg1)); } @@ -318,7 +318,7 @@ static void _call_f_swap_1502 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFontInfo &arg1 = args.read (heap); + QFontInfo &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontInfo *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQFontMetrics.cc b/src/gsiqt/qt5/QtGui/gsiDeclQFontMetrics.cc index b07b9d4e9..ed4b30fe0 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQFontMetrics.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQFontMetrics.cc @@ -54,7 +54,7 @@ static void _call_ctor_QFontMetrics_1801 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFontMetrics (arg1)); } @@ -75,8 +75,8 @@ static void _call_ctor_QFontMetrics_3496 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); - QPaintDevice *arg2 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); + QPaintDevice *arg2 = gsi::arg_reader() (args, heap); ret.write (new QFontMetrics (arg1, arg2)); } @@ -95,7 +95,7 @@ static void _call_ctor_QFontMetrics_2528 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFontMetrics (arg1)); } @@ -144,7 +144,7 @@ static void _call_f_boundingRect_c899 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QRect)((QFontMetrics *)cls)->boundingRect (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -163,7 +163,7 @@ static void _call_f_boundingRect_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QFontMetrics *)cls)->boundingRect (arg1)); } @@ -190,11 +190,11 @@ static void _call_f_boundingRect_c5872 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); - int *arg5 = args ? args.read (heap) : (int *)(0); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QFontMetrics *)cls)->boundingRect (arg1, arg2, arg3, arg4, arg5)); } @@ -227,14 +227,14 @@ static void _call_f_boundingRect_c6824 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - int arg7 = args ? args.read (heap) : (int)(0); - int *arg8 = args ? args.read (heap) : (int *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + int arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg8 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QFontMetrics *)cls)->boundingRect (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8)); } @@ -255,8 +255,8 @@ static void _call_f_charWidth_c2684 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QFontMetrics *)cls)->charWidth (arg1, arg2)); } @@ -296,10 +296,10 @@ static void _call_f_elidedText_c5277 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QFontMetrics *)cls)->elidedText (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -333,7 +333,7 @@ static void _call_f_inFont_c899 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QFontMetrics *)cls)->inFont (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -352,7 +352,7 @@ static void _call_f_inFontUcs4_c1772 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontMetrics *)cls)->inFontUcs4 (arg1)); } @@ -386,7 +386,7 @@ static void _call_f_leftBearing_c899 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFontMetrics *)cls)->leftBearing (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -480,7 +480,7 @@ static void _call_f_operator_excl__eq__c2528 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontMetrics *)cls)->operator != (arg1)); } @@ -499,7 +499,7 @@ static void _call_f_operator_eq__2528 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFontMetrics &)((QFontMetrics *)cls)->operator= (arg1)); } @@ -518,7 +518,7 @@ static void _call_f_operator_eq__eq__c2528 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontMetrics *)cls)->operator== (arg1)); } @@ -552,7 +552,7 @@ static void _call_f_rightBearing_c899 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFontMetrics *)cls)->rightBearing (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -577,10 +577,10 @@ static void _call_f_size_c4188 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QSize)((QFontMetrics *)cls)->size (arg1, arg2, arg3, arg4)); } @@ -614,7 +614,7 @@ static void _call_f_swap_1833 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFontMetrics &arg1 = args.read (heap); + QFontMetrics &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontMetrics *)cls)->swap (arg1); } @@ -634,7 +634,7 @@ static void _call_f_tightBoundingRect_c2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QFontMetrics *)cls)->tightBoundingRect (arg1)); } @@ -670,8 +670,8 @@ static void _call_f_width_c2684 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(-1); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((int)((QFontMetrics *)cls)->width (arg1, arg2)); } @@ -694,9 +694,9 @@ static void _call_f_width_c3343 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((int)((QFontMetrics *)cls)->width (arg1, arg2, arg3)); } @@ -715,7 +715,7 @@ static void _call_f_width_c899 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QFontMetrics *)cls)->width (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQFontMetricsF.cc b/src/gsiqt/qt5/QtGui/gsiDeclQFontMetricsF.cc index 7de840f2c..5c73247e8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQFontMetricsF.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQFontMetricsF.cc @@ -55,7 +55,7 @@ static void _call_ctor_QFontMetricsF_1801 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFontMetricsF (arg1)); } @@ -76,8 +76,8 @@ static void _call_ctor_QFontMetricsF_3496 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); - QPaintDevice *arg2 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); + QPaintDevice *arg2 = gsi::arg_reader() (args, heap); ret.write (new QFontMetricsF (arg1, arg2)); } @@ -96,7 +96,7 @@ static void _call_ctor_QFontMetricsF_2528 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFontMetricsF (arg1)); } @@ -115,7 +115,7 @@ static void _call_ctor_QFontMetricsF_2598 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetricsF &arg1 = args.read (heap); + const QFontMetricsF &arg1 = gsi::arg_reader() (args, heap); ret.write (new QFontMetricsF (arg1)); } @@ -164,7 +164,7 @@ static void _call_f_boundingRect_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QFontMetricsF *)cls)->boundingRect (arg1)); } @@ -183,7 +183,7 @@ static void _call_f_boundingRect_c899 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QRectF)((QFontMetricsF *)cls)->boundingRect (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -210,11 +210,11 @@ static void _call_f_boundingRect_c5942 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); - int *arg5 = args ? args.read (heap) : (int *)(0); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRectF)((QFontMetricsF *)cls)->boundingRect (arg1, arg2, arg3, arg4, arg5)); } @@ -254,10 +254,10 @@ static void _call_f_elidedText_c5581 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - double arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QString)((QFontMetricsF *)cls)->elidedText (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -291,7 +291,7 @@ static void _call_f_inFont_c899 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QFontMetricsF *)cls)->inFont (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -310,7 +310,7 @@ static void _call_f_inFontUcs4_c1772 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontMetricsF *)cls)->inFontUcs4 (arg1)); } @@ -344,7 +344,7 @@ static void _call_f_leftBearing_c899 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((double)((QFontMetricsF *)cls)->leftBearing (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -438,7 +438,7 @@ static void _call_f_operator_excl__eq__c2598 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetricsF &arg1 = args.read (heap); + const QFontMetricsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontMetricsF *)cls)->operator != (arg1)); } @@ -457,7 +457,7 @@ static void _call_f_operator_eq__2598 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetricsF &arg1 = args.read (heap); + const QFontMetricsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFontMetricsF &)((QFontMetricsF *)cls)->operator= (arg1)); } @@ -476,7 +476,7 @@ static void _call_f_operator_eq__2528 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFontMetricsF &)((QFontMetricsF *)cls)->operator= (arg1)); } @@ -495,7 +495,7 @@ static void _call_f_operator_eq__eq__c2598 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetricsF &arg1 = args.read (heap); + const QFontMetricsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontMetricsF *)cls)->operator== (arg1)); } @@ -529,7 +529,7 @@ static void _call_f_rightBearing_c899 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((double)((QFontMetricsF *)cls)->rightBearing (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -554,10 +554,10 @@ static void _call_f_size_c4188 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QSizeF)((QFontMetricsF *)cls)->size (arg1, arg2, arg3, arg4)); } @@ -591,7 +591,7 @@ static void _call_f_swap_1903 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFontMetricsF &arg1 = args.read (heap); + QFontMetricsF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontMetricsF *)cls)->swap (arg1); } @@ -611,7 +611,7 @@ static void _call_f_tightBoundingRect_c2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QFontMetricsF *)cls)->tightBoundingRect (arg1)); } @@ -645,7 +645,7 @@ static void _call_f_width_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QFontMetricsF *)cls)->width (arg1)); } @@ -664,7 +664,7 @@ static void _call_f_width_c899 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((double)((QFontMetricsF *)cls)->width (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQGenericPlugin.cc b/src/gsiqt/qt5/QtGui/gsiDeclQGenericPlugin.cc index 52cd439e9..3304697c0 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQGenericPlugin.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQGenericPlugin.cc @@ -71,8 +71,8 @@ static void _call_f_create_3942 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QObject *)((QGenericPlugin *)cls)->create (arg1, arg2)); } @@ -95,9 +95,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGenericPlugin::tr (arg1, arg2, arg3)); } @@ -120,9 +120,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGenericPlugin::trUtf8 (arg1, arg2, arg3)); } @@ -326,7 +326,7 @@ static void _call_ctor_QGenericPlugin_Adaptor_1302 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGenericPlugin_Adaptor (arg1)); } @@ -418,7 +418,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGenericPlugin_Adaptor *)cls)->emitter_QGenericPlugin_destroyed_1302 (arg1); } @@ -509,7 +509,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGenericPlugin_Adaptor *)cls)->fp_QGenericPlugin_isSignalConnected_c2394 (arg1)); } @@ -527,7 +527,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGenericPlugin_Adaptor *)cls)->fp_QGenericPlugin_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQGenericPluginFactory.cc b/src/gsiqt/qt5/QtGui/gsiDeclQGenericPluginFactory.cc index 28d97ec3c..f504eb412 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQGenericPluginFactory.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQGenericPluginFactory.cc @@ -68,8 +68,8 @@ static void _call_f_create_3942 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QObject *)QGenericPluginFactory::create (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQGlyphRun.cc b/src/gsiqt/qt5/QtGui/gsiDeclQGlyphRun.cc index ec6886031..6697bb59d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQGlyphRun.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQGlyphRun.cc @@ -68,7 +68,7 @@ static void _call_ctor_QGlyphRun_2219 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGlyphRun &arg1 = args.read (heap); + const QGlyphRun &arg1 = gsi::arg_reader() (args, heap); ret.write (new QGlyphRun (arg1)); } @@ -178,7 +178,7 @@ static void _call_f_operator_excl__eq__c2219 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGlyphRun &arg1 = args.read (heap); + const QGlyphRun &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGlyphRun *)cls)->operator!= (arg1)); } @@ -197,7 +197,7 @@ static void _call_f_operator_eq__2219 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGlyphRun &arg1 = args.read (heap); + const QGlyphRun &arg1 = gsi::arg_reader() (args, heap); ret.write ((QGlyphRun &)((QGlyphRun *)cls)->operator= (arg1)); } @@ -216,7 +216,7 @@ static void _call_f_operator_eq__eq__c2219 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGlyphRun &arg1 = args.read (heap); + const QGlyphRun &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGlyphRun *)cls)->operator== (arg1)); } @@ -280,7 +280,7 @@ static void _call_f_setBoundingRect_1862 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGlyphRun *)cls)->setBoundingRect (arg1); } @@ -302,8 +302,8 @@ static void _call_f_setFlag_3417 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGlyphRun *)cls)->setFlag (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -323,7 +323,7 @@ static void _call_f_setFlags_3357 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGlyphRun *)cls)->setFlags (arg1); } @@ -343,7 +343,7 @@ static void _call_f_setGlyphIndexes_2805 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGlyphRun *)cls)->setGlyphIndexes (arg1); } @@ -363,7 +363,7 @@ static void _call_f_setOverline_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGlyphRun *)cls)->setOverline (arg1); } @@ -383,7 +383,7 @@ static void _call_f_setPositions_2816 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGlyphRun *)cls)->setPositions (arg1); } @@ -407,9 +407,9 @@ static void _call_f_setRawData_4520 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const quint32 *arg1 = args.read (heap); - const QPointF *arg2 = args.read (heap); - int arg3 = args.read (heap); + const quint32 *arg1 = gsi::arg_reader() (args, heap); + const QPointF *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGlyphRun *)cls)->setRawData (arg1, arg2, arg3); } @@ -429,7 +429,7 @@ static void _call_f_setRawFont_2099 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRawFont &arg1 = args.read (heap); + const QRawFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGlyphRun *)cls)->setRawFont (arg1); } @@ -449,7 +449,7 @@ static void _call_f_setRightToLeft_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGlyphRun *)cls)->setRightToLeft (arg1); } @@ -469,7 +469,7 @@ static void _call_f_setStrikeOut_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGlyphRun *)cls)->setStrikeOut (arg1); } @@ -489,7 +489,7 @@ static void _call_f_setUnderline_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGlyphRun *)cls)->setUnderline (arg1); } @@ -524,7 +524,7 @@ static void _call_f_swap_1524 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGlyphRun &arg1 = args.read (heap); + QGlyphRun &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGlyphRun *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQGradient.cc b/src/gsiqt/qt5/QtGui/gsiDeclQGradient.cc index a4aa0e77c..7335d18ce 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQGradient.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQGradient.cc @@ -96,7 +96,7 @@ static void _call_f_operator_excl__eq__c2208 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGradient &arg1 = args.read (heap); + const QGradient &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGradient *)cls)->operator!= (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_eq__eq__c2208 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGradient &arg1 = args.read (heap); + const QGradient &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGradient *)cls)->operator== (arg1)); } @@ -136,8 +136,8 @@ static void _call_f_setColorAt_2868 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGradient *)cls)->setColorAt (arg1, arg2); } @@ -157,7 +157,7 @@ static void _call_f_setCoordinateMode_2868 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGradient *)cls)->setCoordinateMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -177,7 +177,7 @@ static void _call_f_setInterpolationMode_3220 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGradient *)cls)->setInterpolationMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -197,7 +197,7 @@ static void _call_f_setSpread_2054 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGradient *)cls)->setSpread (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -217,7 +217,7 @@ static void _call_f_setStops_3460 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGradient *)cls)->setStops (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc b/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc index 597b3eb60..2190e6810 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQGuiApplication.cc @@ -115,8 +115,8 @@ static void _call_f_notify_2411 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGuiApplication *)cls)->notify (arg1, arg2)); } @@ -210,7 +210,7 @@ static void _call_f_changeOverrideCursor_2032 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCursor &arg1 = args.read (heap); + const QCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QGuiApplication::changeOverrideCursor (arg1); } @@ -546,7 +546,7 @@ static void _call_f_setApplicationDisplayName_2025 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QGuiApplication::setApplicationDisplayName (arg1); } @@ -566,7 +566,7 @@ static void _call_f_setDesktopSettingsAware_864 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QGuiApplication::setDesktopSettingsAware (arg1); } @@ -586,7 +586,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QGuiApplication::setFont (arg1); } @@ -606,7 +606,7 @@ static void _call_f_setLayoutDirection_2316 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QGuiApplication::setLayoutDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -626,7 +626,7 @@ static void _call_f_setOverrideCursor_2032 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCursor &arg1 = args.read (heap); + const QCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QGuiApplication::setOverrideCursor (arg1); } @@ -646,7 +646,7 @@ static void _call_f_setPalette_2113 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QGuiApplication::setPalette (arg1); } @@ -666,7 +666,7 @@ static void _call_f_setQuitOnLastWindowClosed_864 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QGuiApplication::setQuitOnLastWindowClosed (arg1); } @@ -686,7 +686,7 @@ static void _call_f_setWindowIcon_1787 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QGuiApplication::setWindowIcon (arg1); } @@ -737,7 +737,7 @@ static void _call_f_topLevelAt_1916 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QWindow *)QGuiApplication::topLevelAt (arg1)); } @@ -775,9 +775,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGuiApplication::tr (arg1, arg2, arg3)); } @@ -800,9 +800,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGuiApplication::trUtf8 (arg1, arg2, arg3)); } @@ -1190,7 +1190,7 @@ static void _call_emitter_applicationStateChanged_2402 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QGuiApplication_Adaptor *)cls)->emitter_QGuiApplication_applicationStateChanged_2402 (arg1); } @@ -1246,7 +1246,7 @@ static void _call_emitter_commitDataRequest_2138 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSessionManager &arg1 = args.read (heap); + QSessionManager &arg1 = gsi::arg_reader() (args, heap); ((QGuiApplication_Adaptor *)cls)->emitter_QGuiApplication_commitDataRequest_2138 (arg1); } @@ -1288,7 +1288,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGuiApplication_Adaptor *)cls)->emitter_QGuiApplication_destroyed_1302 (arg1); } @@ -1379,7 +1379,7 @@ static void _call_emitter_focusObjectChanged_1302 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ((QGuiApplication_Adaptor *)cls)->emitter_QGuiApplication_focusObjectChanged_1302 (arg1); } @@ -1397,7 +1397,7 @@ static void _call_emitter_focusWindowChanged_1335 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWindow *arg1 = args.read (heap); + QWindow *arg1 = gsi::arg_reader() (args, heap); ((QGuiApplication_Adaptor *)cls)->emitter_QGuiApplication_focusWindowChanged_1335 (arg1); } @@ -1429,7 +1429,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGuiApplication_Adaptor *)cls)->fp_QGuiApplication_isSignalConnected_c2394 (arg1)); } @@ -1461,7 +1461,7 @@ static void _call_emitter_layoutDirectionChanged_2316 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QGuiApplication_Adaptor *)cls)->emitter_QGuiApplication_layoutDirectionChanged_2316 (arg1); } @@ -1533,7 +1533,7 @@ static void _call_emitter_paletteChanged_2113 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); ((QGuiApplication_Adaptor *)cls)->emitter_QGuiApplication_paletteChanged_2113 (arg1); } @@ -1551,7 +1551,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGuiApplication_Adaptor *)cls)->fp_QGuiApplication_receivers_c1731 (arg1)); } @@ -1569,7 +1569,7 @@ static void _call_emitter_saveStateRequest_2138 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSessionManager &arg1 = args.read (heap); + QSessionManager &arg1 = gsi::arg_reader() (args, heap); ((QGuiApplication_Adaptor *)cls)->emitter_QGuiApplication_saveStateRequest_2138 (arg1); } @@ -1587,7 +1587,7 @@ static void _call_emitter_screenAdded_1311 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScreen *arg1 = args.read (heap); + QScreen *arg1 = gsi::arg_reader() (args, heap); ((QGuiApplication_Adaptor *)cls)->emitter_QGuiApplication_screenAdded_1311 (arg1); } @@ -1605,7 +1605,7 @@ static void _call_emitter_screenRemoved_1311 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScreen *arg1 = args.read (heap); + QScreen *arg1 = gsi::arg_reader() (args, heap); ((QGuiApplication_Adaptor *)cls)->emitter_QGuiApplication_screenRemoved_1311 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQHelpEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQHelpEvent.cc index d6dd58289..344716588 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQHelpEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQHelpEvent.cc @@ -187,9 +187,9 @@ static void _call_ctor_QHelpEvent_Adaptor_5181 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPoint &arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); ret.write (new QHelpEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQHoverEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQHoverEvent.cc index cccbd9993..69da26603 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQHoverEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQHoverEvent.cc @@ -164,10 +164,10 @@ static void _call_ctor_QHoverEvent_Adaptor_8290 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPointF &arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(Qt::NoModifier); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::NoModifier, heap); ret.write (new QHoverEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQIcon.cc b/src/gsiqt/qt5/QtGui/gsiDeclQIcon.cc index 169c3da79..d1cfbd731 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQIcon.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQIcon.cc @@ -71,7 +71,7 @@ static void _call_ctor_QIcon_2017 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); ret.write (new QIcon (arg1)); } @@ -90,7 +90,7 @@ static void _call_ctor_QIcon_1787 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ret.write (new QIcon (arg1)); } @@ -109,7 +109,7 @@ static void _call_ctor_QIcon_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QIcon (arg1)); } @@ -128,7 +128,7 @@ static void _call_ctor_QIcon_1694 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIconEngine *arg1 = args.read (heap); + QIconEngine *arg1 = gsi::arg_reader() (args, heap); ret.write (new QIcon (arg1)); } @@ -151,9 +151,9 @@ static void _call_f_actualSize_c4543 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write ((QSize)((QIcon *)cls)->actualSize (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -178,10 +178,10 @@ static void _call_f_actualSize_c5770 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWindow *arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + QWindow *arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write ((QSize)((QIcon *)cls)->actualSize (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -206,10 +206,10 @@ static void _call_f_addFile_6460 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QSize &arg2 = args ? args.read (heap) : (const QSize &)(QSize()); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSize(), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIcon *)cls)->addFile (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -233,9 +233,9 @@ static void _call_f_addPixmap_4755 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIcon *)cls)->addPixmap (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -257,8 +257,8 @@ static void _call_f_availableSizes_c2846 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write > ((QList)((QIcon *)cls)->availableSizes (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -353,7 +353,7 @@ static void _call_f_operator_eq__1787 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon &)((QIcon *)cls)->operator= (arg1)); } @@ -380,11 +380,11 @@ static void _call_f_paint_c8490 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::AlignCenter); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AlignCenter, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIcon *)cls)->paint (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref(), qt_gsi::QtToCppAdaptor(arg5).cref()); } @@ -418,14 +418,14 @@ static void _call_f_paint_c9442 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(Qt::AlignCenter); - const qt_gsi::Converter::target_type & arg7 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg8 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + QPainter *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AlignCenter, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg8 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIcon *)cls)->paint (arg1, arg2, arg3, arg4, arg5, arg6, qt_gsi::QtToCppAdaptor(arg7).cref(), qt_gsi::QtToCppAdaptor(arg8).cref()); } @@ -449,9 +449,9 @@ static void _call_f_pixmap_c4543 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write ((QPixmap)((QIcon *)cls)->pixmap (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -476,10 +476,10 @@ static void _call_f_pixmap_c4164 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write ((QPixmap)((QIcon *)cls)->pixmap (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -502,9 +502,9 @@ static void _call_f_pixmap_c3505 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write ((QPixmap)((QIcon *)cls)->pixmap (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -529,10 +529,10 @@ static void _call_f_pixmap_c5770 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWindow *arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + QWindow *arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write ((QPixmap)((QIcon *)cls)->pixmap (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -551,7 +551,7 @@ static void _call_f_swap_1092 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIcon &arg1 = args.read (heap); + QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIcon *)cls)->swap (arg1); } @@ -573,8 +573,8 @@ static void _call_f_fromTheme_3704 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QIcon &arg2 = args ? args.read (heap) : (const QIcon &)(QIcon()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QIcon(), heap); ret.write ((QIcon)QIcon::fromTheme (arg1, arg2)); } @@ -593,7 +593,7 @@ static void _call_f_hasThemeIcon_2025 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QIcon::hasThemeIcon (arg1)); } @@ -612,7 +612,7 @@ static void _call_f_setThemeName_2025 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QIcon::setThemeName (arg1); } @@ -632,7 +632,7 @@ static void _call_f_setThemeSearchPaths_2437 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QIcon::setThemeSearchPaths (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine.cc b/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine.cc index 734ef0c42..7c9220b91 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQIconEngine.cc @@ -59,9 +59,9 @@ static void _call_f_actualSize_4543 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSize)((QIconEngine *)cls)->actualSize (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -86,10 +86,10 @@ static void _call_f_addFile_6460 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine *)cls)->addFile (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -113,9 +113,9 @@ static void _call_f_addPixmap_4755 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine *)cls)->addPixmap (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -137,8 +137,8 @@ static void _call_f_availableSizes_c2846 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal)); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Normal), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QIcon::Off), heap); ret.write > ((QList)((QIconEngine *)cls)->availableSizes (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -208,10 +208,10 @@ static void _call_f_paint_5848 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine *)cls)->paint (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -235,9 +235,9 @@ static void _call_f_pixmap_4543 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPixmap)((QIconEngine *)cls)->pixmap (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -256,7 +256,7 @@ static void _call_f_read_1697 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEngine *)cls)->read (arg1)); } @@ -277,8 +277,8 @@ static void _call_f_virtual_hook_1715 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - void *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIconEngine *)cls)->virtual_hook (arg1, arg2); } @@ -298,7 +298,7 @@ static void _call_f_write_c1697 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEngine *)cls)->write (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQIconEnginePlugin.cc b/src/gsiqt/qt5/QtGui/gsiDeclQIconEnginePlugin.cc index e5e3c51d8..8e8d13854 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQIconEnginePlugin.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQIconEnginePlugin.cc @@ -70,7 +70,7 @@ static void _call_f_create_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QIconEngine *)((QIconEnginePlugin *)cls)->create (arg1)); } @@ -93,9 +93,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QIconEnginePlugin::tr (arg1, arg2, arg3)); } @@ -118,9 +118,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QIconEnginePlugin::trUtf8 (arg1, arg2, arg3)); } @@ -323,7 +323,7 @@ static void _call_ctor_QIconEnginePlugin_Adaptor_1302 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QIconEnginePlugin_Adaptor (arg1)); } @@ -412,7 +412,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QIconEnginePlugin_Adaptor *)cls)->emitter_QIconEnginePlugin_destroyed_1302 (arg1); } @@ -503,7 +503,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIconEnginePlugin_Adaptor *)cls)->fp_QIconEnginePlugin_isSignalConnected_c2394 (arg1)); } @@ -521,7 +521,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QIconEnginePlugin_Adaptor *)cls)->fp_QIconEnginePlugin_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc b/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc index f6c65cb35..c74fb429a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQImage.cc @@ -166,7 +166,7 @@ static void _call_f_color_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((unsigned int)((QImage *)cls)->color (arg1)); } @@ -230,7 +230,7 @@ static void _call_f_constScanLine_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const unsigned char *)((QImage *)cls)->constScanLine (arg1)); } @@ -251,8 +251,8 @@ static void _call_f_convertToFormat_c4993 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((QImage)((QImage *)cls)->convertToFormat (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -275,9 +275,9 @@ static void _call_f_convertToFormat_c7392 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVector &arg2 = args.read & > (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVector &arg2 = gsi::arg_reader & >() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((QImage)((QImage *)cls)->convertToFormat (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -296,7 +296,7 @@ static void _call_f_copy_c1792 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args ? args.read (heap) : (const QRect &)(QRect()); + const QRect &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRect(), heap); ret.write ((QImage)((QImage *)cls)->copy (arg1)); } @@ -321,10 +321,10 @@ static void _call_f_copy_c2744 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((QImage)((QImage *)cls)->copy (arg1, arg2, arg3, arg4)); } @@ -343,7 +343,7 @@ static void _call_f_createAlphaMask_c3368 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((QImage)((QImage *)cls)->createAlphaMask (arg1)); } @@ -362,7 +362,7 @@ static void _call_f_createHeuristicMask_c864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); ret.write ((QImage)((QImage *)cls)->createHeuristicMask (arg1)); } @@ -383,8 +383,8 @@ static void _call_f_createMaskFromColor_c3198 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::MaskInColor)); + unsigned int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::MaskInColor), heap); ret.write ((QImage)((QImage *)cls)->createMaskFromColor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -479,7 +479,7 @@ static void _call_f_fill_1772 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->fill (arg1); } @@ -499,7 +499,7 @@ static void _call_f_fill_1905 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->fill (arg1); } @@ -519,7 +519,7 @@ static void _call_f_fill_1853 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->fill (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -584,7 +584,7 @@ static void _call_f_invertPixels_2137 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QImage::InvertRgb)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QImage::InvertRgb), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->invertPixels (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -651,8 +651,8 @@ static void _call_f_load_3070 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImage *)cls)->load (arg1, arg2)); } @@ -673,8 +673,8 @@ static void _call_f_load_3648 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QImage *)cls)->load (arg1, arg2)); } @@ -697,9 +697,9 @@ static void _call_f_loadFromData_5018 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const unsigned char *arg1 = args.read (heap); - int arg2 = args.read (heap); - const char *arg3 = args ? args.read (heap) : (const char *)(0); + const unsigned char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QImage *)cls)->loadFromData (arg1, arg2, arg3)); } @@ -720,8 +720,8 @@ static void _call_f_loadFromData_3932 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QImage *)cls)->loadFromData (arg1, arg2)); } @@ -742,8 +742,8 @@ static void _call_f_mirrored_c1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); ret.write ((QImage)((QImage *)cls)->mirrored (arg1, arg2)); } @@ -777,7 +777,7 @@ static void _call_f_operator_excl__eq__c1877 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImage *)cls)->operator!= (arg1)); } @@ -796,7 +796,7 @@ static void _call_f_operator_eq__1877 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write ((QImage &)((QImage *)cls)->operator= (arg1)); } @@ -815,7 +815,7 @@ static void _call_f_operator_eq__eq__c1877 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImage *)cls)->operator== (arg1)); } @@ -851,8 +851,8 @@ static void _call_f_pixel_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((unsigned int)((QImage *)cls)->pixel (arg1, arg2)); } @@ -871,7 +871,7 @@ static void _call_f_pixel_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((unsigned int)((QImage *)cls)->pixel (arg1)); } @@ -907,8 +907,8 @@ static void _call_f_pixelIndex_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QImage *)cls)->pixelIndex (arg1, arg2)); } @@ -927,7 +927,7 @@ static void _call_f_pixelIndex_c1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QImage *)cls)->pixelIndex (arg1)); } @@ -980,9 +980,9 @@ static void _call_f_save_c4307 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((bool)((QImage *)cls)->save (arg1, arg2, arg3)); } @@ -1005,9 +1005,9 @@ static void _call_f_save_c3729 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((bool)((QImage *)cls)->save (arg1, arg2, arg3)); } @@ -1032,10 +1032,10 @@ static void _call_f_scaled_c6100 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QImage)((QImage *)cls)->scaled (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -1058,9 +1058,9 @@ static void _call_f_scaled_c6479 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QImage)((QImage *)cls)->scaled (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -1081,8 +1081,8 @@ static void _call_f_scaledToHeight_c3292 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QImage)((QImage *)cls)->scaledToHeight (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1103,8 +1103,8 @@ static void _call_f_scaledToWidth_c3292 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QImage)((QImage *)cls)->scaledToWidth (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1123,7 +1123,7 @@ static void _call_f_scanLine_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const unsigned char *)((QImage *)cls)->scanLine (arg1)); } @@ -1142,7 +1142,7 @@ static void _call_f_setAlphaChannel_1877 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setAlphaChannel (arg1); } @@ -1164,8 +1164,8 @@ static void _call_f_setColor_2431 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setColor (arg1, arg2); } @@ -1185,7 +1185,7 @@ static void _call_f_setColorCount_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setColorCount (arg1); } @@ -1205,7 +1205,7 @@ static void _call_f_setColorTable_2325 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector arg1 = args.read > (heap); + const QVector arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setColorTable (arg1); } @@ -1225,7 +1225,7 @@ static void _call_f_setDevicePixelRatio_1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setDevicePixelRatio (arg1); } @@ -1245,7 +1245,7 @@ static void _call_f_setDotsPerMeterX_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setDotsPerMeterX (arg1); } @@ -1265,7 +1265,7 @@ static void _call_f_setDotsPerMeterY_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setDotsPerMeterY (arg1); } @@ -1285,7 +1285,7 @@ static void _call_f_setOffset_1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setOffset (arg1); } @@ -1309,9 +1309,9 @@ static void _call_f_setPixel_3090 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - unsigned int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + unsigned int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setPixel (arg1, arg2, arg3); } @@ -1333,8 +1333,8 @@ static void _call_f_setPixel_3580 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setPixel (arg1, arg2); } @@ -1356,8 +1356,8 @@ static void _call_f_setText_3942 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->setText (arg1, arg2); } @@ -1392,7 +1392,7 @@ static void _call_f_swap_1182 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QImage &arg1 = args.read (heap); + QImage &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage *)cls)->swap (arg1); } @@ -1429,8 +1429,8 @@ static void _call_f_transformed_c4548 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QImage)((QImage *)cls)->transformed (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1451,8 +1451,8 @@ static void _call_f_transformed_c4875 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QImage)((QImage *)cls)->transformed (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1473,8 +1473,8 @@ static void _call_f_valid_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImage *)cls)->valid (arg1, arg2)); } @@ -1493,7 +1493,7 @@ static void _call_f_valid_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImage *)cls)->valid (arg1)); } @@ -1531,9 +1531,9 @@ static void _call_f_fromData_5018 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const unsigned char *arg1 = args.read (heap); - int arg2 = args.read (heap); - const char *arg3 = args ? args.read (heap) : (const char *)(0); + const unsigned char *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QImage)QImage::fromData (arg1, arg2, arg3)); } @@ -1554,8 +1554,8 @@ static void _call_f_fromData_3932 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QImage)QImage::fromData (arg1, arg2)); } @@ -1574,7 +1574,7 @@ static void _call_f_toImageFormat_1648 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPixelFormat arg1 = args.read (heap); + QPixelFormat arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QImage::toImageFormat (arg1))); } @@ -1593,7 +1593,7 @@ static void _call_f_toPixelFormat_1733 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPixelFormat)QImage::toPixelFormat (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1616,9 +1616,9 @@ static void _call_f_trueMatrix_3341 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QMatrix)QImage::trueMatrix (arg1, arg2, arg3)); } @@ -1641,9 +1641,9 @@ static void _call_f_trueMatrix_3668 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QTransform)QImage::trueMatrix (arg1, arg2, arg3)); } @@ -1940,8 +1940,8 @@ static void _call_ctor_QImage_Adaptor_3430 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QImage_Adaptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1963,9 +1963,9 @@ static void _call_ctor_QImage_Adaptor_3051 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QImage_Adaptor (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -1985,8 +1985,8 @@ static void _call_ctor_QImage_Adaptor_3648 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QImage_Adaptor (arg1, arg2)); } @@ -2004,7 +2004,7 @@ static void _call_ctor_QImage_Adaptor_1877 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write (new QImage_Adaptor (arg1)); } @@ -2024,8 +2024,8 @@ static void _call_fp_convertToFormat_helper_c4993 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QFlags arg2 = args.read > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((QImage)((QImage_Adaptor *)cls)->fp_QImage_convertToFormat_helper_c4993 (arg1, arg2)); } @@ -2045,8 +2045,8 @@ static void _call_fp_convertToFormat_inplace_4993 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QFlags arg2 = args.read > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QImage_Adaptor *)cls)->fp_QImage_convertToFormat_inplace_4993 (arg1, arg2)); } @@ -2113,8 +2113,8 @@ static void _call_fp_mirrored_helper_c1620 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); - bool arg2 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); ret.write ((QImage)((QImage_Adaptor *)cls)->fp_QImage_mirrored_helper_c1620 (arg1, arg2)); } @@ -2134,8 +2134,8 @@ static void _call_fp_mirrored_inplace_1620 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); - bool arg2 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImage_Adaptor *)cls)->fp_QImage_mirrored_inplace_1620 (arg1, arg2); } @@ -2246,8 +2246,8 @@ static void _call_fp_smoothScaled_c1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QImage)((QImage_Adaptor *)cls)->fp_QImage_smoothScaled_c1426 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQImageIOHandler.cc b/src/gsiqt/qt5/QtGui/gsiDeclQImageIOHandler.cc index 04996c2bc..061fa5df7 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQImageIOHandler.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQImageIOHandler.cc @@ -143,7 +143,7 @@ static void _call_f_jumpToImage_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOHandler *)cls)->jumpToImage (arg1)); } @@ -222,7 +222,7 @@ static void _call_f_option_c3086 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QImageIOHandler *)cls)->option (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -241,7 +241,7 @@ static void _call_f_read_1186 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QImage *arg1 = args.read (heap); + QImage *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOHandler *)cls)->read (arg1)); } @@ -260,7 +260,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOHandler *)cls)->setDevice (arg1); } @@ -280,7 +280,7 @@ static void _call_f_setFormat_2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOHandler *)cls)->setFormat (arg1); } @@ -300,7 +300,7 @@ static void _call_f_setFormat_c2309 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOHandler *)cls)->setFormat (arg1); } @@ -322,8 +322,8 @@ static void _call_f_setOption_5097 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageIOHandler *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -343,7 +343,7 @@ static void _call_f_supportsOption_c3086 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QImageIOHandler *)cls)->supportsOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -362,7 +362,7 @@ static void _call_f_write_1877 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOHandler *)cls)->write (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQImageIOPlugin.cc b/src/gsiqt/qt5/QtGui/gsiDeclQImageIOPlugin.cc index 6ddf8f5c7..0cc426dde 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQImageIOPlugin.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQImageIOPlugin.cc @@ -73,8 +73,8 @@ static void _call_f_capabilities_c3648 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QImageIOPlugin *)cls)->capabilities (arg1, arg2)); } @@ -95,8 +95,8 @@ static void _call_f_create_c3648 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write ((QImageIOHandler *)((QImageIOPlugin *)cls)->create (arg1, arg2)); } @@ -119,9 +119,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QImageIOPlugin::tr (arg1, arg2, arg3)); } @@ -144,9 +144,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QImageIOPlugin::trUtf8 (arg1, arg2, arg3)); } @@ -369,7 +369,7 @@ static void _call_ctor_QImageIOPlugin_Adaptor_1302 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QImageIOPlugin_Adaptor (arg1)); } @@ -487,7 +487,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QImageIOPlugin_Adaptor *)cls)->emitter_QImageIOPlugin_destroyed_1302 (arg1); } @@ -578,7 +578,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageIOPlugin_Adaptor *)cls)->fp_QImageIOPlugin_isSignalConnected_c2394 (arg1)); } @@ -596,7 +596,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QImageIOPlugin_Adaptor *)cls)->fp_QImageIOPlugin_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQImageReader.cc b/src/gsiqt/qt5/QtGui/gsiDeclQImageReader.cc index f9d4ccf2f..4591d3bcc 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQImageReader.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQImageReader.cc @@ -72,8 +72,8 @@ static void _call_ctor_QImageReader_3648 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QImageReader (arg1, arg2)); } @@ -94,8 +94,8 @@ static void _call_ctor_QImageReader_4226 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QImageReader (arg1, arg2)); } @@ -339,7 +339,7 @@ static void _call_f_jumpToImage_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageReader *)cls)->jumpToImage (arg1)); } @@ -433,7 +433,7 @@ static void _call_f_read_1186 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QImage *arg1 = args.read (heap); + QImage *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageReader *)cls)->read (arg1)); } @@ -482,7 +482,7 @@ static void _call_f_setAutoDetectImageFormat_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setAutoDetectImageFormat (arg1); } @@ -502,7 +502,7 @@ static void _call_f_setAutoTransform_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setAutoTransform (arg1); } @@ -522,7 +522,7 @@ static void _call_f_setBackgroundColor_1905 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setBackgroundColor (arg1); } @@ -542,7 +542,7 @@ static void _call_f_setClipRect_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setClipRect (arg1); } @@ -562,7 +562,7 @@ static void _call_f_setDecideFormatFromContent_864 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setDecideFormatFromContent (arg1); } @@ -582,7 +582,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setDevice (arg1); } @@ -602,7 +602,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setFileName (arg1); } @@ -622,7 +622,7 @@ static void _call_f_setFormat_2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setFormat (arg1); } @@ -642,7 +642,7 @@ static void _call_f_setQuality_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setQuality (arg1); } @@ -662,7 +662,7 @@ static void _call_f_setScaledClipRect_1792 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setScaledClipRect (arg1); } @@ -682,7 +682,7 @@ static void _call_f_setScaledSize_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageReader *)cls)->setScaledSize (arg1); } @@ -762,7 +762,7 @@ static void _call_f_supportsOption_c3086 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QImageReader *)cls)->supportsOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -781,7 +781,7 @@ static void _call_f_text_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QImageReader *)cls)->text (arg1)); } @@ -830,7 +830,7 @@ static void _call_f_imageFormat_2025 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)QImageReader::imageFormat (arg1)); } @@ -849,7 +849,7 @@ static void _call_f_imageFormat_1447 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)QImageReader::imageFormat (arg1)); } @@ -902,9 +902,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QImageReader::tr (arg1, arg2, arg3)); } @@ -927,9 +927,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QImageReader::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQImageWriter.cc b/src/gsiqt/qt5/QtGui/gsiDeclQImageWriter.cc index 2a5ee8714..c02a8a542 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQImageWriter.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQImageWriter.cc @@ -69,8 +69,8 @@ static void _call_ctor_QImageWriter_3648 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write (new QImageWriter (arg1, arg2)); } @@ -91,8 +91,8 @@ static void _call_ctor_QImageWriter_4226 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QImageWriter (arg1, arg2)); } @@ -291,7 +291,7 @@ static void _call_f_setCompression_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setCompression (arg1); } @@ -311,7 +311,7 @@ static void _call_f_setDescription_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setDescription (arg1); } @@ -331,7 +331,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setDevice (arg1); } @@ -351,7 +351,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setFileName (arg1); } @@ -371,7 +371,7 @@ static void _call_f_setFormat_2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setFormat (arg1); } @@ -391,7 +391,7 @@ static void _call_f_setGamma_970 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setGamma (arg1); } @@ -411,7 +411,7 @@ static void _call_f_setOptimizedWrite_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setOptimizedWrite (arg1); } @@ -431,7 +431,7 @@ static void _call_f_setProgressiveScanWrite_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setProgressiveScanWrite (arg1); } @@ -451,7 +451,7 @@ static void _call_f_setQuality_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setQuality (arg1); } @@ -471,7 +471,7 @@ static void _call_f_setSubType_2309 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setSubType (arg1); } @@ -493,8 +493,8 @@ static void _call_f_setText_3942 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setText (arg1, arg2); } @@ -514,7 +514,7 @@ static void _call_f_setTransformation_4161 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageWriter *)cls)->setTransformation (arg1); } @@ -564,7 +564,7 @@ static void _call_f_supportsOption_c3086 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QImageWriter *)cls)->supportsOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -598,7 +598,7 @@ static void _call_f_write_1877 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageWriter *)cls)->write (arg1)); } @@ -651,9 +651,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QImageWriter::tr (arg1, arg2, arg3)); } @@ -676,9 +676,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QImageWriter::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQInputEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQInputEvent.cc index b8bf78327..4a9ef13a9 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQInputEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQInputEvent.cc @@ -66,7 +66,7 @@ static void _call_f_setModifiers_3077 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputEvent *)cls)->setModifiers (arg1); } @@ -86,7 +86,7 @@ static void _call_f_setTimestamp_2348 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args.read (heap); + unsigned long int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputEvent *)cls)->setTimestamp (arg1); } @@ -168,8 +168,8 @@ static void _call_ctor_QInputEvent_Adaptor_4534 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::NoModifier); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::NoModifier, heap); ret.write (new QInputEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethod.cc b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethod.cc index f185bf1ff..23ed8f77b 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethod.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethod.cc @@ -164,8 +164,8 @@ static void _call_f_invokeAction_3035 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputMethod *)cls)->invokeAction (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -261,7 +261,7 @@ static void _call_f_setInputItemRectangle_1862 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputMethod *)cls)->setInputItemRectangle (arg1); } @@ -281,7 +281,7 @@ static void _call_f_setInputItemTransform_2350 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputMethod *)cls)->setInputItemTransform (arg1); } @@ -301,7 +301,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputMethod *)cls)->setVisible (arg1); } @@ -337,7 +337,7 @@ static void _call_f_update_3116 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputMethod *)cls)->update (arg1); } @@ -359,8 +359,8 @@ static void _call_f_queryFocusObject_3554 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QVariant arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QVariant arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)QInputMethod::queryFocusObject (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -383,9 +383,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QInputMethod::tr (arg1, arg2, arg3)); } @@ -408,9 +408,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QInputMethod::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent.cc index 345c466af..15aadc83b 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent.cc @@ -68,8 +68,8 @@ static void _call_ctor_QInputMethodEvent_6641 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); ret.write (new QInputMethodEvent (arg1, arg2)); } @@ -88,7 +88,7 @@ static void _call_ctor_QInputMethodEvent_3045 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QInputMethodEvent &arg1 = args.read (heap); + const QInputMethodEvent &arg1 = gsi::arg_reader() (args, heap); ret.write (new QInputMethodEvent (arg1)); } @@ -186,9 +186,9 @@ static void _call_f_setCommitString_3343 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - int arg3 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputMethodEvent *)cls)->setCommitString (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent_Attribute.cc b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent_Attribute.cc index 32609e53d..8cb6a6bfe 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent_Attribute.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodEvent_Attribute.cc @@ -56,10 +56,10 @@ static void _call_ctor_QInputMethodEvent_Attribute_6102 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - QVariant arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + QVariant arg4 = gsi::arg_reader() (args, heap); ret.write (new QInputMethodEvent::Attribute (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodQueryEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodQueryEvent.cc index e47a2a2c1..35744406f 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodQueryEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQInputMethodQueryEvent.cc @@ -68,8 +68,8 @@ static void _call_f_setValue_4431 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputMethodQueryEvent *)cls)->setValue (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -89,7 +89,7 @@ static void _call_f_value_c2420 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QInputMethodQueryEvent *)cls)->value (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -146,7 +146,7 @@ static void _call_ctor_QInputMethodQueryEvent_Adaptor_3116 (const qt_gsi::Generi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write (new QInputMethodQueryEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc index a894e326b..70078bda1 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQIntValidator.cc @@ -85,7 +85,7 @@ static void _call_f_fixup_c1330 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator *)cls)->fixup (arg1); } @@ -105,7 +105,7 @@ static void _call_f_setBottom_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator *)cls)->setBottom (arg1); } @@ -127,8 +127,8 @@ static void _call_f_setRange_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator *)cls)->setRange (arg1, arg2); } @@ -148,7 +148,7 @@ static void _call_f_setTop_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QIntValidator *)cls)->setTop (arg1); } @@ -185,8 +185,8 @@ static void _call_f_validate_c2171 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QIntValidator *)cls)->validate (arg1, arg2))); } @@ -209,9 +209,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QIntValidator::tr (arg1, arg2, arg3)); } @@ -234,9 +234,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QIntValidator::trUtf8 (arg1, arg2, arg3)); } @@ -509,7 +509,7 @@ static void _call_ctor_QIntValidator_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QIntValidator_Adaptor (arg1)); } @@ -531,9 +531,9 @@ static void _call_ctor_QIntValidator_Adaptor_2620 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QIntValidator_Adaptor (arg1, arg2, arg3)); } @@ -551,7 +551,7 @@ static void _call_emitter_bottomChanged_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QIntValidator_Adaptor *)cls)->emitter_QIntValidator_bottomChanged_767 (arg1); } @@ -631,7 +631,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QIntValidator_Adaptor *)cls)->emitter_QIntValidator_destroyed_1302 (arg1); } @@ -746,7 +746,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QIntValidator_Adaptor *)cls)->fp_QIntValidator_isSignalConnected_c2394 (arg1)); } @@ -764,7 +764,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QIntValidator_Adaptor *)cls)->fp_QIntValidator_receivers_c1731 (arg1)); } @@ -861,7 +861,7 @@ static void _call_emitter_topChanged_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QIntValidator_Adaptor *)cls)->emitter_QIntValidator_topChanged_767 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQKeyEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQKeyEvent.cc index 7196433a4..b78df6323 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQKeyEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQKeyEvent.cc @@ -96,7 +96,7 @@ static void _call_f_matches_c2869 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QKeyEvent *)cls)->matches (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -286,12 +286,12 @@ static void _call_ctor_QKeyEvent_Adaptor_10234 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - bool arg5 = args ? args.read (heap) : (bool)(false); - unsigned short int arg6 = args ? args.read (heap) : (unsigned short int)(1); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + bool arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); + unsigned short int arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write (new QKeyEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5, arg6)); } @@ -325,15 +325,15 @@ static void _call_ctor_QKeyEvent_Adaptor_13204 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); - quint32 arg4 = args.read (heap); - quint32 arg5 = args.read (heap); - quint32 arg6 = args.read (heap); - const QString &arg7 = args ? args.read (heap) : (const QString &)(QString()); - bool arg8 = args ? args.read (heap) : (bool)(false); - unsigned short int arg9 = args ? args.read (heap) : (unsigned short int)(1); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); + quint32 arg4 = gsi::arg_reader() (args, heap); + quint32 arg5 = gsi::arg_reader() (args, heap); + quint32 arg6 = gsi::arg_reader() (args, heap); + const QString &arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + bool arg8 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); + unsigned short int arg9 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write (new QKeyEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQKeySequence.cc b/src/gsiqt/qt5/QtGui/gsiDeclQKeySequence.cc index 23ae2491a..4c55a49e8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQKeySequence.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQKeySequence.cc @@ -67,8 +67,8 @@ static void _call_ctor_QKeySequence_5114 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QKeySequence::NativeText)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QKeySequence::NativeText), heap); ret.write (new QKeySequence (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -93,10 +93,10 @@ static void _call_ctor_QKeySequence_2744 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - int arg3 = args ? args.read (heap) : (int)(0); - int arg4 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QKeySequence (arg1, arg2, arg3, arg4)); } @@ -115,7 +115,7 @@ static void _call_ctor_QKeySequence_2516 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write (new QKeySequence (arg1)); } @@ -134,7 +134,7 @@ static void _call_ctor_QKeySequence_2869 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QKeySequence (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -198,7 +198,7 @@ static void _call_f_matches_c2516 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QKeySequence *)cls)->matches (arg1))); } @@ -217,7 +217,7 @@ static void _call_f_operator_excl__eq__c2516 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequence *)cls)->operator!= (arg1)); } @@ -236,7 +236,7 @@ static void _call_f_operator_lt__c2516 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequence *)cls)->operator< (arg1)); } @@ -255,7 +255,7 @@ static void _call_f_operator_lt__eq__c2516 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequence *)cls)->operator<= (arg1)); } @@ -274,7 +274,7 @@ static void _call_f_operator_eq__2516 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write ((QKeySequence &)((QKeySequence *)cls)->operator= (arg1)); } @@ -293,7 +293,7 @@ static void _call_f_operator_eq__eq__c2516 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequence *)cls)->operator== (arg1)); } @@ -312,7 +312,7 @@ static void _call_f_operator_gt__c2516 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequence *)cls)->operator> (arg1)); } @@ -331,7 +331,7 @@ static void _call_f_operator_gt__eq__c2516 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequence *)cls)->operator>= (arg1)); } @@ -350,7 +350,7 @@ static void _call_f_operator_index__c1772 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QKeySequence *)cls)->operator[] (arg1)); } @@ -369,7 +369,7 @@ static void _call_f_swap_1821 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QKeySequence &arg1 = args.read (heap); + QKeySequence &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequence *)cls)->swap (arg1); } @@ -389,7 +389,7 @@ static void _call_f_toString_c3197 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QKeySequence::PortableText)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QKeySequence::PortableText), heap); ret.write ((QString)((QKeySequence *)cls)->toString (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -410,8 +410,8 @@ static void _call_f_fromString_5114 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QKeySequence::PortableText)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QKeySequence::PortableText), heap); ret.write ((QKeySequence)QKeySequence::fromString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -430,7 +430,7 @@ static void _call_f_keyBindings_2869 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QList)QKeySequence::keyBindings (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -451,8 +451,8 @@ static void _call_f_listFromString_5114 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QKeySequence::PortableText)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QKeySequence::PortableText), heap); ret.write > ((QList)QKeySequence::listFromString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -473,8 +473,8 @@ static void _call_f_listToString_6220 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QKeySequence::PortableText)); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QKeySequence::PortableText), heap); ret.write ((QString)QKeySequence::listToString (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -493,7 +493,7 @@ static void _call_f_mnemonic_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QKeySequence)QKeySequence::mnemonic (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQLinearGradient.cc b/src/gsiqt/qt5/QtGui/gsiDeclQLinearGradient.cc index d4ea4aaac..4fd3df38e 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQLinearGradient.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQLinearGradient.cc @@ -70,8 +70,8 @@ static void _call_ctor_QLinearGradient_3864 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); ret.write (new QLinearGradient (arg1, arg2)); } @@ -96,10 +96,10 @@ static void _call_ctor_QLinearGradient_3960 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write (new QLinearGradient (arg1, arg2, arg3, arg4)); } @@ -133,7 +133,7 @@ static void _call_f_setFinalStop_1986 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLinearGradient *)cls)->setFinalStop (arg1); } @@ -155,8 +155,8 @@ static void _call_f_setFinalStop_2034 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLinearGradient *)cls)->setFinalStop (arg1, arg2); } @@ -176,7 +176,7 @@ static void _call_f_setStart_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLinearGradient *)cls)->setStart (arg1); } @@ -198,8 +198,8 @@ static void _call_f_setStart_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLinearGradient *)cls)->setStart (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQMatrix.cc b/src/gsiqt/qt5/QtGui/gsiDeclQMatrix.cc index e203a5b03..57ee38d97 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQMatrix.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQMatrix.cc @@ -85,12 +85,12 @@ static void _call_ctor_QMatrix_5886 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); ret.write (new QMatrix (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -109,7 +109,7 @@ static void _call_ctor_QMatrix_2023 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMatrix (arg1)); } @@ -173,7 +173,7 @@ static void _call_f_inverted_c1050 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args ? args.read (heap) : (bool *)(0); + bool *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QMatrix)((QMatrix *)cls)->inverted (arg1)); } @@ -288,10 +288,10 @@ static void _call_f_map_c3116 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix *)cls)->map (arg1, arg2, arg3, arg4); } @@ -317,10 +317,10 @@ static void _call_f_map_c4332 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix *)cls)->map (arg1, arg2, arg3, arg4); } @@ -340,7 +340,7 @@ static void _call_f_map_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QMatrix *)cls)->map (arg1)); } @@ -359,7 +359,7 @@ static void _call_f_map_c1986 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QMatrix *)cls)->map (arg1)); } @@ -378,7 +378,7 @@ static void _call_f_map_c1786 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLine &arg1 = args.read (heap); + const QLine &arg1 = gsi::arg_reader() (args, heap); ret.write ((QLine)((QMatrix *)cls)->map (arg1)); } @@ -397,7 +397,7 @@ static void _call_f_map_c1856 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QLineF)((QMatrix *)cls)->map (arg1)); } @@ -416,7 +416,7 @@ static void _call_f_map_c2208 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QMatrix *)cls)->map (arg1)); } @@ -435,7 +435,7 @@ static void _call_f_map_c2138 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QMatrix *)cls)->map (arg1)); } @@ -454,7 +454,7 @@ static void _call_f_map_c2006 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QMatrix *)cls)->map (arg1)); } @@ -473,7 +473,7 @@ static void _call_f_map_c2514 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QMatrix *)cls)->map (arg1)); } @@ -492,7 +492,7 @@ static void _call_f_mapRect_c1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QMatrix *)cls)->mapRect (arg1)); } @@ -511,7 +511,7 @@ static void _call_f_mapRect_c1862 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QMatrix *)cls)->mapRect (arg1)); } @@ -530,7 +530,7 @@ static void _call_f_mapToPolygon_c1792 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QMatrix *)cls)->mapToPolygon (arg1)); } @@ -549,7 +549,7 @@ static void _call_f_operator_excl__eq__c2023 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMatrix *)cls)->operator!= (arg1)); } @@ -568,7 +568,7 @@ static void _call_f_operator_star__c2023 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix)((QMatrix *)cls)->operator* (arg1)); } @@ -587,7 +587,7 @@ static void _call_f_operator_star__eq__2023 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix &)((QMatrix *)cls)->operator*= (arg1)); } @@ -606,7 +606,7 @@ static void _call_f_operator_eq__2023 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix &)((QMatrix *)cls)->operator= (arg1)); } @@ -625,7 +625,7 @@ static void _call_f_operator_eq__eq__c2023 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMatrix *)cls)->operator== (arg1)); } @@ -660,7 +660,7 @@ static void _call_f_rotate_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix &)((QMatrix *)cls)->rotate (arg1)); } @@ -681,8 +681,8 @@ static void _call_f_scale_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QMatrix &)((QMatrix *)cls)->scale (arg1, arg2)); } @@ -711,12 +711,12 @@ static void _call_f_setMatrix_5886 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix *)cls)->setMatrix (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -738,8 +738,8 @@ static void _call_f_shear_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QMatrix &)((QMatrix *)cls)->shear (arg1, arg2)); } @@ -760,8 +760,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QMatrix &)((QMatrix *)cls)->translate (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQMatrix4x4.cc b/src/gsiqt/qt5/QtGui/gsiDeclQMatrix4x4.cc index 8fab7b0dd..613805ce3 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQMatrix4x4.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQMatrix4x4.cc @@ -74,7 +74,7 @@ static void _call_ctor_QMatrix4x4_1851 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const float *arg1 = args.read (heap); + const float *arg1 = gsi::arg_reader() (args, heap); ret.write (new QMatrix4x4 (arg1)); } @@ -123,22 +123,22 @@ static void _call_ctor_QMatrix4x4_13900 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); - float arg3 = args.read (heap); - float arg4 = args.read (heap); - float arg5 = args.read (heap); - float arg6 = args.read (heap); - float arg7 = args.read (heap); - float arg8 = args.read (heap); - float arg9 = args.read (heap); - float arg10 = args.read (heap); - float arg11 = args.read (heap); - float arg12 = args.read (heap); - float arg13 = args.read (heap); - float arg14 = args.read (heap); - float arg15 = args.read (heap); - float arg16 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); + float arg4 = gsi::arg_reader() (args, heap); + float arg5 = gsi::arg_reader() (args, heap); + float arg6 = gsi::arg_reader() (args, heap); + float arg7 = gsi::arg_reader() (args, heap); + float arg8 = gsi::arg_reader() (args, heap); + float arg9 = gsi::arg_reader() (args, heap); + float arg10 = gsi::arg_reader() (args, heap); + float arg11 = gsi::arg_reader() (args, heap); + float arg12 = gsi::arg_reader() (args, heap); + float arg13 = gsi::arg_reader() (args, heap); + float arg14 = gsi::arg_reader() (args, heap); + float arg15 = gsi::arg_reader() (args, heap); + float arg16 = gsi::arg_reader() (args, heap); ret.write (new QMatrix4x4 (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, arg13, arg14, arg15, arg16)); } @@ -161,9 +161,9 @@ static void _call_ctor_QMatrix4x4_3169 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const float *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const float *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write (new QMatrix4x4 (arg1, arg2, arg3)); } @@ -182,7 +182,7 @@ static void _call_ctor_QMatrix4x4_2350 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMatrix4x4 (arg1)); } @@ -201,7 +201,7 @@ static void _call_ctor_QMatrix4x4_2023 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMatrix4x4 (arg1)); } @@ -220,7 +220,7 @@ static void _call_f_column_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D)((QMatrix4x4 *)cls)->column (arg1)); } @@ -254,7 +254,7 @@ static void _call_f_copyDataTo_c1156 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float *arg1 = args.read (heap); + float *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->copyDataTo (arg1); } @@ -319,7 +319,7 @@ static void _call_f_fill_970 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->fill (arg1); } @@ -365,12 +365,12 @@ static void _call_f_frustum_5280 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); - float arg3 = args.read (heap); - float arg4 = args.read (heap); - float arg5 = args.read (heap); - float arg6 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); + float arg4 = gsi::arg_reader() (args, heap); + float arg5 = gsi::arg_reader() (args, heap); + float arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->frustum (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -390,7 +390,7 @@ static void _call_f_inverted_c1050 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args ? args.read (heap) : (bool *)(0); + bool *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QMatrix4x4)((QMatrix4x4 *)cls)->inverted (arg1)); } @@ -443,9 +443,9 @@ static void _call_f_lookAt_6204 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); - const QVector3D &arg3 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); + const QVector3D &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->lookAt (arg1, arg2, arg3); } @@ -465,7 +465,7 @@ static void _call_f_map_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QMatrix4x4 *)cls)->map (arg1)); } @@ -484,7 +484,7 @@ static void _call_f_map_c1986 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QMatrix4x4 *)cls)->map (arg1)); } @@ -503,7 +503,7 @@ static void _call_f_map_c2140 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D)((QMatrix4x4 *)cls)->map (arg1)); } @@ -522,7 +522,7 @@ static void _call_f_map_c2141 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D)((QMatrix4x4 *)cls)->map (arg1)); } @@ -541,7 +541,7 @@ static void _call_f_mapRect_c1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QMatrix4x4 *)cls)->mapRect (arg1)); } @@ -560,7 +560,7 @@ static void _call_f_mapRect_c1862 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QMatrix4x4 *)cls)->mapRect (arg1)); } @@ -579,7 +579,7 @@ static void _call_f_mapVector_c2140 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D)((QMatrix4x4 *)cls)->mapVector (arg1)); } @@ -598,7 +598,7 @@ static void _call_f_operator_excl__eq__c2247 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix4x4 &arg1 = args.read (heap); + const QMatrix4x4 &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMatrix4x4 *)cls)->operator!= (arg1)); } @@ -619,8 +619,8 @@ static void _call_f_operator_func__c1426 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((const float &)((QMatrix4x4 *)cls)->operator() (arg1, arg2)); } @@ -641,8 +641,8 @@ static void _call_f_operator_func__1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((float &)((QMatrix4x4 *)cls)->operator() (arg1, arg2)); } @@ -661,7 +661,7 @@ static void _call_f_operator_star__eq__2247 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix4x4 &arg1 = args.read (heap); + const QMatrix4x4 &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix4x4 &)((QMatrix4x4 *)cls)->operator*= (arg1)); } @@ -680,7 +680,7 @@ static void _call_f_operator_star__eq__970 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix4x4 &)((QMatrix4x4 *)cls)->operator*= (arg1)); } @@ -699,7 +699,7 @@ static void _call_f_operator_plus__eq__2247 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix4x4 &arg1 = args.read (heap); + const QMatrix4x4 &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix4x4 &)((QMatrix4x4 *)cls)->operator+= (arg1)); } @@ -718,7 +718,7 @@ static void _call_f_operator_minus__eq__2247 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix4x4 &arg1 = args.read (heap); + const QMatrix4x4 &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix4x4 &)((QMatrix4x4 *)cls)->operator-= (arg1)); } @@ -737,7 +737,7 @@ static void _call_f_operator_slash__eq__970 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix4x4 &)((QMatrix4x4 *)cls)->operator/= (arg1)); } @@ -756,7 +756,7 @@ static void _call_f_operator_eq__eq__c2247 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix4x4 &arg1 = args.read (heap); + const QMatrix4x4 &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMatrix4x4 *)cls)->operator== (arg1)); } @@ -791,7 +791,7 @@ static void _call_f_ortho_1792 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->ortho (arg1); } @@ -811,7 +811,7 @@ static void _call_f_ortho_1862 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->ortho (arg1); } @@ -841,12 +841,12 @@ static void _call_f_ortho_5280 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); - float arg3 = args.read (heap); - float arg4 = args.read (heap); - float arg5 = args.read (heap); - float arg6 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); + float arg4 = gsi::arg_reader() (args, heap); + float arg5 = gsi::arg_reader() (args, heap); + float arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->ortho (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -872,10 +872,10 @@ static void _call_f_perspective_3556 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); - float arg3 = args.read (heap); - float arg4 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); + float arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->perspective (arg1, arg2, arg3, arg4); } @@ -897,8 +897,8 @@ static void _call_f_rotate_3002 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->rotate (arg1, arg2); } @@ -924,10 +924,10 @@ static void _call_f_rotate_3556 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); - float arg3 = args.read (heap); - float arg4 = args ? args.read (heap) : (float)(0.0f); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); + float arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0.0f, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->rotate (arg1, arg2, arg3, arg4); } @@ -947,7 +947,7 @@ static void _call_f_rotate_2456 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QQuaternion &arg1 = args.read (heap); + const QQuaternion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->rotate (arg1); } @@ -967,7 +967,7 @@ static void _call_f_row_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D)((QMatrix4x4 *)cls)->row (arg1)); } @@ -986,7 +986,7 @@ static void _call_f_scale_2140 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->scale (arg1); } @@ -1008,8 +1008,8 @@ static void _call_f_scale_1832 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->scale (arg1, arg2); } @@ -1033,9 +1033,9 @@ static void _call_f_scale_2694 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); - float arg3 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->scale (arg1, arg2, arg3); } @@ -1055,7 +1055,7 @@ static void _call_f_scale_970 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->scale (arg1); } @@ -1077,8 +1077,8 @@ static void _call_f_setColumn_2800 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVector4D &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVector4D &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->setColumn (arg1, arg2); } @@ -1100,8 +1100,8 @@ static void _call_f_setRow_2800 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVector4D &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVector4D &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->setRow (arg1, arg2); } @@ -1167,7 +1167,7 @@ static void _call_f_toTransform_c970 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform)((QMatrix4x4 *)cls)->toTransform (arg1)); } @@ -1186,7 +1186,7 @@ static void _call_f_translate_2140 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->translate (arg1); } @@ -1208,8 +1208,8 @@ static void _call_f_translate_1832 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->translate (arg1, arg2); } @@ -1233,9 +1233,9 @@ static void _call_f_translate_2694 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); - float arg3 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->translate (arg1, arg2, arg3); } @@ -1270,7 +1270,7 @@ static void _call_f_viewport_1862 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->viewport (arg1); } @@ -1300,12 +1300,12 @@ static void _call_f_viewport_5280 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); - float arg3 = args.read (heap); - float arg4 = args.read (heap); - float arg5 = args ? args.read (heap) : (float)(0.0f); - float arg6 = args ? args.read (heap) : (float)(1.0f); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); + float arg4 = gsi::arg_reader() (args, heap); + float arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0.0f, heap); + float arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0f, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMatrix4x4 *)cls)->viewport (arg1, arg2, arg3, arg4, arg5, arg6); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQMouseEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQMouseEvent.cc index b5bae0713..c812bb5a5 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQMouseEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQMouseEvent.cc @@ -316,11 +316,11 @@ static void _call_ctor_QMouseEvent_Adaptor_10704 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPointF &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - QFlags arg4 = args.read > (heap); - QFlags arg5 = args.read > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg4 = gsi::arg_reader >() (args, heap); + QFlags arg5 = gsi::arg_reader >() (args, heap); ret.write (new QMouseEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4, arg5)); } @@ -348,12 +348,12 @@ static void _call_ctor_QMouseEvent_Adaptor_12582 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPointF &arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); - QFlags arg5 = args.read > (heap); - QFlags arg6 = args.read > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg5 = gsi::arg_reader >() (args, heap); + QFlags arg6 = gsi::arg_reader >() (args, heap); ret.write (new QMouseEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref(), arg5, arg6)); } @@ -383,13 +383,13 @@ static void _call_ctor_QMouseEvent_Adaptor_14460 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPointF &arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); - const QPointF &arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args.read::target_type & > (heap); - QFlags arg6 = args.read > (heap); - QFlags arg7 = args.read > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); + const QPointF &arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg6 = gsi::arg_reader >() (args, heap); + QFlags arg7 = gsi::arg_reader >() (args, heap); ret.write (new QMouseEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref(), arg6, arg7)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQMoveEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQMoveEvent.cc index 0cbfb09e0..59027f3d9 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQMoveEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQMoveEvent.cc @@ -121,8 +121,8 @@ static void _call_ctor_QMoveEvent_Adaptor_3724 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); ret.write (new QMoveEvent_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQMovie.cc b/src/gsiqt/qt5/QtGui/gsiDeclQMovie.cc index 3384e6959..2da552e8d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQMovie.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQMovie.cc @@ -240,7 +240,7 @@ static void _call_f_jumpToFrame_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMovie *)cls)->jumpToFrame (arg1)); } @@ -319,7 +319,7 @@ static void _call_f_setBackgroundColor_1905 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setBackgroundColor (arg1); } @@ -339,7 +339,7 @@ static void _call_f_setCacheMode_2002 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setCacheMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -359,7 +359,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setDevice (arg1); } @@ -379,7 +379,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setFileName (arg1); } @@ -399,7 +399,7 @@ static void _call_f_setFormat_2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setFormat (arg1); } @@ -419,7 +419,7 @@ static void _call_f_setPaused_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setPaused (arg1); } @@ -439,7 +439,7 @@ static void _call_f_setScaledSize_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setScaledSize (arg1); } @@ -459,7 +459,7 @@ static void _call_f_setSpeed_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMovie *)cls)->setSpeed (arg1); } @@ -560,9 +560,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMovie::tr (arg1, arg2, arg3)); } @@ -585,9 +585,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMovie::trUtf8 (arg1, arg2, arg3)); } @@ -886,7 +886,7 @@ static void _call_ctor_QMovie_Adaptor_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMovie_Adaptor (arg1)); } @@ -908,9 +908,9 @@ static void _call_ctor_QMovie_Adaptor_4842 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMovie_Adaptor (arg1, arg2, arg3)); } @@ -932,9 +932,9 @@ static void _call_ctor_QMovie_Adaptor_5420 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMovie_Adaptor (arg1, arg2, arg3)); } @@ -1000,7 +1000,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMovie_Adaptor *)cls)->emitter_QMovie_destroyed_1302 (arg1); } @@ -1042,7 +1042,7 @@ static void _call_emitter_error_3311 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMovie_Adaptor *)cls)->emitter_QMovie_error_3311 (arg1); } @@ -1123,7 +1123,7 @@ static void _call_emitter_frameChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QMovie_Adaptor *)cls)->emitter_QMovie_frameChanged_767 (arg1); } @@ -1141,7 +1141,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMovie_Adaptor *)cls)->fp_QMovie_isSignalConnected_c2394 (arg1)); } @@ -1159,7 +1159,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMovie_Adaptor *)cls)->fp_QMovie_receivers_c1731 (arg1)); } @@ -1177,7 +1177,7 @@ static void _call_emitter_resized_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QMovie_Adaptor *)cls)->emitter_QMovie_resized_1805 (arg1); } @@ -1237,7 +1237,7 @@ static void _call_emitter_stateChanged_2170 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMovie_Adaptor *)cls)->emitter_QMovie_stateChanged_2170 (arg1); } @@ -1279,7 +1279,7 @@ static void _call_emitter_updated_1792 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ((QMovie_Adaptor *)cls)->emitter_QMovie_updated_1792 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQNativeGestureEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQNativeGestureEvent.cc index 542e8ccec..8579e0b3c 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQNativeGestureEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQNativeGestureEvent.cc @@ -65,13 +65,13 @@ static void _call_ctor_QNativeGestureEvent_12349 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPointF &arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); - const QPointF &arg4 = args.read (heap); - double arg5 = args.read (heap); - unsigned long int arg6 = args.read (heap); - quint64 arg7 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); + const QPointF &arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + unsigned long int arg6 = gsi::arg_reader() (args, heap); + quint64 arg7 = gsi::arg_reader() (args, heap); ret.write (new QNativeGestureEvent (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5, arg6, arg7)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc index 68ab4cc86..1230c84f1 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQOffscreenSurface.cc @@ -156,7 +156,7 @@ static void _call_f_setFormat_2724 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSurfaceFormat &arg1 = args.read (heap); + const QSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QOffscreenSurface *)cls)->setFormat (arg1); } @@ -176,7 +176,7 @@ static void _call_f_setScreen_1311 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScreen *arg1 = args.read (heap); + QScreen *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QOffscreenSurface *)cls)->setScreen (arg1); } @@ -230,9 +230,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QOffscreenSurface::tr (arg1, arg2, arg3)); } @@ -255,9 +255,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QOffscreenSurface::trUtf8 (arg1, arg2, arg3)); } @@ -556,7 +556,7 @@ static void _call_ctor_QOffscreenSurface_Adaptor_1311 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScreen *arg1 = args ? args.read (heap) : (QScreen *)(0); + QScreen *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QOffscreenSurface_Adaptor (arg1)); } @@ -622,7 +622,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QOffscreenSurface_Adaptor *)cls)->emitter_QOffscreenSurface_destroyed_1302 (arg1); } @@ -732,7 +732,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QOffscreenSurface_Adaptor *)cls)->fp_QOffscreenSurface_isSignalConnected_c2394 (arg1)); } @@ -750,7 +750,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QOffscreenSurface_Adaptor *)cls)->fp_QOffscreenSurface_receivers_c1731 (arg1)); } @@ -768,7 +768,7 @@ static void _call_emitter_screenChanged_1311 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScreen *arg1 = args.read (heap); + QScreen *arg1 = gsi::arg_reader() (args, heap); ((QOffscreenSurface_Adaptor *)cls)->emitter_QOffscreenSurface_screenChanged_1311 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPageLayout.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPageLayout.cc index 14e41a60b..820b10afd 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPageLayout.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPageLayout.cc @@ -78,11 +78,11 @@ static void _call_ctor_QPageLayout_11008 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QMarginsF &arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QPageLayout::Point)); - const QMarginsF &arg5 = args ? args.read (heap) : (const QMarginsF &)(QMarginsF(0, 0, 0, 0)); + const QPageSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QMarginsF &arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPageLayout::Point), heap); + const QMarginsF &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QMarginsF(0, 0, 0, 0), heap); ret.write (new QPageLayout (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, qt_gsi::QtToCppAdaptor(arg4).cref(), arg5)); } @@ -101,7 +101,7 @@ static void _call_ctor_QPageLayout_2413 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageLayout &arg1 = args.read (heap); + const QPageLayout &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPageLayout (arg1)); } @@ -135,7 +135,7 @@ static void _call_f_fullRect_c2068 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QRectF)((QPageLayout *)cls)->fullRect (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -154,7 +154,7 @@ static void _call_f_fullRectPixels_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QPageLayout *)cls)->fullRectPixels (arg1)); } @@ -188,7 +188,7 @@ static void _call_f_isEquivalentTo_c2413 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageLayout &arg1 = args.read (heap); + const QPageLayout &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPageLayout *)cls)->isEquivalentTo (arg1)); } @@ -237,7 +237,7 @@ static void _call_f_margins_c2068 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QMarginsF)((QPageLayout *)cls)->margins (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -256,7 +256,7 @@ static void _call_f_marginsPixels_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMargins)((QPageLayout *)cls)->marginsPixels (arg1)); } @@ -335,7 +335,7 @@ static void _call_f_operator_eq__2413 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageLayout &arg1 = args.read (heap); + const QPageLayout &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPageLayout &)((QPageLayout *)cls)->operator= (arg1)); } @@ -399,7 +399,7 @@ static void _call_f_paintRect_c2068 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QRectF)((QPageLayout *)cls)->paintRect (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -418,7 +418,7 @@ static void _call_f_paintRectPixels_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QPageLayout *)cls)->paintRectPixels (arg1)); } @@ -452,7 +452,7 @@ static void _call_f_setBottomMargin_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPageLayout *)cls)->setBottomMargin (arg1)); } @@ -471,7 +471,7 @@ static void _call_f_setLeftMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPageLayout *)cls)->setLeftMargin (arg1)); } @@ -490,7 +490,7 @@ static void _call_f_setMargins_2185 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMarginsF &arg1 = args.read (heap); + const QMarginsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPageLayout *)cls)->setMargins (arg1)); } @@ -509,7 +509,7 @@ static void _call_f_setMinimumMargins_2185 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMarginsF &arg1 = args.read (heap); + const QMarginsF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPageLayout *)cls)->setMinimumMargins (arg1); } @@ -529,7 +529,7 @@ static void _call_f_setMode_2041 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPageLayout *)cls)->setMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -549,7 +549,7 @@ static void _call_f_setOrientation_2816 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPageLayout *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -571,8 +571,8 @@ static void _call_f_setPageSize_4263 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageSize &arg1 = args.read (heap); - const QMarginsF &arg2 = args ? args.read (heap) : (const QMarginsF &)(QMarginsF(0, 0, 0, 0)); + const QPageSize &arg1 = gsi::arg_reader() (args, heap); + const QMarginsF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QMarginsF(0, 0, 0, 0), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPageLayout *)cls)->setPageSize (arg1, arg2); } @@ -592,7 +592,7 @@ static void _call_f_setRightMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPageLayout *)cls)->setRightMargin (arg1)); } @@ -611,7 +611,7 @@ static void _call_f_setTopMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPageLayout *)cls)->setTopMargin (arg1)); } @@ -630,7 +630,7 @@ static void _call_f_setUnits_2068 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPageLayout *)cls)->setUnits (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -650,7 +650,7 @@ static void _call_f_swap_1718 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPageLayout &arg1 = args.read (heap); + QPageLayout &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPageLayout *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPageSize.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPageSize.cc index a99eaf12f..b7db0a74a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPageSize.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPageSize.cc @@ -69,7 +69,7 @@ static void _call_ctor_QPageSize_2390 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QPageSize (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -92,9 +92,9 @@ static void _call_ctor_QPageSize_6567 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QPageSize::FuzzyMatch)); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPageSize::FuzzyMatch), heap); ret.write (new QPageSize (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -119,10 +119,10 @@ static void _call_ctor_QPageSize_8370 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QPageSize::FuzzyMatch)); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPageSize::FuzzyMatch), heap); ret.write (new QPageSize (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -141,7 +141,7 @@ static void _call_ctor_QPageSize_2186 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageSize &arg1 = args.read (heap); + const QPageSize &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPageSize (arg1)); } @@ -205,7 +205,7 @@ static void _call_f_isEquivalentTo_c2186 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageSize &arg1 = args.read (heap); + const QPageSize &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPageSize *)cls)->isEquivalentTo (arg1)); } @@ -269,7 +269,7 @@ static void _call_f_operator_eq__2186 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageSize &arg1 = args.read (heap); + const QPageSize &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPageSize &)((QPageSize *)cls)->operator= (arg1)); } @@ -288,7 +288,7 @@ static void _call_f_rect_c1841 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QRectF)((QPageSize *)cls)->rect (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -307,7 +307,7 @@ static void _call_f_rectPixels_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QPageSize *)cls)->rectPixels (arg1)); } @@ -341,7 +341,7 @@ static void _call_f_size_c1841 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSizeF)((QPageSize *)cls)->size (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -360,7 +360,7 @@ static void _call_f_sizePixels_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QPageSize *)cls)->sizePixels (arg1)); } @@ -394,7 +394,7 @@ static void _call_f_swap_1491 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPageSize &arg1 = args.read (heap); + QPageSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPageSize *)cls)->swap (arg1); } @@ -429,7 +429,7 @@ static void _call_f_definitionSize_2390 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSizeF)QPageSize::definitionSize (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -448,7 +448,7 @@ static void _call_f_definitionUnits_2390 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QPageSize::definitionUnits (qt_gsi::QtToCppAdaptor(arg1).cref()))); } @@ -469,8 +469,8 @@ static void _call_f_id_4650 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QPageSize::FuzzyMatch)); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPageSize::FuzzyMatch), heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QPageSize::id (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()))); } @@ -493,9 +493,9 @@ static void _call_f_id_6453 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QPageSize::FuzzyMatch)); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPageSize::FuzzyMatch), heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QPageSize::id (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref()))); } @@ -514,7 +514,7 @@ static void _call_f_id_767 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi::S { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QPageSize::id (arg1))); } @@ -533,7 +533,7 @@ static void _call_f_key_2390 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QPageSize::key (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -552,7 +552,7 @@ static void _call_f_name_2390 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)QPageSize::name (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -573,8 +573,8 @@ static void _call_f_size_4123 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSizeF)QPageSize::size (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -595,8 +595,8 @@ static void _call_f_sizePixels_3049 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)QPageSize::sizePixels (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -615,7 +615,7 @@ static void _call_f_sizePoints_2390 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSize)QPageSize::sizePoints (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -634,7 +634,7 @@ static void _call_f_windowsId_2390 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)QPageSize::windowsId (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice.cc index 4369f8537..f5c762de4 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPagedPaintDevice.cc @@ -133,7 +133,7 @@ static void _call_f_setMargins_3812 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPagedPaintDevice::Margins &arg1 = args.read (heap); + const QPagedPaintDevice::Margins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPagedPaintDevice *)cls)->setMargins (arg1); } @@ -153,7 +153,7 @@ static void _call_f_setPageLayout_2413 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageLayout &arg1 = args.read (heap); + const QPageLayout &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPagedPaintDevice *)cls)->setPageLayout (arg1)); } @@ -172,7 +172,7 @@ static void _call_f_setPageMargins_2185 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMarginsF &arg1 = args.read (heap); + const QMarginsF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPagedPaintDevice *)cls)->setPageMargins (arg1)); } @@ -193,8 +193,8 @@ static void _call_f_setPageMargins_4145 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMarginsF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QMarginsF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPagedPaintDevice *)cls)->setPageMargins (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -213,7 +213,7 @@ static void _call_f_setPageOrientation_2816 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPagedPaintDevice *)cls)->setPageOrientation (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -232,7 +232,7 @@ static void _call_f_setPageSize_2186 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPageSize &arg1 = args.read (heap); + const QPageSize &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPagedPaintDevice *)cls)->setPageSize (arg1)); } @@ -251,7 +251,7 @@ static void _call_f_setPageSize_3006 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPagedPaintDevice *)cls)->setPageSize (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -271,7 +271,7 @@ static void _call_f_setPageSizeMM_1875 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPagedPaintDevice *)cls)->setPageSizeMM (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc index 0db0f507e..e62b021dd 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPaintDeviceWindow.cc @@ -124,7 +124,7 @@ static void _call_f_update_1792 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow *)cls)->update (arg1); } @@ -144,7 +144,7 @@ static void _call_f_update_2006 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintDeviceWindow *)cls)->update (arg1); } @@ -199,9 +199,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPaintDeviceWindow::tr (arg1, arg2, arg3)); } @@ -224,9 +224,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPaintDeviceWindow::trUtf8 (arg1, arg2, arg3)); } @@ -1069,7 +1069,7 @@ static void _call_emitter_contentOrientationChanged_2521 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_contentOrientationChanged_2521 (arg1); } @@ -1111,7 +1111,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_destroyed_1302 (arg1); } @@ -1269,7 +1269,7 @@ static void _call_emitter_focusObjectChanged_1302 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_focusObjectChanged_1302 (arg1); } @@ -1330,7 +1330,7 @@ static void _call_emitter_heightChanged_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_heightChanged_767 (arg1); } @@ -1396,7 +1396,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPaintDeviceWindow_Adaptor *)cls)->fp_QPaintDeviceWindow_isSignalConnected_c2394 (arg1)); } @@ -1462,7 +1462,7 @@ static void _call_emitter_maximumHeightChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_maximumHeightChanged_767 (arg1); } @@ -1480,7 +1480,7 @@ static void _call_emitter_maximumWidthChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_maximumWidthChanged_767 (arg1); } @@ -1521,7 +1521,7 @@ static void _call_emitter_minimumHeightChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_minimumHeightChanged_767 (arg1); } @@ -1539,7 +1539,7 @@ static void _call_emitter_minimumWidthChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_minimumWidthChanged_767 (arg1); } @@ -1557,7 +1557,7 @@ static void _call_emitter_modalityChanged_2216 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_modalityChanged_2216 (arg1); } @@ -1724,7 +1724,7 @@ static void _call_emitter_opacityChanged_1071 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_opacityChanged_1071 (arg1); } @@ -1766,7 +1766,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPaintDeviceWindow_Adaptor *)cls)->fp_QPaintDeviceWindow_receivers_c1731 (arg1)); } @@ -1831,7 +1831,7 @@ static void _call_emitter_screenChanged_1311 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScreen *arg1 = args.read (heap); + QScreen *arg1 = gsi::arg_reader() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_screenChanged_1311 (arg1); } @@ -2030,7 +2030,7 @@ static void _call_emitter_visibilityChanged_2329 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_visibilityChanged_2329 (arg1); } @@ -2048,7 +2048,7 @@ static void _call_emitter_visibleChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_visibleChanged_864 (arg1); } @@ -2090,7 +2090,7 @@ static void _call_emitter_widthChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_widthChanged_767 (arg1); } @@ -2108,7 +2108,7 @@ static void _call_emitter_windowStateChanged_1894 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_windowStateChanged_1894 (arg1); } @@ -2126,7 +2126,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_windowTitleChanged_2025 (arg1); } @@ -2144,7 +2144,7 @@ static void _call_emitter_xChanged_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_xChanged_767 (arg1); } @@ -2162,7 +2162,7 @@ static void _call_emitter_yChanged_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPaintDeviceWindow_Adaptor *)cls)->emitter_QPaintDeviceWindow_yChanged_767 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngine.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngine.cc index d0a992e8f..9c11369c5 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngine.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPaintEngine.cc @@ -62,7 +62,7 @@ static void _call_f_begin_1803 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPaintEngine *)cls)->begin (arg1)); } @@ -81,7 +81,7 @@ static void _call_f_clearDirty_3337 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->clearDirty (arg1); } @@ -116,7 +116,7 @@ static void _call_f_drawEllipse_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->drawEllipse (arg1); } @@ -136,7 +136,7 @@ static void _call_f_drawEllipse_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->drawEllipse (arg1); } @@ -162,10 +162,10 @@ static void _call_f_drawImage_8645 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->drawImage (arg1, arg2, arg3, arg4); } @@ -185,7 +185,7 @@ static void _call_f_drawPath_2514 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->drawPath (arg1); } @@ -209,9 +209,9 @@ static void _call_f_drawPixmap_5525 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->drawPixmap (arg1, arg2, arg3); } @@ -233,8 +233,8 @@ static void _call_f_drawTextItem_4092 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QTextItem &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QTextItem &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->drawTextItem (arg1, arg2); } @@ -258,9 +258,9 @@ static void _call_f_drawTiledPixmap_5649 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->drawTiledPixmap (arg1, arg2, arg3); } @@ -295,7 +295,7 @@ static void _call_f_hasFeature_c4257 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QPaintEngine *)cls)->hasFeature (arg1)); } @@ -374,7 +374,7 @@ static void _call_f_setActive_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->setActive (arg1); } @@ -394,7 +394,7 @@ static void _call_f_setDirty_3337 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->setDirty (arg1); } @@ -414,7 +414,7 @@ static void _call_f_setPaintDevice_1803 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->setPaintDevice (arg1); } @@ -434,7 +434,7 @@ static void _call_f_setSystemClip_2006 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->setSystemClip (arg1); } @@ -454,7 +454,7 @@ static void _call_f_setSystemRect_1792 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->setSystemRect (arg1); } @@ -520,7 +520,7 @@ static void _call_f_testDirty_3337 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QPaintEngine *)cls)->testDirty (arg1)); } @@ -554,7 +554,7 @@ static void _call_f_updateState_3013 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPaintEngineState &arg1 = args.read (heap); + const QPaintEngineState &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPaintEngine *)cls)->updateState (arg1); } @@ -836,7 +836,7 @@ static void _call_ctor_QPaintEngine_Adaptor_4257 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(0); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QPaintEngine_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPaintEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPaintEvent.cc index 769133bdb..82957bba5 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPaintEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPaintEvent.cc @@ -126,7 +126,7 @@ static void _call_ctor_QPaintEvent_Adaptor_2006 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPaintEvent_Adaptor (arg1)); } @@ -144,7 +144,7 @@ static void _call_ctor_QPaintEvent_Adaptor_1792 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPaintEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPainter.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPainter.cc index 2e382495f..c9e67f589 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPainter.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPainter.cc @@ -92,7 +92,7 @@ static void _call_ctor_QPainter_1803 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); ret.write (new QPainter (arg1)); } @@ -141,7 +141,7 @@ static void _call_f_begin_1803 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainter *)cls)->begin (arg1)); } @@ -180,9 +180,9 @@ static void _call_f_boundingRect_4438 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPainter *)cls)->boundingRect (arg1, arg2, arg3)); } @@ -205,9 +205,9 @@ static void _call_f_boundingRect_4368 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QPainter *)cls)->boundingRect (arg1, arg2, arg3)); } @@ -236,12 +236,12 @@ static void _call_f_boundingRect_5320 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - const QString &arg6 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QPainter *)cls)->boundingRect (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -264,9 +264,9 @@ static void _call_f_boundingRect_6119 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QTextOption &arg3 = args ? args.read (heap) : (const QTextOption &)(QTextOption()); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QTextOption &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTextOption(), heap); ret.write ((QRectF)((QPainter *)cls)->boundingRect (arg1, arg2, arg3)); } @@ -454,9 +454,9 @@ static void _call_f_drawArc_3180 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawArc (arg1, arg2, arg3); } @@ -480,9 +480,9 @@ static void _call_f_drawArc_3110 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawArc (arg1, arg2, arg3); } @@ -512,12 +512,12 @@ static void _call_f_drawArc_4062 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - int arg6 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawArc (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -541,9 +541,9 @@ static void _call_f_drawChord_3180 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawChord (arg1, arg2, arg3); } @@ -573,12 +573,12 @@ static void _call_f_drawChord_4062 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - int arg6 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawChord (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -602,9 +602,9 @@ static void _call_f_drawChord_3110 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawChord (arg1, arg2, arg3); } @@ -624,7 +624,7 @@ static void _call_f_drawConvexPolygon_2208 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawConvexPolygon (arg1); } @@ -644,7 +644,7 @@ static void _call_f_drawConvexPolygon_2138 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawConvexPolygon (arg1); } @@ -664,7 +664,7 @@ static void _call_f_drawEllipse_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawEllipse (arg1); } @@ -684,7 +684,7 @@ static void _call_f_drawEllipse_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawEllipse (arg1); } @@ -710,10 +710,10 @@ static void _call_f_drawEllipse_2744 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawEllipse (arg1, arg2, arg3, arg4); } @@ -737,9 +737,9 @@ static void _call_f_drawEllipse_3912 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawEllipse (arg1, arg2, arg3); } @@ -763,9 +763,9 @@ static void _call_f_drawEllipse_3234 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawEllipse (arg1, arg2, arg3); } @@ -787,8 +787,8 @@ static void _call_f_drawGlyphRun_4097 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QGlyphRun &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QGlyphRun &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawGlyphRun (arg1, arg2); } @@ -814,10 +814,10 @@ static void _call_f_drawImage_8645 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2, arg3, arg4); } @@ -843,10 +843,10 @@ static void _call_f_drawImage_8505 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2, arg3, arg4); } @@ -872,10 +872,10 @@ static void _call_f_drawImage_8769 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2, arg3, arg4); } @@ -901,10 +901,10 @@ static void _call_f_drawImage_8629 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2, arg3, arg4); } @@ -926,8 +926,8 @@ static void _call_f_drawImage_3631 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2); } @@ -949,8 +949,8 @@ static void _call_f_drawImage_3561 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2); } @@ -972,8 +972,8 @@ static void _call_f_drawImage_3755 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2); } @@ -995,8 +995,8 @@ static void _call_f_drawImage_3685 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2); } @@ -1030,14 +1030,14 @@ static void _call_f_drawImage_9091 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QImage &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); - int arg5 = args ? args.read (heap) : (int)(0); - int arg6 = args ? args.read (heap) : (int)(-1); - int arg7 = args ? args.read (heap) : (int)(-1); - QFlags arg8 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QImage &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + QFlags arg8 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawImage (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8); } @@ -1057,7 +1057,7 @@ static void _call_f_drawLine_1856 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLine (arg1); } @@ -1077,7 +1077,7 @@ static void _call_f_drawLine_1786 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLine &arg1 = args.read (heap); + const QLine &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLine (arg1); } @@ -1103,10 +1103,10 @@ static void _call_f_drawLine_2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLine (arg1, arg2, arg3, arg4); } @@ -1128,8 +1128,8 @@ static void _call_f_drawLine_3724 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLine (arg1, arg2); } @@ -1151,8 +1151,8 @@ static void _call_f_drawLine_3864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLine (arg1, arg2); } @@ -1172,7 +1172,7 @@ static void _call_f_drawLines_2686 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLines (arg1); } @@ -1192,7 +1192,7 @@ static void _call_f_drawLines_2816 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLines (arg1); } @@ -1212,7 +1212,7 @@ static void _call_f_drawLines_2616 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLines (arg1); } @@ -1232,7 +1232,7 @@ static void _call_f_drawLines_2746 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawLines (arg1); } @@ -1252,7 +1252,7 @@ static void _call_f_drawPath_2514 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPath (arg1); } @@ -1274,8 +1274,8 @@ static void _call_f_drawPicture_4004 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPicture &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPicture &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPicture (arg1, arg2); } @@ -1299,9 +1299,9 @@ static void _call_f_drawPicture_3444 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPicture &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPicture &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPicture (arg1, arg2, arg3); } @@ -1323,8 +1323,8 @@ static void _call_f_drawPicture_3934 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPicture &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPicture &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPicture (arg1, arg2); } @@ -1348,9 +1348,9 @@ static void _call_f_drawPie_3180 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPie (arg1, arg2, arg3); } @@ -1380,12 +1380,12 @@ static void _call_f_drawPie_4062 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - int arg6 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPie (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -1409,9 +1409,9 @@ static void _call_f_drawPie_3110 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPie (arg1, arg2, arg3); } @@ -1435,9 +1435,9 @@ static void _call_f_drawPixmap_5525 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3); } @@ -1461,9 +1461,9 @@ static void _call_f_drawPixmap_5385 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3); } @@ -1499,15 +1499,15 @@ static void _call_f_drawPixmap_7289 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QPixmap &arg5 = args.read (heap); - int arg6 = args.read (heap); - int arg7 = args.read (heap); - int arg8 = args.read (heap); - int arg9 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QPixmap &arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); + int arg7 = gsi::arg_reader() (args, heap); + int arg8 = gsi::arg_reader() (args, heap); + int arg9 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); } @@ -1539,13 +1539,13 @@ static void _call_f_drawPixmap_5971 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - int arg6 = args.read (heap); - int arg7 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); + int arg7 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -1569,9 +1569,9 @@ static void _call_f_drawPixmap_5649 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QRectF &arg3 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3); } @@ -1595,9 +1595,9 @@ static void _call_f_drawPixmap_5509 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3); } @@ -1619,8 +1619,8 @@ static void _call_f_drawPixmap_3895 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2); } @@ -1642,8 +1642,8 @@ static void _call_f_drawPixmap_3825 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2); } @@ -1667,9 +1667,9 @@ static void _call_f_drawPixmap_3335 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3); } @@ -1691,8 +1691,8 @@ static void _call_f_drawPixmap_3701 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2); } @@ -1720,11 +1720,11 @@ static void _call_f_drawPixmap_4653 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QPixmap &arg5 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QPixmap &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmap (arg1, arg2, arg3, arg4, arg5); } @@ -1750,10 +1750,10 @@ static void _call_f_drawPixmapFragments_10038 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainter::PixmapFragment *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(0); + const QPainter::PixmapFragment *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPixmapFragments (arg1, arg2, arg3, arg4); } @@ -1773,7 +1773,7 @@ static void _call_f_drawPoint_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPoint (arg1); } @@ -1793,7 +1793,7 @@ static void _call_f_drawPoint_1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPoint (arg1); } @@ -1815,8 +1815,8 @@ static void _call_f_drawPoint_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPoint (arg1, arg2); } @@ -1836,7 +1836,7 @@ static void _call_f_drawPoints_2208 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPoints (arg1); } @@ -1856,7 +1856,7 @@ static void _call_f_drawPoints_2138 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPoints (arg1); } @@ -1878,8 +1878,8 @@ static void _call_f_drawPolygon_3648 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::OddEvenFill)); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::OddEvenFill), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPolygon (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1901,8 +1901,8 @@ static void _call_f_drawPolygon_3578 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::OddEvenFill)); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::OddEvenFill), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPolygon (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1922,7 +1922,7 @@ static void _call_f_drawPolyline_2208 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPolyline (arg1); } @@ -1942,7 +1942,7 @@ static void _call_f_drawPolyline_2138 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawPolyline (arg1); } @@ -1962,7 +1962,7 @@ static void _call_f_drawRect_1862 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRect (arg1); } @@ -1988,10 +1988,10 @@ static void _call_f_drawRect_2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRect (arg1, arg2, arg3, arg4); } @@ -2011,7 +2011,7 @@ static void _call_f_drawRect_1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRect (arg1); } @@ -2031,7 +2031,7 @@ static void _call_f_drawRects_2692 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRects (arg1); } @@ -2051,7 +2051,7 @@ static void _call_f_drawRects_2622 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRects (arg1); } @@ -2075,9 +2075,9 @@ static void _call_f_drawRoundRect_3180 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(25); - int arg3 = args ? args.read (heap) : (int)(25); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (25, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (25, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRoundRect (arg1, arg2, arg3); } @@ -2107,12 +2107,12 @@ static void _call_f_drawRoundRect_4062 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args ? args.read (heap) : (int)(25); - int arg6 = args ? args.read (heap) : (int)(25); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (25, heap); + int arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (25, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRoundRect (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -2136,9 +2136,9 @@ static void _call_f_drawRoundRect_3110 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(25); - int arg3 = args ? args.read (heap) : (int)(25); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (25, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (25, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRoundRect (arg1, arg2, arg3); } @@ -2164,10 +2164,10 @@ static void _call_f_drawRoundedRect_5229 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize)); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRoundedRect (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -2199,13 +2199,13 @@ static void _call_f_drawRoundedRect_6111 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRoundedRect (arg1, arg2, arg3, arg4, arg5, arg6, qt_gsi::QtToCppAdaptor(arg7).cref()); } @@ -2231,10 +2231,10 @@ static void _call_f_drawRoundedRect_5159 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize)); + const QRect &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawRoundedRect (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -2256,8 +2256,8 @@ static void _call_f_drawStaticText_4309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QStaticText &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QStaticText &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawStaticText (arg1, arg2); } @@ -2279,8 +2279,8 @@ static void _call_f_drawStaticText_4239 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QStaticText &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QStaticText &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawStaticText (arg1, arg2); } @@ -2304,9 +2304,9 @@ static void _call_f_drawStaticText_3749 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QStaticText &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QStaticText &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawStaticText (arg1, arg2, arg3); } @@ -2328,8 +2328,8 @@ static void _call_f_drawText_3903 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2); } @@ -2351,8 +2351,8 @@ static void _call_f_drawText_3833 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2); } @@ -2376,9 +2376,9 @@ static void _call_f_drawText_3343 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2, arg3); } @@ -2404,10 +2404,10 @@ static void _call_f_drawText_5221 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2, arg3, arg4); } @@ -2433,10 +2433,10 @@ static void _call_f_drawText_5501 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QRectF *arg4 = args ? args.read (heap) : (QRectF *)(0); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QRectF *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2, arg3, arg4); } @@ -2462,10 +2462,10 @@ static void _call_f_drawText_5361 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QRect *arg4 = args ? args.read (heap) : (QRect *)(0); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QRect *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2, arg3, arg4); } @@ -2497,13 +2497,13 @@ static void _call_f_drawText_6313 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - QRect *arg7 = args ? args.read (heap) : (QRect *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + QRect *arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -2527,9 +2527,9 @@ static void _call_f_drawText_6119 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QTextOption &arg3 = args ? args.read (heap) : (const QTextOption &)(QTextOption()); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QTextOption &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTextOption(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawText (arg1, arg2, arg3); } @@ -2551,8 +2551,8 @@ static void _call_f_drawTextItem_4092 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QTextItem &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QTextItem &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawTextItem (arg1, arg2); } @@ -2576,9 +2576,9 @@ static void _call_f_drawTextItem_3532 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextItem &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextItem &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawTextItem (arg1, arg2, arg3); } @@ -2600,8 +2600,8 @@ static void _call_f_drawTextItem_4022 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QTextItem &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QTextItem &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawTextItem (arg1, arg2); } @@ -2625,9 +2625,9 @@ static void _call_f_drawTiledPixmap_5649 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QPointF &arg3 = args ? args.read (heap) : (const QPointF &)(QPointF()); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPointF(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawTiledPixmap (arg1, arg2, arg3); } @@ -2659,13 +2659,13 @@ static void _call_f_drawTiledPixmap_5971 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QPixmap &arg5 = args.read (heap); - int arg6 = args ? args.read (heap) : (int)(0); - int arg7 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QPixmap &arg5 = gsi::arg_reader() (args, heap); + int arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawTiledPixmap (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -2689,9 +2689,9 @@ static void _call_f_drawTiledPixmap_5509 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); - const QPoint &arg3 = args ? args.read (heap) : (const QPoint &)(QPoint()); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPoint(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->drawTiledPixmap (arg1, arg2, arg3); } @@ -2742,7 +2742,7 @@ static void _call_f_eraseRect_1862 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->eraseRect (arg1); } @@ -2768,10 +2768,10 @@ static void _call_f_eraseRect_2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->eraseRect (arg1, arg2, arg3, arg4); } @@ -2791,7 +2791,7 @@ static void _call_f_eraseRect_1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->eraseRect (arg1); } @@ -2813,8 +2813,8 @@ static void _call_f_fillPath_4316 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const QBrush &arg2 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillPath (arg1, arg2); } @@ -2836,8 +2836,8 @@ static void _call_f_fillRect_3664 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QBrush &arg2 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2); } @@ -2865,11 +2865,11 @@ static void _call_f_fillRect_4546 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QBrush &arg5 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QBrush &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2, arg3, arg4, arg5); } @@ -2891,8 +2891,8 @@ static void _call_f_fillRect_3594 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const QBrush &arg2 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2); } @@ -2914,8 +2914,8 @@ static void _call_f_fillRect_3659 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2); } @@ -2943,11 +2943,11 @@ static void _call_f_fillRect_4541 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QColor &arg5 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QColor &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2, arg3, arg4, arg5); } @@ -2969,8 +2969,8 @@ static void _call_f_fillRect_3589 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2); } @@ -2998,11 +2998,11 @@ static void _call_f_fillRect_4489 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()); } @@ -3024,8 +3024,8 @@ static void _call_f_fillRect_3537 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -3047,8 +3047,8 @@ static void _call_f_fillRect_3607 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -3076,11 +3076,11 @@ static void _call_f_fillRect_4430 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()); } @@ -3102,8 +3102,8 @@ static void _call_f_fillRect_3478 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -3125,8 +3125,8 @@ static void _call_f_fillRect_3548 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->fillRect (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -3206,7 +3206,7 @@ static void _call_f_initFrom_2498 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPaintDevice *arg1 = args.read (heap); + const QPaintDevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->initFrom (arg1); } @@ -3394,7 +3394,7 @@ static void _call_f_rotate_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->rotate (arg1); } @@ -3432,8 +3432,8 @@ static void _call_f_scale_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->scale (arg1, arg2); } @@ -3453,7 +3453,7 @@ static void _call_f_setBackground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setBackground (arg1); } @@ -3473,7 +3473,7 @@ static void _call_f_setBackgroundMode_1275 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setBackgroundMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -3493,7 +3493,7 @@ static void _call_f_setBrush_1910 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setBrush (arg1); } @@ -3513,7 +3513,7 @@ static void _call_f_setBrush_1794 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setBrush (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -3535,8 +3535,8 @@ static void _call_f_setBrushOrigin_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setBrushOrigin (arg1, arg2); } @@ -3556,7 +3556,7 @@ static void _call_f_setBrushOrigin_1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setBrushOrigin (arg1); } @@ -3576,7 +3576,7 @@ static void _call_f_setBrushOrigin_1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setBrushOrigin (arg1); } @@ -3598,8 +3598,8 @@ static void _call_f_setClipPath_4492 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip)); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setClipPath (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -3621,8 +3621,8 @@ static void _call_f_setClipRect_3840 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip)); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setClipRect (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -3644,8 +3644,8 @@ static void _call_f_setClipRect_3770 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip)); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setClipRect (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -3673,11 +3673,11 @@ static void _call_f_setClipRect_4722 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setClipRect (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()); } @@ -3699,8 +3699,8 @@ static void _call_f_setClipRegion_3984 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip)); + const QRegion &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::ReplaceClip), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setClipRegion (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -3720,7 +3720,7 @@ static void _call_f_setClipping_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setClipping (arg1); } @@ -3740,7 +3740,7 @@ static void _call_f_setCompositionMode_2917 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setCompositionMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -3760,7 +3760,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setFont (arg1); } @@ -3780,7 +3780,7 @@ static void _call_f_setLayoutDirection_2316 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setLayoutDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -3802,8 +3802,8 @@ static void _call_f_setMatrix_2779 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setMatrix (arg1, arg2); } @@ -3823,7 +3823,7 @@ static void _call_f_setMatrixEnabled_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setMatrixEnabled (arg1); } @@ -3843,7 +3843,7 @@ static void _call_f_setOpacity_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setOpacity (arg1); } @@ -3863,7 +3863,7 @@ static void _call_f_setPen_1905 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setPen (arg1); } @@ -3883,7 +3883,7 @@ static void _call_f_setPen_1685 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setPen (arg1); } @@ -3903,7 +3903,7 @@ static void _call_f_setPen_1569 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setPen (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -3925,8 +3925,8 @@ static void _call_f_setRenderHint_3123 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setRenderHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -3948,8 +3948,8 @@ static void _call_f_setRenderHints_3819 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + QFlags arg1 = gsi::arg_reader >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setRenderHints (arg1, arg2); } @@ -3971,8 +3971,8 @@ static void _call_f_setTransform_3106 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setTransform (arg1, arg2); } @@ -3992,7 +3992,7 @@ static void _call_f_setViewTransformEnabled_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setViewTransformEnabled (arg1); } @@ -4012,7 +4012,7 @@ static void _call_f_setViewport_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setViewport (arg1); } @@ -4038,10 +4038,10 @@ static void _call_f_setViewport_2744 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setViewport (arg1, arg2, arg3, arg4); } @@ -4061,7 +4061,7 @@ static void _call_f_setWindow_1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setWindow (arg1); } @@ -4087,10 +4087,10 @@ static void _call_f_setWindow_2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setWindow (arg1, arg2, arg3, arg4); } @@ -4112,8 +4112,8 @@ static void _call_f_setWorldMatrix_2779 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setWorldMatrix (arg1, arg2); } @@ -4133,7 +4133,7 @@ static void _call_f_setWorldMatrixEnabled_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setWorldMatrixEnabled (arg1); } @@ -4155,8 +4155,8 @@ static void _call_f_setWorldTransform_3106 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->setWorldTransform (arg1, arg2); } @@ -4178,8 +4178,8 @@ static void _call_f_shear_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->shear (arg1, arg2); } @@ -4201,8 +4201,8 @@ static void _call_f_strokePath_4091 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const QPen &arg2 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const QPen &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->strokePath (arg1, arg2); } @@ -4222,7 +4222,7 @@ static void _call_f_testRenderHint_c2367 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPainter *)cls)->testRenderHint (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -4256,7 +4256,7 @@ static void _call_f_translate_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->translate (arg1); } @@ -4276,7 +4276,7 @@ static void _call_f_translate_1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->translate (arg1); } @@ -4298,8 +4298,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainter *)cls)->translate (arg1, arg2); } @@ -4411,8 +4411,8 @@ static void _call_f_redirected_3615 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPaintDevice *arg1 = args.read (heap); - QPoint *arg2 = args ? args.read (heap) : (QPoint *)(0); + const QPaintDevice *arg1 = gsi::arg_reader() (args, heap); + QPoint *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPaintDevice *)QPainter::redirected (arg1, arg2)); } @@ -4431,7 +4431,7 @@ static void _call_f_restoreRedirected_2498 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPaintDevice *arg1 = args.read (heap); + const QPaintDevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QPainter::restoreRedirected (arg1); } @@ -4455,9 +4455,9 @@ static void _call_f_setRedirected_6001 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPaintDevice *arg1 = args.read (heap); - QPaintDevice *arg2 = args.read (heap); - const QPoint &arg3 = args ? args.read (heap) : (const QPoint &)(QPoint()); + const QPaintDevice *arg1 = gsi::arg_reader() (args, heap); + QPaintDevice *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPoint(), heap); __SUPPRESS_UNUSED_WARNING(ret); QPainter::setRedirected (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath.cc index 0defc7280..d4ce110e8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath.cc @@ -72,7 +72,7 @@ static void _call_ctor_QPainterPath_1986 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPainterPath (arg1)); } @@ -91,7 +91,7 @@ static void _call_ctor_QPainterPath_2514 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPainterPath (arg1)); } @@ -110,7 +110,7 @@ static void _call_f_addEllipse_1862 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addEllipse (arg1); } @@ -136,10 +136,10 @@ static void _call_f_addEllipse_3960 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addEllipse (arg1, arg2, arg3, arg4); } @@ -163,9 +163,9 @@ static void _call_f_addEllipse_3912 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addEllipse (arg1, arg2, arg3); } @@ -185,7 +185,7 @@ static void _call_f_addPath_2514 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addPath (arg1); } @@ -205,7 +205,7 @@ static void _call_f_addPolygon_2208 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addPolygon (arg1); } @@ -225,7 +225,7 @@ static void _call_f_addRect_1862 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRect (arg1); } @@ -251,10 +251,10 @@ static void _call_f_addRect_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRect (arg1, arg2, arg3, arg4); } @@ -274,7 +274,7 @@ static void _call_f_addRegion_2006 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRegion (arg1); } @@ -298,9 +298,9 @@ static void _call_f_addRoundRect_3180 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRoundRect (arg1, arg2, arg3); } @@ -330,12 +330,12 @@ static void _call_f_addRoundRect_5278 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - int arg5 = args.read (heap); - int arg6 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRoundRect (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -357,8 +357,8 @@ static void _call_f_addRoundRect_2521 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRoundRect (arg1, arg2); } @@ -386,11 +386,11 @@ static void _call_f_addRoundRect_4619 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - int arg5 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRoundRect (arg1, arg2, arg3, arg4, arg5); } @@ -416,10 +416,10 @@ static void _call_f_addRoundedRect_5229 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize)); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRoundedRect (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -451,13 +451,13 @@ static void _call_f_addRoundedRect_7327 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize)); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AbsoluteSize), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addRoundedRect (arg1, arg2, arg3, arg4, arg5, arg6, qt_gsi::QtToCppAdaptor(arg7).cref()); } @@ -481,9 +481,9 @@ static void _call_f_addText_5596 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QFont &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QFont &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addText (arg1, arg2, arg3); } @@ -509,10 +509,10 @@ static void _call_f_addText_5644 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - const QFont &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const QFont &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->addText (arg1, arg2, arg3, arg4); } @@ -532,7 +532,7 @@ static void _call_f_angleAtPercent_c1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QPainterPath *)cls)->angleAtPercent (arg1)); } @@ -553,8 +553,8 @@ static void _call_f_arcMoveTo_2825 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - double arg2 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->arcMoveTo (arg1, arg2); } @@ -582,11 +582,11 @@ static void _call_f_arcMoveTo_4923 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->arcMoveTo (arg1, arg2, arg3, arg4, arg5); } @@ -610,9 +610,9 @@ static void _call_f_arcTo_3788 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->arcTo (arg1, arg2, arg3); } @@ -642,12 +642,12 @@ static void _call_f_arcTo_5886 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->arcTo (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -698,7 +698,7 @@ static void _call_f_connectPath_2514 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->connectPath (arg1); } @@ -718,7 +718,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath *)cls)->contains (arg1)); } @@ -737,7 +737,7 @@ static void _call_f_contains_c1862 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath *)cls)->contains (arg1)); } @@ -756,7 +756,7 @@ static void _call_f_contains_c2514 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath *)cls)->contains (arg1)); } @@ -794,9 +794,9 @@ static void _call_f_cubicTo_5742 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->cubicTo (arg1, arg2, arg3); } @@ -826,12 +826,12 @@ static void _call_f_cubicTo_5886 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->cubicTo (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -866,7 +866,7 @@ static void _call_f_elementAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath::Element)((QPainterPath *)cls)->elementAt (arg1)); } @@ -915,7 +915,7 @@ static void _call_f_intersected_c2514 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->intersected (arg1)); } @@ -934,7 +934,7 @@ static void _call_f_intersects_c1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath *)cls)->intersects (arg1)); } @@ -953,7 +953,7 @@ static void _call_f_intersects_c2514 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath *)cls)->intersects (arg1)); } @@ -1002,7 +1002,7 @@ static void _call_f_lineTo_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->lineTo (arg1); } @@ -1024,8 +1024,8 @@ static void _call_f_lineTo_2034 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->lineTo (arg1, arg2); } @@ -1045,7 +1045,7 @@ static void _call_f_moveTo_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->moveTo (arg1); } @@ -1067,8 +1067,8 @@ static void _call_f_moveTo_2034 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->moveTo (arg1, arg2); } @@ -1088,7 +1088,7 @@ static void _call_f_operator_excl__eq__c2514 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath *)cls)->operator!= (arg1)); } @@ -1107,7 +1107,7 @@ static void _call_f_operator_amp__c2514 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->operator& (arg1)); } @@ -1126,7 +1126,7 @@ static void _call_f_operator_amp__eq__2514 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath &)((QPainterPath *)cls)->operator&= (arg1)); } @@ -1145,7 +1145,7 @@ static void _call_f_operator_plus__c2514 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->operator+ (arg1)); } @@ -1164,7 +1164,7 @@ static void _call_f_operator_plus__eq__2514 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath &)((QPainterPath *)cls)->operator+= (arg1)); } @@ -1183,7 +1183,7 @@ static void _call_f_operator_minus__c2514 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->operator- (arg1)); } @@ -1202,7 +1202,7 @@ static void _call_f_operator_minus__eq__2514 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath &)((QPainterPath *)cls)->operator-= (arg1)); } @@ -1221,7 +1221,7 @@ static void _call_f_operator_eq__2514 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath &)((QPainterPath *)cls)->operator= (arg1)); } @@ -1240,7 +1240,7 @@ static void _call_f_operator_eq__eq__c2514 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath *)cls)->operator== (arg1)); } @@ -1259,7 +1259,7 @@ static void _call_f_operator_pipe__c2514 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->operator| (arg1)); } @@ -1278,7 +1278,7 @@ static void _call_f_operator_pipe__eq__2514 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath &)((QPainterPath *)cls)->operator|= (arg1)); } @@ -1297,7 +1297,7 @@ static void _call_f_percentAtLength_c1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QPainterPath *)cls)->percentAtLength (arg1)); } @@ -1316,7 +1316,7 @@ static void _call_f_pointAtPercent_c1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QPainterPath *)cls)->pointAtPercent (arg1)); } @@ -1337,8 +1337,8 @@ static void _call_f_quadTo_3864 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->quadTo (arg1, arg2); } @@ -1364,10 +1364,10 @@ static void _call_f_quadTo_3960 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->quadTo (arg1, arg2, arg3, arg4); } @@ -1391,9 +1391,9 @@ static void _call_f_setElementPositionAt_2693 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->setElementPositionAt (arg1, arg2, arg3); } @@ -1413,7 +1413,7 @@ static void _call_f_setFillRule_1548 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->setFillRule (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1448,7 +1448,7 @@ static void _call_f_slopeAtPercent_c1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QPainterPath *)cls)->slopeAtPercent (arg1)); } @@ -1467,7 +1467,7 @@ static void _call_f_subtracted_c2514 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->subtracted (arg1)); } @@ -1486,7 +1486,7 @@ static void _call_f_subtractedInverted_c2514 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->subtractedInverted (arg1)); } @@ -1505,7 +1505,7 @@ static void _call_f_swap_1819 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainterPath &arg1 = args.read (heap); + QPainterPath &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->swap (arg1); } @@ -1525,7 +1525,7 @@ static void _call_f_toFillPolygon_c2023 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args ? args.read (heap) : (const QMatrix &)(QMatrix()); + const QMatrix &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QMatrix(), heap); ret.write ((QPolygonF)((QPainterPath *)cls)->toFillPolygon (arg1)); } @@ -1544,7 +1544,7 @@ static void _call_f_toFillPolygon_c2350 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QPainterPath *)cls)->toFillPolygon (arg1)); } @@ -1563,7 +1563,7 @@ static void _call_f_toFillPolygons_c2023 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args ? args.read (heap) : (const QMatrix &)(QMatrix()); + const QMatrix &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QMatrix(), heap); ret.write > ((QList)((QPainterPath *)cls)->toFillPolygons (arg1)); } @@ -1582,7 +1582,7 @@ static void _call_f_toFillPolygons_c2350 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QPainterPath *)cls)->toFillPolygons (arg1)); } @@ -1616,7 +1616,7 @@ static void _call_f_toSubpathPolygons_c2023 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args ? args.read (heap) : (const QMatrix &)(QMatrix()); + const QMatrix &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QMatrix(), heap); ret.write > ((QList)((QPainterPath *)cls)->toSubpathPolygons (arg1)); } @@ -1635,7 +1635,7 @@ static void _call_f_toSubpathPolygons_c2350 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QPainterPath *)cls)->toSubpathPolygons (arg1)); } @@ -1656,8 +1656,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->translate (arg1, arg2); } @@ -1677,7 +1677,7 @@ static void _call_f_translate_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPath *)cls)->translate (arg1); } @@ -1699,8 +1699,8 @@ static void _call_f_translated_c2034 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->translated (arg1, arg2)); } @@ -1719,7 +1719,7 @@ static void _call_f_translated_c1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->translated (arg1)); } @@ -1738,7 +1738,7 @@ static void _call_f_united_c2514 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPath *)cls)->united (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPainterPathStroker.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPainterPathStroker.cc index e826348f2..7da7cb5ce 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPainterPathStroker.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPainterPathStroker.cc @@ -67,7 +67,7 @@ static void _call_ctor_QPainterPathStroker_1685 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPainterPathStroker (arg1)); } @@ -101,7 +101,7 @@ static void _call_f_createStroke_c2514 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QPainterPathStroker *)cls)->createStroke (arg1)); } @@ -195,7 +195,7 @@ static void _call_f_setCapStyle_1845 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setCapStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -215,7 +215,7 @@ static void _call_f_setCurveThreshold_1071 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setCurveThreshold (arg1); } @@ -235,7 +235,7 @@ static void _call_f_setDashOffset_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setDashOffset (arg1); } @@ -255,7 +255,7 @@ static void _call_f_setDashPattern_1569 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setDashPattern (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -275,7 +275,7 @@ static void _call_f_setDashPattern_2676 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setDashPattern (arg1); } @@ -295,7 +295,7 @@ static void _call_f_setJoinStyle_1969 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setJoinStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -315,7 +315,7 @@ static void _call_f_setMiterLimit_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setMiterLimit (arg1); } @@ -335,7 +335,7 @@ static void _call_f_setWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPainterPathStroker *)cls)->setWidth (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath_Element.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath_Element.cc index c5770b0ba..6fd238f67 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath_Element.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPainterPath_Element.cc @@ -110,7 +110,7 @@ static void _call_f_operator_excl__eq__c3344 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath::Element &arg1 = args.read (heap); + const QPainterPath::Element &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath::Element *)cls)->operator!= (arg1)); } @@ -129,7 +129,7 @@ static void _call_f_operator_eq__eq__c3344 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath::Element &arg1 = args.read (heap); + const QPainterPath::Element &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPainterPath::Element *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPainter_PixmapFragment.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPainter_PixmapFragment.cc index b9f0381b9..1b1307185 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPainter_PixmapFragment.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPainter_PixmapFragment.cc @@ -77,12 +77,12 @@ static void _call_f_create_7592 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); - double arg3 = args ? args.read (heap) : (double)(1); - double arg4 = args ? args.read (heap) : (double)(1); - double arg5 = args ? args.read (heap) : (double)(0); - double arg6 = args ? args.read (heap) : (double)(1); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); + double arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + double arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + double arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write ((QPainter::PixmapFragment)QPainter::PixmapFragment::create (arg1, arg2, arg3, arg4, arg5, arg6)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPalette.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPalette.cc index fc12d8ee7..c52f91265 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPalette.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPalette.cc @@ -67,7 +67,7 @@ static void _call_ctor_QPalette_1905 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPalette (arg1)); } @@ -86,7 +86,7 @@ static void _call_ctor_QPalette_1853 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QPalette (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -107,8 +107,8 @@ static void _call_ctor_QPalette_3702 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); ret.write (new QPalette (arg1, arg2)); } @@ -143,15 +143,15 @@ static void _call_ctor_QPalette_16326 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); - const QBrush &arg2 = args.read (heap); - const QBrush &arg3 = args.read (heap); - const QBrush &arg4 = args.read (heap); - const QBrush &arg5 = args.read (heap); - const QBrush &arg6 = args.read (heap); - const QBrush &arg7 = args.read (heap); - const QBrush &arg8 = args.read (heap); - const QBrush &arg9 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); + const QBrush &arg3 = gsi::arg_reader() (args, heap); + const QBrush &arg4 = gsi::arg_reader() (args, heap); + const QBrush &arg5 = gsi::arg_reader() (args, heap); + const QBrush &arg6 = gsi::arg_reader() (args, heap); + const QBrush &arg7 = gsi::arg_reader() (args, heap); + const QBrush &arg8 = gsi::arg_reader() (args, heap); + const QBrush &arg9 = gsi::arg_reader() (args, heap); ret.write (new QPalette (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)); } @@ -182,13 +182,13 @@ static void _call_ctor_QPalette_12687 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); - const QColor &arg3 = args.read (heap); - const QColor &arg4 = args.read (heap); - const QColor &arg5 = args.read (heap); - const QColor &arg6 = args.read (heap); - const QColor &arg7 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); + const QColor &arg3 = gsi::arg_reader() (args, heap); + const QColor &arg4 = gsi::arg_reader() (args, heap); + const QColor &arg5 = gsi::arg_reader() (args, heap); + const QColor &arg6 = gsi::arg_reader() (args, heap); + const QColor &arg7 = gsi::arg_reader() (args, heap); ret.write (new QPalette (arg1, arg2, arg3, arg4, arg5, arg6, arg7)); } @@ -207,7 +207,7 @@ static void _call_ctor_QPalette_2113 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPalette (arg1)); } @@ -288,8 +288,8 @@ static void _call_f_brush_c4545 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((const QBrush &)((QPalette *)cls)->brush (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -308,7 +308,7 @@ static void _call_f_brush_c2265 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((const QBrush &)((QPalette *)cls)->brush (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -374,8 +374,8 @@ static void _call_f_color_c4545 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((const QColor &)((QPalette *)cls)->color (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -394,7 +394,7 @@ static void _call_f_color_c2265 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((const QColor &)((QPalette *)cls)->color (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -490,8 +490,8 @@ static void _call_f_isBrushSet_c4545 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPalette *)cls)->isBrushSet (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -510,7 +510,7 @@ static void _call_f_isCopyOf_c2113 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPalette *)cls)->isCopyOf (arg1)); } @@ -531,8 +531,8 @@ static void _call_f_isEqual_c4668 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPalette *)cls)->isEqual (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -626,7 +626,7 @@ static void _call_f_operator_excl__eq__c2113 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPalette *)cls)->operator!= (arg1)); } @@ -645,7 +645,7 @@ static void _call_f_operator_eq__2113 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPalette &)((QPalette *)cls)->operator= (arg1)); } @@ -664,7 +664,7 @@ static void _call_f_operator_eq__eq__c2113 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPalette *)cls)->operator== (arg1)); } @@ -683,7 +683,7 @@ static void _call_f_resolve_c2113 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPalette)((QPalette *)cls)->resolve (arg1)); } @@ -704,8 +704,8 @@ static void _call_f_setBrush_4067 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QBrush &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPalette *)cls)->setBrush (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -729,9 +729,9 @@ static void _call_f_setBrush_6347 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QBrush &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QBrush &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPalette *)cls)->setBrush (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -755,9 +755,9 @@ static void _call_f_setColor_6342 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QColor &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QColor &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPalette *)cls)->setColor (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -779,8 +779,8 @@ static void _call_f_setColor_4062 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QColor &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPalette *)cls)->setColor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -818,16 +818,16 @@ static void _call_f_setColorGroup_18606 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QBrush &arg2 = args.read (heap); - const QBrush &arg3 = args.read (heap); - const QBrush &arg4 = args.read (heap); - const QBrush &arg5 = args.read (heap); - const QBrush &arg6 = args.read (heap); - const QBrush &arg7 = args.read (heap); - const QBrush &arg8 = args.read (heap); - const QBrush &arg9 = args.read (heap); - const QBrush &arg10 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); + const QBrush &arg3 = gsi::arg_reader() (args, heap); + const QBrush &arg4 = gsi::arg_reader() (args, heap); + const QBrush &arg5 = gsi::arg_reader() (args, heap); + const QBrush &arg6 = gsi::arg_reader() (args, heap); + const QBrush &arg7 = gsi::arg_reader() (args, heap); + const QBrush &arg8 = gsi::arg_reader() (args, heap); + const QBrush &arg9 = gsi::arg_reader() (args, heap); + const QBrush &arg10 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPalette *)cls)->setColorGroup (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10); } @@ -847,7 +847,7 @@ static void _call_f_setCurrentColorGroup_2388 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPalette *)cls)->setCurrentColorGroup (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -882,7 +882,7 @@ static void _call_f_swap_1418 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPalette *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc index a2780bdad..e63b4dfa5 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPdfWriter.cc @@ -122,7 +122,7 @@ static void _call_f_setCreator_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter *)cls)->setCreator (arg1); } @@ -142,7 +142,7 @@ static void _call_f_setMargins_3812 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPagedPaintDevice::Margins &arg1 = args.read (heap); + const QPagedPaintDevice::Margins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter *)cls)->setMargins (arg1); } @@ -162,7 +162,7 @@ static void _call_f_setPageSize_3006 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter *)cls)->setPageSize (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -182,7 +182,7 @@ static void _call_f_setPageSizeMM_1875 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter *)cls)->setPageSizeMM (arg1); } @@ -202,7 +202,7 @@ static void _call_f_setResolution_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter *)cls)->setResolution (arg1); } @@ -222,7 +222,7 @@ static void _call_f_setTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPdfWriter *)cls)->setTitle (arg1); } @@ -261,9 +261,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPdfWriter::tr (arg1, arg2, arg3)); } @@ -286,9 +286,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPdfWriter::trUtf8 (arg1, arg2, arg3)); } @@ -686,7 +686,7 @@ static void _call_ctor_QPdfWriter_Adaptor_2025 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPdfWriter_Adaptor (arg1)); } @@ -704,7 +704,7 @@ static void _call_ctor_QPdfWriter_Adaptor_1447 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write (new QPdfWriter_Adaptor (arg1)); } @@ -770,7 +770,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPdfWriter_Adaptor *)cls)->emitter_QPdfWriter_destroyed_1302 (arg1); } @@ -913,7 +913,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPdfWriter_Adaptor *)cls)->fp_QPdfWriter_isSignalConnected_c2394 (arg1)); } @@ -992,7 +992,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPdfWriter_Adaptor *)cls)->fp_QPdfWriter_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPen.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPen.cc index 999ab9691..8db1e904f 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPen.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPen.cc @@ -67,7 +67,7 @@ static void _call_ctor_QPen_1569 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QPen (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -86,7 +86,7 @@ static void _call_ctor_QPen_1905 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPen (arg1)); } @@ -113,11 +113,11 @@ static void _call_ctor_QPen_7932 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); - double arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::SolidLine)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::SquareCap)); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::BevelJoin)); + const QBrush &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::SolidLine), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::SquareCap), heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::BevelJoin), heap); ret.write (new QPen (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref(), qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -136,7 +136,7 @@ static void _call_ctor_QPen_1685 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPen (arg1)); } @@ -305,7 +305,7 @@ static void _call_f_operator_excl__eq__c1685 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPen *)cls)->operator!= (arg1)); } @@ -324,7 +324,7 @@ static void _call_f_operator_eq__1685 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPen &)((QPen *)cls)->operator= (arg1)); } @@ -343,7 +343,7 @@ static void _call_f_operator_eq__eq__c1685 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPen *)cls)->operator== (arg1)); } @@ -362,7 +362,7 @@ static void _call_f_setBrush_1910 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setBrush (arg1); } @@ -382,7 +382,7 @@ static void _call_f_setCapStyle_1845 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setCapStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -402,7 +402,7 @@ static void _call_f_setColor_1905 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setColor (arg1); } @@ -422,7 +422,7 @@ static void _call_f_setCosmetic_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setCosmetic (arg1); } @@ -442,7 +442,7 @@ static void _call_f_setDashOffset_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setDashOffset (arg1); } @@ -462,7 +462,7 @@ static void _call_f_setDashPattern_2676 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setDashPattern (arg1); } @@ -482,7 +482,7 @@ static void _call_f_setJoinStyle_1969 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setJoinStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -502,7 +502,7 @@ static void _call_f_setMiterLimit_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setMiterLimit (arg1); } @@ -522,7 +522,7 @@ static void _call_f_setStyle_1569u1 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -542,7 +542,7 @@ static void _call_f_setWidth_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setWidth (arg1); } @@ -562,7 +562,7 @@ static void _call_f_setWidthF_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->setWidthF (arg1); } @@ -597,7 +597,7 @@ static void _call_f_swap_990 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPen &arg1 = args.read (heap); + QPen &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPen *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc index 12e646b99..1d4e842fe 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPicture.cc @@ -134,8 +134,8 @@ static void _call_f_load_3070 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QPicture *)cls)->load (arg1, arg2)); } @@ -156,8 +156,8 @@ static void _call_f_load_3648 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QPicture *)cls)->load (arg1, arg2)); } @@ -176,7 +176,7 @@ static void _call_f_operator_eq__2126 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPicture &arg1 = args.read (heap); + const QPicture &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPicture &)((QPicture *)cls)->operator= (arg1)); } @@ -210,7 +210,7 @@ static void _call_f_play_1426 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPicture *)cls)->play (arg1)); } @@ -231,8 +231,8 @@ static void _call_f_save_3070 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QPicture *)cls)->save (arg1, arg2)); } @@ -253,8 +253,8 @@ static void _call_f_save_3648 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QPicture *)cls)->save (arg1, arg2)); } @@ -273,7 +273,7 @@ static void _call_f_setBoundingRect_1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPicture *)cls)->setBoundingRect (arg1); } @@ -295,8 +295,8 @@ static void _call_f_setData_3395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPicture *)cls)->setData (arg1, arg2); } @@ -331,7 +331,7 @@ static void _call_f_swap_1431 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPicture &arg1 = args.read (heap); + QPicture &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPicture *)cls)->swap (arg1); } @@ -411,7 +411,7 @@ static void _call_f_pictureFormat_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((const char *)QPicture::pictureFormat (arg1)); } @@ -593,7 +593,7 @@ static void _call_ctor_QPicture_Adaptor_767 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write (new QPicture_Adaptor (arg1)); } @@ -611,7 +611,7 @@ static void _call_ctor_QPicture_Adaptor_2126 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPicture &arg1 = args.read (heap); + const QPicture &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPicture_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPictureFormatPlugin.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPictureFormatPlugin.cc index 1ea3a3b32..3696d1cf6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPictureFormatPlugin.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPictureFormatPlugin.cc @@ -70,7 +70,7 @@ static void _call_f_installIOHandler_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPictureFormatPlugin *)cls)->installIOHandler (arg1)); } @@ -93,9 +93,9 @@ static void _call_f_loadPicture_5269 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QPicture *arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QPicture *arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPictureFormatPlugin *)cls)->loadPicture (arg1, arg2, arg3)); } @@ -118,9 +118,9 @@ static void _call_f_savePicture_5960 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QPicture &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QPicture &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPictureFormatPlugin *)cls)->savePicture (arg1, arg2, arg3)); } @@ -143,9 +143,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPictureFormatPlugin::tr (arg1, arg2, arg3)); } @@ -168,9 +168,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPictureFormatPlugin::trUtf8 (arg1, arg2, arg3)); } @@ -407,7 +407,7 @@ static void _call_ctor_QPictureFormatPlugin_Adaptor_1302 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPictureFormatPlugin_Adaptor (arg1)); } @@ -473,7 +473,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPictureFormatPlugin_Adaptor *)cls)->emitter_QPictureFormatPlugin_destroyed_1302 (arg1); } @@ -587,7 +587,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPictureFormatPlugin_Adaptor *)cls)->fp_QPictureFormatPlugin_isSignalConnected_c2394 (arg1)); } @@ -634,7 +634,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPictureFormatPlugin_Adaptor *)cls)->fp_QPictureFormatPlugin_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPixelFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPixelFormat.cc index 38d0a39fe..280ad7280 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPixelFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPixelFormat.cc @@ -89,19 +89,19 @@ static void _call_ctor_QPixelFormat_30295 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - unsigned char arg2 = args.read (heap); - unsigned char arg3 = args.read (heap); - unsigned char arg4 = args.read (heap); - unsigned char arg5 = args.read (heap); - unsigned char arg6 = args.read (heap); - unsigned char arg7 = args.read (heap); - const qt_gsi::Converter::target_type & arg8 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg9 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg10 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg11 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg12 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QPixelFormat::CurrentSystemEndian)); - unsigned char arg13 = args ? args.read (heap) : (unsigned char)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + unsigned char arg2 = gsi::arg_reader() (args, heap); + unsigned char arg3 = gsi::arg_reader() (args, heap); + unsigned char arg4 = gsi::arg_reader() (args, heap); + unsigned char arg5 = gsi::arg_reader() (args, heap); + unsigned char arg6 = gsi::arg_reader() (args, heap); + unsigned char arg7 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg8 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg9 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg10 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg11 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg12 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPixelFormat::CurrentSystemEndian), heap); + unsigned char arg13 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPixelFormat (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5, arg6, arg7, qt_gsi::QtToCppAdaptor(arg8).cref(), qt_gsi::QtToCppAdaptor(arg9).cref(), qt_gsi::QtToCppAdaptor(arg10).cref(), qt_gsi::QtToCppAdaptor(arg11).cref(), qt_gsi::QtToCppAdaptor(arg12).cref(), arg13)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc index a3cfda596..7fdc11de2 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPixmap.cc @@ -82,8 +82,8 @@ static void _call_f_convertFromImage_5137 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QImage &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((bool)((QPixmap *)cls)->convertFromImage (arg1, arg2)); } @@ -108,10 +108,10 @@ static void _call_f_copy_c2744 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QPixmap *)cls)->copy (arg1, arg2, arg3, arg4)); } @@ -130,7 +130,7 @@ static void _call_f_copy_c1792 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args ? args.read (heap) : (const QRect &)(QRect()); + const QRect &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRect(), heap); ret.write ((QPixmap)((QPixmap *)cls)->copy (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_createHeuristicMask_c864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); ret.write ((QBitmap)((QPixmap *)cls)->createHeuristicMask (arg1)); } @@ -170,8 +170,8 @@ static void _call_f_createMaskFromColor_c3331 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::MaskInColor)); + const QColor &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::MaskInColor), heap); ret.write ((QBitmap)((QPixmap *)cls)->createMaskFromColor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -236,7 +236,7 @@ static void _call_f_fill_1905 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args ? args.read (heap) : (const QColor &)(Qt::white); + const QColor &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::white, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap *)cls)->fill (arg1); } @@ -258,8 +258,8 @@ static void _call_f_fill_4306 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPaintDevice *arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + const QPaintDevice *arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap *)cls)->fill (arg1, arg2); } @@ -283,9 +283,9 @@ static void _call_f_fill_3816 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPaintDevice *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QPaintDevice *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap *)cls)->fill (arg1, arg2, arg3); } @@ -399,9 +399,9 @@ static void _call_f_load_6908 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((bool)((QPixmap *)cls)->load (arg1, arg2, arg3)); } @@ -426,10 +426,10 @@ static void _call_f_loadFromData_9283 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const unsigned char *arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); - const char *arg3 = args ? args.read (heap) : (const char *)(0); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const unsigned char *arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((bool)((QPixmap *)cls)->loadFromData (arg1, arg2, arg3, arg4)); } @@ -452,9 +452,9 @@ static void _call_f_loadFromData_7192 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((bool)((QPixmap *)cls)->loadFromData (arg1, arg2, arg3)); } @@ -503,7 +503,7 @@ static void _call_f_operator_eq__2017 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPixmap &)((QPixmap *)cls)->operator= (arg1)); } @@ -556,9 +556,9 @@ static void _call_f_save_c4307 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((bool)((QPixmap *)cls)->save (arg1, arg2, arg3)); } @@ -581,9 +581,9 @@ static void _call_f_save_c3729 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - int arg3 = args ? args.read (heap) : (int)(-1); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((bool)((QPixmap *)cls)->save (arg1, arg2, arg3)); } @@ -608,10 +608,10 @@ static void _call_f_scaled_c6100 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QPixmap)((QPixmap *)cls)->scaled (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -634,9 +634,9 @@ static void _call_f_scaled_c6479 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QPixmap)((QPixmap *)cls)->scaled (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -657,8 +657,8 @@ static void _call_f_scaledToHeight_c3292 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QPixmap)((QPixmap *)cls)->scaledToHeight (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -679,8 +679,8 @@ static void _call_f_scaledToWidth_c3292 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QPixmap)((QPixmap *)cls)->scaledToWidth (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -711,13 +711,13 @@ static void _call_f_scroll_5269 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - int arg6 = args.read (heap); - QRegion *arg7 = args ? args.read (heap) : (QRegion *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); + QRegion *arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap *)cls)->scroll (arg1, arg2, arg3, arg4, arg5, arg6, arg7); } @@ -743,10 +743,10 @@ static void _call_f_scroll_4317 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); - QRegion *arg4 = args ? args.read (heap) : (QRegion *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); + QRegion *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap *)cls)->scroll (arg1, arg2, arg3, arg4); } @@ -766,7 +766,7 @@ static void _call_f_setDevicePixelRatio_1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap *)cls)->setDevicePixelRatio (arg1); } @@ -786,7 +786,7 @@ static void _call_f_setMask_1999 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBitmap &arg1 = args.read (heap); + const QBitmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap *)cls)->setMask (arg1); } @@ -821,7 +821,7 @@ static void _call_f_swap_1322 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPixmap &arg1 = args.read (heap); + QPixmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPixmap *)cls)->swap (arg1); } @@ -858,8 +858,8 @@ static void _call_f_transformed_c4548 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QPixmap)((QPixmap *)cls)->transformed (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -880,8 +880,8 @@ static void _call_f_transformed_c4875 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation)); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::FastTransformation), heap); ret.write ((QPixmap)((QPixmap *)cls)->transformed (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -932,8 +932,8 @@ static void _call_f_fromImage_5137 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QImage &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((QPixmap)QPixmap::fromImage (arg1, arg2)); } @@ -954,8 +954,8 @@ static void _call_f_fromImageReader_5041 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QImageReader *arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + QImageReader *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((QPixmap)QPixmap::fromImageReader (arg1, arg2)); } @@ -976,8 +976,8 @@ static void _call_f_grabWidget_2986 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)QPixmap::grabWidget (arg1, arg2)); } @@ -1004,11 +1004,11 @@ static void _call_f_grabWidget_3938 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - int arg3 = args ? args.read (heap) : (int)(0); - int arg4 = args ? args.read (heap) : (int)(-1); - int arg5 = args ? args.read (heap) : (int)(-1); + QObject *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QPixmap)QPixmap::grabWidget (arg1, arg2, arg3, arg4, arg5)); } @@ -1035,11 +1035,11 @@ static void _call_f_grabWindow_3332 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args ? args.read (heap) : (int)(0); - int arg3 = args ? args.read (heap) : (int)(0); - int arg4 = args ? args.read (heap) : (int)(-1); - int arg5 = args ? args.read (heap) : (int)(-1); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QPixmap)QPixmap::grabWindow (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5)); } @@ -1062,9 +1062,9 @@ static void _call_f_trueMatrix_3341 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QMatrix)QPixmap::trueMatrix (arg1, arg2, arg3)); } @@ -1087,9 +1087,9 @@ static void _call_f_trueMatrix_3668 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QTransform)QPixmap::trueMatrix (arg1, arg2, arg3)); } @@ -1329,8 +1329,8 @@ static void _call_ctor_QPixmap_Adaptor_1426 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write (new QPixmap_Adaptor (arg1, arg2)); } @@ -1348,7 +1348,7 @@ static void _call_ctor_QPixmap_Adaptor_1805 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPixmap_Adaptor (arg1)); } @@ -1370,9 +1370,9 @@ static void _call_ctor_QPixmap_Adaptor_6908 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + const QString &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write (new QPixmap_Adaptor (arg1, arg2, arg3)); } @@ -1390,7 +1390,7 @@ static void _call_ctor_QPixmap_Adaptor_2017 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPixmap_Adaptor (arg1)); } @@ -1410,8 +1410,8 @@ static void _call_fp_fromImageInPlace_4442 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QImage &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::AutoColor); + QImage &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::AutoColor, heap); ret.write ((QPixmap)QPixmap_Adaptor::fp_QPixmap_fromImageInPlace_4442 (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPixmapCache.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPixmapCache.cc index 625c45db3..2c0aa7591 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPixmapCache.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPixmapCache.cc @@ -97,7 +97,7 @@ static void _call_f_find_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPixmap *)QPixmapCache::find (arg1)); } @@ -118,8 +118,8 @@ static void _call_f_find_3239 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QPixmap &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QPixmap &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QPixmapCache::find (arg1, arg2)); } @@ -140,8 +140,8 @@ static void _call_f_find_3243 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QPixmap *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QPixmap *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QPixmapCache::find (arg1, arg2)); } @@ -162,8 +162,8 @@ static void _call_f_insert_3934 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QPixmap &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QPixmapCache::insert (arg1, arg2)); } @@ -182,7 +182,7 @@ static void _call_f_remove_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QPixmapCache::remove (arg1); } @@ -202,7 +202,7 @@ static void _call_f_setCacheLimit_767 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QPixmapCache::setCacheLimit (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPlatformSurfaceEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPlatformSurfaceEvent.cc index a1408fd72..15aa0bc1f 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPlatformSurfaceEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPlatformSurfaceEvent.cc @@ -102,7 +102,7 @@ static void _call_ctor_QPlatformSurfaceEvent_Adaptor_4342 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QPlatformSurfaceEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPolygon.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPolygon.cc index 5938ff8eb..56b274046 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPolygon.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPolygon.cc @@ -174,7 +174,7 @@ static void _call_ctor_QPolygon_767 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write (new QPolygon (arg1)); } @@ -193,7 +193,7 @@ static void _call_ctor_QPolygon_2138 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPolygon (arg1)); } @@ -212,7 +212,7 @@ static void _call_ctor_QPolygon_2746 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); ret.write (new QPolygon (arg1)); } @@ -233,8 +233,8 @@ static void _call_ctor_QPolygon_2548 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QRect &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write (new QPolygon (arg1, arg2)); } @@ -270,8 +270,8 @@ static void _call_f_containsPoint_c3356 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPolygon *)cls)->containsPoint (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -290,7 +290,7 @@ static void _call_f_intersected_c2138 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QPolygon *)cls)->intersected (arg1)); } @@ -313,9 +313,9 @@ static void _call_f_point_c2457 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->point (arg1, arg2, arg3); } @@ -335,7 +335,7 @@ static void _call_f_point_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QPolygon *)cls)->point (arg1)); } @@ -360,10 +360,10 @@ static void _call_f_putPoints_2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->putPoints (arg1, arg2, arg3, arg4); } @@ -389,10 +389,10 @@ static void _call_f_putPoints_4115 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPolygon &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPolygon &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->putPoints (arg1, arg2, arg3, arg4); } @@ -416,9 +416,9 @@ static void _call_f_setPoint_2085 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->setPoint (arg1, arg2, arg3); } @@ -440,8 +440,8 @@ static void _call_f_setPoint_2575 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->setPoint (arg1, arg2); } @@ -465,9 +465,9 @@ static void _call_f_setPoints_2085 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->setPoints (arg1, arg2, arg3); } @@ -487,7 +487,7 @@ static void _call_f_subtracted_c2138 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QPolygon *)cls)->subtracted (arg1)); } @@ -506,7 +506,7 @@ static void _call_f_swap_1443 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPolygon &arg1 = args.read (heap); + QPolygon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->swap (arg1); } @@ -528,8 +528,8 @@ static void _call_f_translate_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->translate (arg1, arg2); } @@ -549,7 +549,7 @@ static void _call_f_translate_1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygon *)cls)->translate (arg1); } @@ -571,8 +571,8 @@ static void _call_f_translated_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QPolygon *)cls)->translated (arg1, arg2)); } @@ -591,7 +591,7 @@ static void _call_f_translated_c1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QPolygon *)cls)->translated (arg1)); } @@ -610,7 +610,7 @@ static void _call_f_united_c2138 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QPolygon *)cls)->united (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQPolygonF.cc b/src/gsiqt/qt5/QtGui/gsiDeclQPolygonF.cc index 3a7d31272..44399a2c7 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQPolygonF.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQPolygonF.cc @@ -175,7 +175,7 @@ static void _call_ctor_QPolygonF_767 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write (new QPolygonF (arg1)); } @@ -194,7 +194,7 @@ static void _call_ctor_QPolygonF_2208 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPolygonF (arg1)); } @@ -213,7 +213,7 @@ static void _call_ctor_QPolygonF_2816 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); ret.write (new QPolygonF (arg1)); } @@ -232,7 +232,7 @@ static void _call_ctor_QPolygonF_1862 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPolygonF (arg1)); } @@ -251,7 +251,7 @@ static void _call_ctor_QPolygonF_2138 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPolygonF (arg1)); } @@ -287,8 +287,8 @@ static void _call_f_containsPoint_c3426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPolygonF *)cls)->containsPoint (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -307,7 +307,7 @@ static void _call_f_intersected_c2208 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QPolygonF *)cls)->intersected (arg1)); } @@ -341,7 +341,7 @@ static void _call_f_subtracted_c2208 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QPolygonF *)cls)->subtracted (arg1)); } @@ -360,7 +360,7 @@ static void _call_f_swap_1513 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPolygonF &arg1 = args.read (heap); + QPolygonF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygonF *)cls)->swap (arg1); } @@ -397,8 +397,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygonF *)cls)->translate (arg1, arg2); } @@ -418,7 +418,7 @@ static void _call_f_translate_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPolygonF *)cls)->translate (arg1); } @@ -440,8 +440,8 @@ static void _call_f_translated_c2034 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QPolygonF *)cls)->translated (arg1, arg2)); } @@ -460,7 +460,7 @@ static void _call_f_translated_c1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QPolygonF *)cls)->translated (arg1)); } @@ -479,7 +479,7 @@ static void _call_f_united_c2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QPolygonF *)cls)->united (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQQuaternion.cc b/src/gsiqt/qt5/QtGui/gsiDeclQQuaternion.cc index 2620630dd..f56030d56 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQQuaternion.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQQuaternion.cc @@ -73,10 +73,10 @@ static void _call_ctor_QQuaternion_3556 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); - float arg3 = args.read (heap); - float arg4 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); + float arg4 = gsi::arg_reader() (args, heap); ret.write (new QQuaternion (arg1, arg2, arg3, arg4)); } @@ -97,8 +97,8 @@ static void _call_ctor_QQuaternion_3002 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); ret.write (new QQuaternion (arg1, arg2)); } @@ -117,7 +117,7 @@ static void _call_ctor_QQuaternion_2141 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); ret.write (new QQuaternion (arg1)); } @@ -170,9 +170,9 @@ static void _call_f_getAxes_c4131 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QVector3D *arg1 = args.read (heap); - QVector3D *arg2 = args.read (heap); - QVector3D *arg3 = args.read (heap); + QVector3D *arg1 = gsi::arg_reader() (args, heap); + QVector3D *arg2 = gsi::arg_reader() (args, heap); + QVector3D *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->getAxes (arg1, arg2, arg3); } @@ -194,8 +194,8 @@ static void _call_f_getAxisAndAngle_c2497 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QVector3D *arg1 = args.read (heap); - float *arg2 = args.read (heap); + QVector3D *arg1 = gsi::arg_reader() (args, heap); + float *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->getAxisAndAngle (arg1, arg2); } @@ -221,10 +221,10 @@ static void _call_f_getAxisAndAngle_c4300 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float *arg1 = args.read (heap); - float *arg2 = args.read (heap); - float *arg3 = args.read (heap); - float *arg4 = args.read (heap); + float *arg1 = gsi::arg_reader() (args, heap); + float *arg2 = gsi::arg_reader() (args, heap); + float *arg3 = gsi::arg_reader() (args, heap); + float *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->getAxisAndAngle (arg1, arg2, arg3, arg4); } @@ -248,9 +248,9 @@ static void _call_f_getEulerAngles_c3252 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float *arg1 = args.read (heap); - float *arg2 = args.read (heap); - float *arg3 = args.read (heap); + float *arg1 = gsi::arg_reader() (args, heap); + float *arg2 = gsi::arg_reader() (args, heap); + float *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->getEulerAngles (arg1, arg2, arg3); } @@ -376,7 +376,7 @@ static void _call_f_operator_star__eq__970 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion &)((QQuaternion *)cls)->operator*= (arg1)); } @@ -395,7 +395,7 @@ static void _call_f_operator_star__eq__2456 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QQuaternion &arg1 = args.read (heap); + const QQuaternion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion &)((QQuaternion *)cls)->operator*= (arg1)); } @@ -414,7 +414,7 @@ static void _call_f_operator_plus__eq__2456 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QQuaternion &arg1 = args.read (heap); + const QQuaternion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion &)((QQuaternion *)cls)->operator+= (arg1)); } @@ -433,7 +433,7 @@ static void _call_f_operator_minus__eq__2456 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QQuaternion &arg1 = args.read (heap); + const QQuaternion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion &)((QQuaternion *)cls)->operator-= (arg1)); } @@ -452,7 +452,7 @@ static void _call_f_operator_slash__eq__970 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion &)((QQuaternion *)cls)->operator/= (arg1)); } @@ -471,7 +471,7 @@ static void _call_f_rotatedVector_c2140 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D)((QQuaternion *)cls)->rotatedVector (arg1)); } @@ -505,7 +505,7 @@ static void _call_f_setScalar_970 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->setScalar (arg1); } @@ -525,7 +525,7 @@ static void _call_f_setVector_2140 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->setVector (arg1); } @@ -549,9 +549,9 @@ static void _call_f_setVector_2694 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); - float arg3 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->setVector (arg1, arg2, arg3); } @@ -571,7 +571,7 @@ static void _call_f_setX_970 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->setX (arg1); } @@ -591,7 +591,7 @@ static void _call_f_setY_970 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->setY (arg1); } @@ -611,7 +611,7 @@ static void _call_f_setZ_970 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QQuaternion *)cls)->setZ (arg1); } @@ -723,8 +723,8 @@ static void _call_f_dotProduct_4804 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QQuaternion &arg1 = args.read (heap); - const QQuaternion &arg2 = args.read (heap); + const QQuaternion &arg1 = gsi::arg_reader() (args, heap); + const QQuaternion &arg2 = gsi::arg_reader() (args, heap); ret.write ((float)QQuaternion::dotProduct (arg1, arg2)); } @@ -747,9 +747,9 @@ static void _call_f_fromAxes_6204 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); - const QVector3D &arg3 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); + const QVector3D &arg3 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion)QQuaternion::fromAxes (arg1, arg2, arg3)); } @@ -770,8 +770,8 @@ static void _call_f_fromAxisAndAngle_3002 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - float arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion)QQuaternion::fromAxisAndAngle (arg1, arg2)); } @@ -796,10 +796,10 @@ static void _call_f_fromAxisAndAngle_3556 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); - float arg3 = args.read (heap); - float arg4 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); + float arg4 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion)QQuaternion::fromAxisAndAngle (arg1, arg2, arg3, arg4)); } @@ -820,8 +820,8 @@ static void _call_f_fromDirection_4172 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion)QQuaternion::fromDirection (arg1, arg2)); } @@ -840,7 +840,7 @@ static void _call_f_fromEulerAngles_2140 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion)QQuaternion::fromEulerAngles (arg1)); } @@ -863,9 +863,9 @@ static void _call_f_fromEulerAngles_2694 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); - float arg3 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion)QQuaternion::fromEulerAngles (arg1, arg2, arg3)); } @@ -888,9 +888,9 @@ static void _call_f_nlerp_5666 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QQuaternion &arg1 = args.read (heap); - const QQuaternion &arg2 = args.read (heap); - float arg3 = args.read (heap); + const QQuaternion &arg1 = gsi::arg_reader() (args, heap); + const QQuaternion &arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion)QQuaternion::nlerp (arg1, arg2, arg3)); } @@ -911,8 +911,8 @@ static void _call_f_rotationTo_4172 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion)QQuaternion::rotationTo (arg1, arg2)); } @@ -935,9 +935,9 @@ static void _call_f_slerp_5666 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QQuaternion &arg1 = args.read (heap); - const QQuaternion &arg2 = args.read (heap); - float arg3 = args.read (heap); + const QQuaternion &arg1 = gsi::arg_reader() (args, heap); + const QQuaternion &arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); ret.write ((QQuaternion)QQuaternion::slerp (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRadialGradient.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRadialGradient.cc index d79443b31..de684dece 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRadialGradient.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRadialGradient.cc @@ -72,9 +72,9 @@ static void _call_ctor_QRadialGradient_4827 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - double arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); ret.write (new QRadialGradient (arg1, arg2, arg3)); } @@ -101,11 +101,11 @@ static void _call_ctor_QRadialGradient_4923 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); ret.write (new QRadialGradient (arg1, arg2, arg3, arg4, arg5)); } @@ -126,8 +126,8 @@ static void _call_ctor_QRadialGradient_2949 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - double arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write (new QRadialGradient (arg1, arg2)); } @@ -150,9 +150,9 @@ static void _call_ctor_QRadialGradient_2997 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write (new QRadialGradient (arg1, arg2, arg3)); } @@ -177,10 +177,10 @@ static void _call_ctor_QRadialGradient_5790 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - double arg2 = args.read (heap); - const QPointF &arg3 = args.read (heap); - double arg4 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const QPointF &arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write (new QRadialGradient (arg1, arg2, arg3, arg4)); } @@ -209,12 +209,12 @@ static void _call_ctor_QRadialGradient_5886 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); ret.write (new QRadialGradient (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -308,7 +308,7 @@ static void _call_f_setCenter_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadialGradient *)cls)->setCenter (arg1); } @@ -330,8 +330,8 @@ static void _call_f_setCenter_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadialGradient *)cls)->setCenter (arg1, arg2); } @@ -351,7 +351,7 @@ static void _call_f_setCenterRadius_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadialGradient *)cls)->setCenterRadius (arg1); } @@ -371,7 +371,7 @@ static void _call_f_setFocalPoint_1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadialGradient *)cls)->setFocalPoint (arg1); } @@ -393,8 +393,8 @@ static void _call_f_setFocalPoint_2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadialGradient *)cls)->setFocalPoint (arg1, arg2); } @@ -414,7 +414,7 @@ static void _call_f_setFocalRadius_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadialGradient *)cls)->setFocalRadius (arg1); } @@ -434,7 +434,7 @@ static void _call_f_setRadius_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadialGradient *)cls)->setRadius (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRasterWindow.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRasterWindow.cc index a97eaff3a..152aa67d8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRasterWindow.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRasterWindow.cc @@ -98,9 +98,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRasterWindow::tr (arg1, arg2, arg3)); } @@ -123,9 +123,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRasterWindow::trUtf8 (arg1, arg2, arg3)); } @@ -868,7 +868,7 @@ static void _call_ctor_QRasterWindow_Adaptor_1335 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWindow *arg1 = args ? args.read (heap) : (QWindow *)(0); + QWindow *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QRasterWindow_Adaptor (arg1)); } @@ -943,7 +943,7 @@ static void _call_emitter_contentOrientationChanged_2521 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_contentOrientationChanged_2521 (arg1); } @@ -985,7 +985,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_destroyed_1302 (arg1); } @@ -1143,7 +1143,7 @@ static void _call_emitter_focusObjectChanged_1302 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_focusObjectChanged_1302 (arg1); } @@ -1204,7 +1204,7 @@ static void _call_emitter_heightChanged_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_heightChanged_767 (arg1); } @@ -1270,7 +1270,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRasterWindow_Adaptor *)cls)->fp_QRasterWindow_isSignalConnected_c2394 (arg1)); } @@ -1336,7 +1336,7 @@ static void _call_emitter_maximumHeightChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_maximumHeightChanged_767 (arg1); } @@ -1354,7 +1354,7 @@ static void _call_emitter_maximumWidthChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_maximumWidthChanged_767 (arg1); } @@ -1395,7 +1395,7 @@ static void _call_emitter_minimumHeightChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_minimumHeightChanged_767 (arg1); } @@ -1413,7 +1413,7 @@ static void _call_emitter_minimumWidthChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_minimumWidthChanged_767 (arg1); } @@ -1431,7 +1431,7 @@ static void _call_emitter_modalityChanged_2216 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_modalityChanged_2216 (arg1); } @@ -1598,7 +1598,7 @@ static void _call_emitter_opacityChanged_1071 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_opacityChanged_1071 (arg1); } @@ -1640,7 +1640,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRasterWindow_Adaptor *)cls)->fp_QRasterWindow_receivers_c1731 (arg1)); } @@ -1705,7 +1705,7 @@ static void _call_emitter_screenChanged_1311 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScreen *arg1 = args.read (heap); + QScreen *arg1 = gsi::arg_reader() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_screenChanged_1311 (arg1); } @@ -1904,7 +1904,7 @@ static void _call_emitter_visibilityChanged_2329 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_visibilityChanged_2329 (arg1); } @@ -1922,7 +1922,7 @@ static void _call_emitter_visibleChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_visibleChanged_864 (arg1); } @@ -1964,7 +1964,7 @@ static void _call_emitter_widthChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_widthChanged_767 (arg1); } @@ -1982,7 +1982,7 @@ static void _call_emitter_windowStateChanged_1894 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_windowStateChanged_1894 (arg1); } @@ -2000,7 +2000,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_windowTitleChanged_2025 (arg1); } @@ -2018,7 +2018,7 @@ static void _call_emitter_xChanged_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_xChanged_767 (arg1); } @@ -2036,7 +2036,7 @@ static void _call_emitter_yChanged_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QRasterWindow_Adaptor *)cls)->emitter_QRasterWindow_yChanged_767 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRawFont.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRawFont.cc index 1b2524501..f08190694 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRawFont.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRawFont.cc @@ -75,9 +75,9 @@ static void _call_ctor_QRawFont_5664 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - double arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QFont::PreferDefaultHinting)); + const QString &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QFont::PreferDefaultHinting), heap); ret.write (new QRawFont (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -100,9 +100,9 @@ static void _call_ctor_QRawFont_5948 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - double arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QFont::PreferDefaultHinting)); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QFont::PreferDefaultHinting), heap); ret.write (new QRawFont (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -121,7 +121,7 @@ static void _call_ctor_QRawFont_2099 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRawFont &arg1 = args.read (heap); + const QRawFont &arg1 = gsi::arg_reader() (args, heap); ret.write (new QRawFont (arg1)); } @@ -140,7 +140,7 @@ static void _call_f_advancesForGlyphIndexes_c2805 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); ret.write > ((QVector)((QRawFont *)cls)->advancesForGlyphIndexes (arg1)); } @@ -161,8 +161,8 @@ static void _call_f_advancesForGlyphIndexes_c5747 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); - QFlags arg2 = args.read > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write > ((QVector)((QRawFont *)cls)->advancesForGlyphIndexes (arg1, arg2)); } @@ -185,9 +185,9 @@ static void _call_f_advancesForGlyphIndexes_c3825 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const quint32 *arg1 = args.read (heap); - QPointF *arg2 = args.read (heap); - int arg3 = args.read (heap); + const quint32 *arg1 = gsi::arg_reader() (args, heap); + QPointF *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRawFont *)cls)->advancesForGlyphIndexes (arg1, arg2, arg3)); } @@ -212,10 +212,10 @@ static void _call_f_advancesForGlyphIndexes_c6767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const quint32 *arg1 = args.read (heap); - QPointF *arg2 = args.read (heap); - int arg3 = args.read (heap); - QFlags arg4 = args.read > (heap); + const quint32 *arg1 = gsi::arg_reader() (args, heap); + QPointF *arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QRawFont *)cls)->advancesForGlyphIndexes (arg1, arg2, arg3, arg4)); } @@ -238,9 +238,9 @@ static void _call_f_alphaMapForGlyph_c6224 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint32 arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRawFont::SubPixelAntialiasing)); - const QTransform &arg3 = args ? args.read (heap) : (const QTransform &)(QTransform()); + quint32 arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRawFont::SubPixelAntialiasing), heap); + const QTransform &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTransform(), heap); ret.write ((QImage)((QRawFont *)cls)->alphaMapForGlyph (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -289,7 +289,7 @@ static void _call_f_boundingRect_c1098 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint32 arg1 = args.read (heap); + quint32 arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QRawFont *)cls)->boundingRect (arg1)); } @@ -338,7 +338,7 @@ static void _call_f_fontTable_c1731 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QRawFont *)cls)->fontTable (arg1)); } @@ -363,10 +363,10 @@ static void _call_f_glyphIndexesForChars_c4460 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type * arg1 = args.read::target_type * > (heap); - int arg2 = args.read (heap); - quint32 *arg3 = args.read (heap); - int *arg4 = args.read (heap); + const qt_gsi::Converter::target_type * arg1 = gsi::arg_reader::target_type * >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quint32 *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRawFont *)cls)->glyphIndexesForChars (qt_gsi::QtToCppAdaptor(arg1).cptr(), arg2, arg3, arg4)); } @@ -385,7 +385,7 @@ static void _call_f_glyphIndexesForString_c2025 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QVector)((QRawFont *)cls)->glyphIndexesForString (arg1)); } @@ -468,9 +468,9 @@ static void _call_f_loadFromData_5948 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - double arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRawFont *)cls)->loadFromData (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -494,9 +494,9 @@ static void _call_f_loadFromFile_5664 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - double arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRawFont *)cls)->loadFromFile (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -531,7 +531,7 @@ static void _call_f_operator_excl__eq__c2099 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRawFont &arg1 = args.read (heap); + const QRawFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRawFont *)cls)->operator!= (arg1)); } @@ -550,7 +550,7 @@ static void _call_f_operator_eq__2099 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRawFont &arg1 = args.read (heap); + const QRawFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRawFont &)((QRawFont *)cls)->operator= (arg1)); } @@ -569,7 +569,7 @@ static void _call_f_operator_eq__eq__c2099 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRawFont &arg1 = args.read (heap); + const QRawFont &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRawFont *)cls)->operator== (arg1)); } @@ -588,7 +588,7 @@ static void _call_f_pathForGlyph_c1098 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint32 arg1 = args.read (heap); + quint32 arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QRawFont *)cls)->pathForGlyph (arg1)); } @@ -622,7 +622,7 @@ static void _call_f_setPixelSize_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRawFont *)cls)->setPixelSize (arg1); } @@ -687,7 +687,7 @@ static void _call_f_supportsCharacter_c1772 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRawFont *)cls)->supportsCharacter (arg1)); } @@ -706,7 +706,7 @@ static void _call_f_supportsCharacter_c899 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QRawFont *)cls)->supportsCharacter (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -725,7 +725,7 @@ static void _call_f_swap_1404 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QRawFont &arg1 = args.read (heap); + QRawFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRawFont *)cls)->swap (arg1); } @@ -807,8 +807,8 @@ static void _call_f_fromFont_4907 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QFontDatabase::Any)); + const QFont &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QFontDatabase::Any), heap); ret.write ((QRawFont)QRawFont::fromFont (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc index 6c6fa68ec..908f15095 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRegExpValidator.cc @@ -86,7 +86,7 @@ static void _call_f_setRegExp_1981 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegExpValidator *)cls)->setRegExp (arg1); } @@ -108,8 +108,8 @@ static void _call_f_validate_c2171 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QRegExpValidator *)cls)->validate (arg1, arg2))); } @@ -132,9 +132,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRegExpValidator::tr (arg1, arg2, arg3)); } @@ -157,9 +157,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRegExpValidator::trUtf8 (arg1, arg2, arg3)); } @@ -405,7 +405,7 @@ static void _call_ctor_QRegExpValidator_Adaptor_1302 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QRegExpValidator_Adaptor (arg1)); } @@ -425,8 +425,8 @@ static void _call_ctor_QRegExpValidator_Adaptor_3175 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QRegExpValidator_Adaptor (arg1, arg2)); } @@ -506,7 +506,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QRegExpValidator_Adaptor *)cls)->emitter_QRegExpValidator_destroyed_1302 (arg1); } @@ -621,7 +621,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegExpValidator_Adaptor *)cls)->fp_QRegExpValidator_isSignalConnected_c2394 (arg1)); } @@ -639,7 +639,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRegExpValidator_Adaptor *)cls)->fp_QRegExpValidator_receivers_c1731 (arg1)); } @@ -657,7 +657,7 @@ static void _call_emitter_regExpChanged_1981 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); ((QRegExpValidator_Adaptor *)cls)->emitter_QRegExpValidator_regExpChanged_1981 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRegion.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRegion.cc index 542a8fbf5..4563439bd 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRegion.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRegion.cc @@ -83,11 +83,11 @@ static void _call_ctor_QRegion_4911 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegion::Rectangle)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegion::Rectangle), heap); ret.write (new QRegion (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -108,8 +108,8 @@ static void _call_ctor_QRegion_3959 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegion::Rectangle)); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegion::Rectangle), heap); ret.write (new QRegion (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -130,8 +130,8 @@ static void _call_ctor_QRegion_3578 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::OddEvenFill)); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::OddEvenFill), heap); ret.write (new QRegion (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -150,7 +150,7 @@ static void _call_ctor_QRegion_2006 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write (new QRegion (arg1)); } @@ -169,7 +169,7 @@ static void _call_ctor_QRegion_1999 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBitmap &arg1 = args.read (heap); + const QBitmap &arg1 = gsi::arg_reader() (args, heap); ret.write (new QRegion (arg1)); } @@ -203,7 +203,7 @@ static void _call_f_contains_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegion *)cls)->contains (arg1)); } @@ -222,7 +222,7 @@ static void _call_f_contains_c1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegion *)cls)->contains (arg1)); } @@ -241,7 +241,7 @@ static void _call_f_intersected_c2006 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->intersected (arg1)); } @@ -260,7 +260,7 @@ static void _call_f_intersected_c1792 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->intersected (arg1)); } @@ -279,7 +279,7 @@ static void _call_f_intersects_c2006 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegion *)cls)->intersects (arg1)); } @@ -298,7 +298,7 @@ static void _call_f_intersects_c1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegion *)cls)->intersects (arg1)); } @@ -347,7 +347,7 @@ static void _call_f_operator_excl__eq__c2006 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegion *)cls)->operator!= (arg1)); } @@ -366,7 +366,7 @@ static void _call_f_operator_amp__c2006 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->operator& (arg1)); } @@ -385,7 +385,7 @@ static void _call_f_operator_amp__c1792 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->operator& (arg1)); } @@ -404,7 +404,7 @@ static void _call_f_operator_amp__eq__2006 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator&= (arg1)); } @@ -423,7 +423,7 @@ static void _call_f_operator_amp__eq__1792 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator&= (arg1)); } @@ -442,7 +442,7 @@ static void _call_f_operator_plus__c2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->operator+ (arg1)); } @@ -461,7 +461,7 @@ static void _call_f_operator_plus__c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->operator+ (arg1)); } @@ -480,7 +480,7 @@ static void _call_f_operator_plus__eq__2006 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator+= (arg1)); } @@ -499,7 +499,7 @@ static void _call_f_operator_plus__eq__1792 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator+= (arg1)); } @@ -518,7 +518,7 @@ static void _call_f_operator_minus__c2006 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->operator- (arg1)); } @@ -537,7 +537,7 @@ static void _call_f_operator_minus__eq__2006 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator-= (arg1)); } @@ -556,7 +556,7 @@ static void _call_f_operator_eq__2006 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator= (arg1)); } @@ -575,7 +575,7 @@ static void _call_f_operator_eq__eq__c2006 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegion *)cls)->operator== (arg1)); } @@ -594,7 +594,7 @@ static void _call_f_operator_acute__c2006 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->operator^ (arg1)); } @@ -613,7 +613,7 @@ static void _call_f_operator_acute__eq__2006 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator^= (arg1)); } @@ -632,7 +632,7 @@ static void _call_f_operator_pipe__c2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->operator| (arg1)); } @@ -651,7 +651,7 @@ static void _call_f_operator_pipe__eq__2006 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion &)((QRegion *)cls)->operator|= (arg1)); } @@ -700,7 +700,7 @@ static void _call_f_subtracted_c2006 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->subtracted (arg1)); } @@ -719,7 +719,7 @@ static void _call_f_swap_1311 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QRegion &arg1 = args.read (heap); + QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegion *)cls)->swap (arg1); } @@ -741,8 +741,8 @@ static void _call_f_translate_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegion *)cls)->translate (arg1, arg2); } @@ -762,7 +762,7 @@ static void _call_f_translate_1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegion *)cls)->translate (arg1); } @@ -784,8 +784,8 @@ static void _call_f_translated_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->translated (arg1, arg2)); } @@ -804,7 +804,7 @@ static void _call_f_translated_c1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->translated (arg1)); } @@ -823,7 +823,7 @@ static void _call_f_united_c2006 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->united (arg1)); } @@ -842,7 +842,7 @@ static void _call_f_united_c1792 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->united (arg1)); } @@ -861,7 +861,7 @@ static void _call_f_xored_c2006 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QRegion *)cls)->xored (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc index fc46c6a5f..a931decd6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQRegularExpressionValidator.cc @@ -86,7 +86,7 @@ static void _call_f_setRegularExpression_3188 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegularExpression &arg1 = args.read (heap); + const QRegularExpression &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRegularExpressionValidator *)cls)->setRegularExpression (arg1); } @@ -108,8 +108,8 @@ static void _call_f_validate_c2171 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QRegularExpressionValidator *)cls)->validate (arg1, arg2))); } @@ -132,9 +132,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRegularExpressionValidator::tr (arg1, arg2, arg3)); } @@ -157,9 +157,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRegularExpressionValidator::trUtf8 (arg1, arg2, arg3)); } @@ -405,7 +405,7 @@ static void _call_ctor_QRegularExpressionValidator_Adaptor_1302 (const qt_gsi::G { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QRegularExpressionValidator_Adaptor (arg1)); } @@ -425,8 +425,8 @@ static void _call_ctor_QRegularExpressionValidator_Adaptor_4382 (const qt_gsi::G { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegularExpression &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QRegularExpression &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QRegularExpressionValidator_Adaptor (arg1, arg2)); } @@ -506,7 +506,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QRegularExpressionValidator_Adaptor *)cls)->emitter_QRegularExpressionValidator_destroyed_1302 (arg1); } @@ -621,7 +621,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRegularExpressionValidator_Adaptor *)cls)->fp_QRegularExpressionValidator_isSignalConnected_c2394 (arg1)); } @@ -639,7 +639,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRegularExpressionValidator_Adaptor *)cls)->fp_QRegularExpressionValidator_receivers_c1731 (arg1)); } @@ -657,7 +657,7 @@ static void _call_emitter_regularExpressionChanged_3188 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegularExpression &arg1 = args.read (heap); + const QRegularExpression &arg1 = gsi::arg_reader() (args, heap); ((QRegularExpressionValidator_Adaptor *)cls)->emitter_QRegularExpressionValidator_regularExpressionChanged_3188 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQResizeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQResizeEvent.cc index d3d5bd4d8..650129bc6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQResizeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQResizeEvent.cc @@ -121,8 +121,8 @@ static void _call_ctor_QResizeEvent_Adaptor_3502 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); ret.write (new QResizeEvent_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQScreen.cc b/src/gsiqt/qt5/QtGui/gsiDeclQScreen.cc index c97db766b..d46119d27 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQScreen.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQScreen.cc @@ -76,8 +76,8 @@ static void _call_f_angleBetween_c4934 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QScreen *)cls)->angleBetween (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -209,11 +209,11 @@ static void _call_f_grabWindow_3332 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args ? args.read (heap) : (int)(0); - int arg3 = args ? args.read (heap) : (int)(0); - int arg4 = args ? args.read (heap) : (int)(-1); - int arg5 = args ? args.read (heap) : (int)(-1); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QPixmap)((QScreen *)cls)->grabWindow (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5)); } @@ -232,7 +232,7 @@ static void _call_f_isLandscape_c2521 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QScreen *)cls)->isLandscape (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -251,7 +251,7 @@ static void _call_f_isPortrait_c2521 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QScreen *)cls)->isPortrait (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -319,9 +319,9 @@ static void _call_f_mapBetween_c6618 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QRect &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QScreen *)cls)->mapBetween (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -490,7 +490,7 @@ static void _call_f_setOrientationUpdateMask_3217 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScreen *)cls)->setOrientationUpdateMask (arg1); } @@ -529,9 +529,9 @@ static void _call_f_transformBetween_c6618 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QRect &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); ret.write ((QTransform)((QScreen *)cls)->transformBetween (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -599,9 +599,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QScreen::tr (arg1, arg2, arg3)); } @@ -624,9 +624,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QScreen::trUtf8 (arg1, arg2, arg3)); } @@ -893,7 +893,7 @@ static void _call_emitter_availableGeometryChanged_1792 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ((QScreen_Adaptor *)cls)->emitter_QScreen_availableGeometryChanged_1792 (arg1); } @@ -959,7 +959,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QScreen_Adaptor *)cls)->emitter_QScreen_destroyed_1302 (arg1); } @@ -1050,7 +1050,7 @@ static void _call_emitter_geometryChanged_1792 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ((QScreen_Adaptor *)cls)->emitter_QScreen_geometryChanged_1792 (arg1); } @@ -1068,7 +1068,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScreen_Adaptor *)cls)->fp_QScreen_isSignalConnected_c2394 (arg1)); } @@ -1086,7 +1086,7 @@ static void _call_emitter_logicalDotsPerInchChanged_1071 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QScreen_Adaptor *)cls)->emitter_QScreen_logicalDotsPerInchChanged_1071 (arg1); } @@ -1104,7 +1104,7 @@ static void _call_emitter_orientationChanged_2521 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QScreen_Adaptor *)cls)->emitter_QScreen_orientationChanged_2521 (arg1); } @@ -1122,7 +1122,7 @@ static void _call_emitter_physicalDotsPerInchChanged_1071 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QScreen_Adaptor *)cls)->emitter_QScreen_physicalDotsPerInchChanged_1071 (arg1); } @@ -1140,7 +1140,7 @@ static void _call_emitter_physicalSizeChanged_1875 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); ((QScreen_Adaptor *)cls)->emitter_QScreen_physicalSizeChanged_1875 (arg1); } @@ -1158,7 +1158,7 @@ static void _call_emitter_primaryOrientationChanged_2521 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QScreen_Adaptor *)cls)->emitter_QScreen_primaryOrientationChanged_2521 (arg1); } @@ -1176,7 +1176,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QScreen_Adaptor *)cls)->fp_QScreen_receivers_c1731 (arg1)); } @@ -1194,7 +1194,7 @@ static void _call_emitter_refreshRateChanged_1071 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QScreen_Adaptor *)cls)->emitter_QScreen_refreshRateChanged_1071 (arg1); } @@ -1264,7 +1264,7 @@ static void _call_emitter_virtualGeometryChanged_1792 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ((QScreen_Adaptor *)cls)->emitter_QScreen_virtualGeometryChanged_1792 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQScreenOrientationChangeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQScreenOrientationChangeEvent.cc index bd33fe367..bdc53b449 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQScreenOrientationChangeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQScreenOrientationChangeEvent.cc @@ -120,8 +120,8 @@ static void _call_ctor_QScreenOrientationChangeEvent_Adaptor_3724 (const qt_gsi: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScreen *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QScreen *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QScreenOrientationChangeEvent_Adaptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQScrollEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQScrollEvent.cc index cb2762db9..ed6b56333 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQScrollEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQScrollEvent.cc @@ -139,9 +139,9 @@ static void _call_ctor_QScrollEvent_Adaptor_6662 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QScrollEvent_Adaptor (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQScrollPrepareEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQScrollPrepareEvent.cc index d4a4cf303..e041063da 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQScrollPrepareEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQScrollPrepareEvent.cc @@ -84,7 +84,7 @@ static void _call_f_setContentPos_1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollPrepareEvent *)cls)->setContentPos (arg1); } @@ -104,7 +104,7 @@ static void _call_f_setContentPosRange_1862 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollPrepareEvent *)cls)->setContentPosRange (arg1); } @@ -124,7 +124,7 @@ static void _call_f_setViewportSize_1875 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollPrepareEvent *)cls)->setViewportSize (arg1); } @@ -216,7 +216,7 @@ static void _call_ctor_QScrollPrepareEvent_Adaptor_1986 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write (new QScrollPrepareEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQSessionManager.cc b/src/gsiqt/qt5/QtGui/gsiDeclQSessionManager.cc index 9c2aaead4..bd85ed0db 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQSessionManager.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQSessionManager.cc @@ -235,7 +235,7 @@ static void _call_f_setDiscardCommand_2437 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSessionManager *)cls)->setDiscardCommand (arg1); } @@ -257,8 +257,8 @@ static void _call_f_setManagerProperty_3942 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSessionManager *)cls)->setManagerProperty (arg1, arg2); } @@ -280,8 +280,8 @@ static void _call_f_setManagerProperty_4354 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSessionManager *)cls)->setManagerProperty (arg1, arg2); } @@ -301,7 +301,7 @@ static void _call_f_setRestartCommand_2437 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSessionManager *)cls)->setRestartCommand (arg1); } @@ -321,7 +321,7 @@ static void _call_f_setRestartHint_3216 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSessionManager *)cls)->setRestartHint (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -345,9 +345,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSessionManager::tr (arg1, arg2, arg3)); } @@ -370,9 +370,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSessionManager::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQShortcutEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQShortcutEvent.cc index c9c40e279..6bfe3634d 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQShortcutEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQShortcutEvent.cc @@ -145,9 +145,9 @@ static void _call_ctor_QShortcutEvent_Adaptor_3931 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); - int arg2 = args.read (heap); - bool arg3 = args ? args.read (heap) : (bool)(false); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write (new QShortcutEvent_Adaptor (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQStandardItem.cc b/src/gsiqt/qt5/QtGui/gsiDeclQStandardItem.cc index c981e2c61..90534bab8 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQStandardItem.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQStandardItem.cc @@ -87,7 +87,7 @@ static void _call_f_appendColumn_3267 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->appendColumn (arg1); } @@ -107,7 +107,7 @@ static void _call_f_appendRow_3267 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->appendRow (arg1); } @@ -127,7 +127,7 @@ static void _call_f_appendRow_1919 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStandardItem *arg1 = args.read (heap); + QStandardItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->appendRow (arg1); } @@ -147,7 +147,7 @@ static void _call_f_appendRows_3267 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->appendRows (arg1); } @@ -199,8 +199,8 @@ static void _call_f_child_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QStandardItem *)((QStandardItem *)cls)->child (arg1, arg2)); } @@ -264,7 +264,7 @@ static void _call_f_data_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(Qt::UserRole + 1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole + 1, heap); ret.write ((QVariant)((QStandardItem *)cls)->data (arg1)); } @@ -375,8 +375,8 @@ static void _call_f_insertColumn_3926 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->insertColumn (arg1, arg2); } @@ -398,8 +398,8 @@ static void _call_f_insertColumns_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->insertColumns (arg1, arg2); } @@ -421,8 +421,8 @@ static void _call_f_insertRow_3926 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->insertRow (arg1, arg2); } @@ -444,8 +444,8 @@ static void _call_f_insertRow_2578 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QStandardItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QStandardItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->insertRow (arg1, arg2); } @@ -467,8 +467,8 @@ static void _call_f_insertRows_3926 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->insertRows (arg1, arg2); } @@ -490,8 +490,8 @@ static void _call_f_insertRows_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->insertRows (arg1, arg2); } @@ -631,7 +631,7 @@ static void _call_f_operator_lt__c2610 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStandardItem &arg1 = args.read (heap); + const QStandardItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItem *)cls)->operator< (arg1)); } @@ -665,7 +665,7 @@ static void _call_f_read_1697 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->read (arg1); } @@ -685,7 +685,7 @@ static void _call_f_removeColumn_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->removeColumn (arg1); } @@ -707,8 +707,8 @@ static void _call_f_removeColumns_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->removeColumns (arg1, arg2); } @@ -728,7 +728,7 @@ static void _call_f_removeRow_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->removeRow (arg1); } @@ -750,8 +750,8 @@ static void _call_f_removeRows_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->removeRows (arg1, arg2); } @@ -801,7 +801,7 @@ static void _call_f_setAccessibleDescription_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setAccessibleDescription (arg1); } @@ -821,7 +821,7 @@ static void _call_f_setAccessibleText_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setAccessibleText (arg1); } @@ -841,7 +841,7 @@ static void _call_f_setBackground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setBackground (arg1); } @@ -861,7 +861,7 @@ static void _call_f_setCheckState_1740 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setCheckState (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -881,7 +881,7 @@ static void _call_f_setCheckable_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setCheckable (arg1); } @@ -905,9 +905,9 @@ static void _call_f_setChild_3237 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QStandardItem *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QStandardItem *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setChild (arg1, arg2, arg3); } @@ -929,8 +929,8 @@ static void _call_f_setChild_2578 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QStandardItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QStandardItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setChild (arg1, arg2); } @@ -950,7 +950,7 @@ static void _call_f_setColumnCount_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setColumnCount (arg1); } @@ -972,8 +972,8 @@ static void _call_f_setData_2778 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::UserRole + 1); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole + 1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setData (arg1, arg2); } @@ -993,7 +993,7 @@ static void _call_f_setDragEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setDragEnabled (arg1); } @@ -1013,7 +1013,7 @@ static void _call_f_setDropEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setDropEnabled (arg1); } @@ -1033,7 +1033,7 @@ static void _call_f_setEditable_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setEditable (arg1); } @@ -1053,7 +1053,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setEnabled (arg1); } @@ -1073,7 +1073,7 @@ static void _call_f_setFlags_2222 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setFlags (arg1); } @@ -1093,7 +1093,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setFont (arg1); } @@ -1113,7 +1113,7 @@ static void _call_f_setForeground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setForeground (arg1); } @@ -1133,7 +1133,7 @@ static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setIcon (arg1); } @@ -1153,7 +1153,7 @@ static void _call_f_setRowCount_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setRowCount (arg1); } @@ -1173,7 +1173,7 @@ static void _call_f_setSelectable_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setSelectable (arg1); } @@ -1193,7 +1193,7 @@ static void _call_f_setSizeHint_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setSizeHint (arg1); } @@ -1213,7 +1213,7 @@ static void _call_f_setStatusTip_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setStatusTip (arg1); } @@ -1233,7 +1233,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setText (arg1); } @@ -1253,7 +1253,7 @@ static void _call_f_setTextAlignment_2750 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setTextAlignment (arg1); } @@ -1273,7 +1273,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setToolTip (arg1); } @@ -1293,7 +1293,7 @@ static void _call_f_setTristate_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setTristate (arg1); } @@ -1313,7 +1313,7 @@ static void _call_f_setWhatsThis_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->setWhatsThis (arg1); } @@ -1350,8 +1350,8 @@ static void _call_f_sortChildren_2340 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->sortChildren (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1388,8 +1388,8 @@ static void _call_f_takeChild_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QStandardItem *)((QStandardItem *)cls)->takeChild (arg1, arg2)); } @@ -1408,7 +1408,7 @@ static void _call_f_takeColumn_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QStandardItem *)cls)->takeColumn (arg1)); } @@ -1427,7 +1427,7 @@ static void _call_f_takeRow_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QStandardItem *)cls)->takeRow (arg1)); } @@ -1521,7 +1521,7 @@ static void _call_f_write_c1697 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItem *)cls)->write (arg1); } @@ -1813,7 +1813,7 @@ static void _call_ctor_QStandardItem_Adaptor_2025 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStandardItem_Adaptor (arg1)); } @@ -1833,8 +1833,8 @@ static void _call_ctor_QStandardItem_Adaptor_3704 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write (new QStandardItem_Adaptor (arg1, arg2)); } @@ -1854,8 +1854,8 @@ static void _call_ctor_QStandardItem_Adaptor_1426 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(1); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write (new QStandardItem_Adaptor (arg1, arg2)); } @@ -1953,7 +1953,7 @@ static void _call_fp_operator_eq__2610 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStandardItem &arg1 = args.read (heap); + const QStandardItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStandardItem &)((QStandardItem_Adaptor *)cls)->fp_QStandardItem_operator_eq__2610 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc b/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc index 1a1159c21..b1a36e526 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQStandardItemModel.cc @@ -75,7 +75,7 @@ static void _call_f_appendColumn_3267 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->appendColumn (arg1); } @@ -95,7 +95,7 @@ static void _call_f_appendRow_3267 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->appendRow (arg1); } @@ -115,7 +115,7 @@ static void _call_f_appendRow_1919 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStandardItem *arg1 = args.read (heap); + QStandardItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->appendRow (arg1); } @@ -151,7 +151,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QStandardItemModel *)cls)->columnCount (arg1)); } @@ -172,8 +172,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QStandardItemModel *)cls)->data (arg1, arg2)); } @@ -200,11 +200,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -227,9 +227,9 @@ static void _call_f_findItems_c4892 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::MatchExactly); - int arg3 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::MatchExactly, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QStandardItemModel *)cls)->findItems (arg1, arg2, arg3)); } @@ -248,7 +248,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QStandardItemModel *)cls)->flags (arg1)); } @@ -267,7 +267,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel *)cls)->hasChildren (arg1)); } @@ -290,9 +290,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QStandardItemModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -311,7 +311,7 @@ static void _call_f_horizontalHeaderItem_c767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QStandardItem *)((QStandardItemModel *)cls)->horizontalHeaderItem (arg1)); } @@ -334,9 +334,9 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QStandardItemModel *)cls)->index (arg1, arg2, arg3)); } @@ -355,7 +355,7 @@ static void _call_f_indexFromItem_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStandardItem *arg1 = args.read (heap); + const QStandardItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel *)cls)->indexFromItem (arg1)); } @@ -376,8 +376,8 @@ static void _call_f_insertColumn_3926 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->insertColumn (arg1, arg2); } @@ -399,8 +399,8 @@ static void _call_f_insertColumn_3054 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel *)cls)->insertColumn (arg1, arg2)); } @@ -423,9 +423,9 @@ static void _call_f_insertColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel *)cls)->insertColumns (arg1, arg2, arg3)); } @@ -446,8 +446,8 @@ static void _call_f_insertRow_3926 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->insertRow (arg1, arg2); } @@ -469,8 +469,8 @@ static void _call_f_insertRow_2578 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QStandardItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QStandardItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->insertRow (arg1, arg2); } @@ -492,8 +492,8 @@ static void _call_f_insertRow_3054 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel *)cls)->insertRow (arg1, arg2)); } @@ -516,9 +516,9 @@ static void _call_f_insertRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel *)cls)->insertRows (arg1, arg2, arg3)); } @@ -554,8 +554,8 @@ static void _call_f_item_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QStandardItem *)((QStandardItemModel *)cls)->item (arg1, arg2)); } @@ -574,7 +574,7 @@ static void _call_f_itemData_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QMap)((QStandardItemModel *)cls)->itemData (arg1)); } @@ -593,7 +593,7 @@ static void _call_f_itemFromIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStandardItem *)((QStandardItemModel *)cls)->itemFromIndex (arg1)); } @@ -627,7 +627,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QStandardItemModel *)cls)->mimeData (arg1)); } @@ -661,7 +661,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel *)cls)->parent (arg1)); } @@ -699,9 +699,9 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel *)cls)->removeColumns (arg1, arg2, arg3)); } @@ -724,9 +724,9 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QStandardItemModel *)cls)->removeRows (arg1, arg2, arg3)); } @@ -745,7 +745,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QStandardItemModel *)cls)->rowCount (arg1)); } @@ -764,7 +764,7 @@ static void _call_f_setColumnCount_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setColumnCount (arg1); } @@ -788,9 +788,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStandardItemModel *)cls)->setData (arg1, arg2, arg3)); } @@ -815,10 +815,10 @@ static void _call_f_setHeaderData_5242 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(Qt::EditRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QStandardItemModel *)cls)->setHeaderData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -839,8 +839,8 @@ static void _call_f_setHorizontalHeaderItem_2578 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QStandardItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QStandardItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setHorizontalHeaderItem (arg1, arg2); } @@ -860,7 +860,7 @@ static void _call_f_setHorizontalHeaderLabels_2437 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setHorizontalHeaderLabels (arg1); } @@ -884,9 +884,9 @@ static void _call_f_setItem_3237 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QStandardItem *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QStandardItem *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setItem (arg1, arg2, arg3); } @@ -908,8 +908,8 @@ static void _call_f_setItem_2578 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QStandardItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QStandardItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setItem (arg1, arg2); } @@ -931,8 +931,8 @@ static void _call_f_setItemData_5414 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QMap &arg2 = args.read & > (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QMap &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QStandardItemModel *)cls)->setItemData (arg1, arg2)); } @@ -951,7 +951,7 @@ static void _call_f_setItemPrototype_2614 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStandardItem *arg1 = args.read (heap); + const QStandardItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setItemPrototype (arg1); } @@ -971,7 +971,7 @@ static void _call_f_setItemRoleNames_3419 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHash &arg1 = args.read & > (heap); + const QHash &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setItemRoleNames (arg1); } @@ -991,7 +991,7 @@ static void _call_f_setRowCount_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setRowCount (arg1); } @@ -1011,7 +1011,7 @@ static void _call_f_setSortRole_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setSortRole (arg1); } @@ -1033,8 +1033,8 @@ static void _call_f_setVerticalHeaderItem_2578 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QStandardItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QStandardItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setVerticalHeaderItem (arg1, arg2); } @@ -1054,7 +1054,7 @@ static void _call_f_setVerticalHeaderLabels_2437 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->setVerticalHeaderLabels (arg1); } @@ -1078,9 +1078,9 @@ static void _call_f_sibling_c3713 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel *)cls)->sibling (arg1, arg2, arg3)); } @@ -1101,8 +1101,8 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel *)cls)->sort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1152,7 +1152,7 @@ static void _call_f_takeColumn_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QStandardItemModel *)cls)->takeColumn (arg1)); } @@ -1171,7 +1171,7 @@ static void _call_f_takeHorizontalHeaderItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QStandardItem *)((QStandardItemModel *)cls)->takeHorizontalHeaderItem (arg1)); } @@ -1192,8 +1192,8 @@ static void _call_f_takeItem_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QStandardItem *)((QStandardItemModel *)cls)->takeItem (arg1, arg2)); } @@ -1212,7 +1212,7 @@ static void _call_f_takeRow_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QStandardItemModel *)cls)->takeRow (arg1)); } @@ -1231,7 +1231,7 @@ static void _call_f_takeVerticalHeaderItem_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QStandardItem *)((QStandardItemModel *)cls)->takeVerticalHeaderItem (arg1)); } @@ -1250,7 +1250,7 @@ static void _call_f_verticalHeaderItem_c767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QStandardItem *)((QStandardItemModel *)cls)->verticalHeaderItem (arg1)); } @@ -1273,9 +1273,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStandardItemModel::tr (arg1, arg2, arg3)); } @@ -1298,9 +1298,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStandardItemModel::trUtf8 (arg1, arg2, arg3)); } @@ -2243,7 +2243,7 @@ static void _call_ctor_QStandardItemModel_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStandardItemModel_Adaptor (arg1)); } @@ -2265,9 +2265,9 @@ static void _call_ctor_QStandardItemModel_Adaptor_2620 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStandardItemModel_Adaptor (arg1, arg2, arg3)); } @@ -2289,9 +2289,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -2314,9 +2314,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -2343,11 +2343,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -2373,11 +2373,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -2399,9 +2399,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -2424,9 +2424,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -2543,8 +2543,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_changePersistentIndex_4682 (arg1, arg2); } @@ -2565,8 +2565,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -2636,9 +2636,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -2660,9 +2660,9 @@ static void _call_fp_createIndex_c2657 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quintptr arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quintptr arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_createIndex_c2657 (arg1, arg2, arg3)); } @@ -2734,9 +2734,9 @@ static void _call_emitter_dataChanged_7048 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); ((QStandardItemModel_Adaptor *)cls)->emitter_QStandardItemModel_dataChanged_7048 (arg1, arg2, arg3); } @@ -2760,10 +2760,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -2781,7 +2781,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStandardItemModel_Adaptor *)cls)->emitter_QStandardItemModel_destroyed_1302 (arg1); } @@ -2860,8 +2860,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_encodeData_c4599 (arg1, arg2); } @@ -3137,9 +3137,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QStandardItemModel_Adaptor *)cls)->emitter_QStandardItemModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -3244,7 +3244,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_isSignalConnected_c2394 (arg1)); } @@ -3262,7 +3262,7 @@ static void _call_emitter_itemChanged_1919 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStandardItem *arg1 = args.read (heap); + QStandardItem *arg1 = gsi::arg_reader() (args, heap); ((QStandardItemModel_Adaptor *)cls)->emitter_QStandardItemModel_itemChanged_1919 (arg1); } @@ -3305,8 +3305,8 @@ static void _call_emitter_layoutAboutToBeChanged_7947 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QStandardItemModel_Adaptor *)cls)->emitter_QStandardItemModel_layoutAboutToBeChanged_7947 (arg1, arg2); } @@ -3326,8 +3326,8 @@ static void _call_emitter_layoutChanged_7947 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QStandardItemModel_Adaptor *)cls)->emitter_QStandardItemModel_layoutChanged_7947 (arg1, arg2); } @@ -3529,7 +3529,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStandardItemModel_Adaptor *)cls)->fp_QStandardItemModel_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQStaticText.cc b/src/gsiqt/qt5/QtGui/gsiDeclQStaticText.cc index cd476e7ab..386d2acac 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQStaticText.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQStaticText.cc @@ -69,7 +69,7 @@ static void _call_ctor_QStaticText_2025 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStaticText (arg1)); } @@ -88,7 +88,7 @@ static void _call_ctor_QStaticText_2431 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStaticText &arg1 = args.read (heap); + const QStaticText &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStaticText (arg1)); } @@ -107,7 +107,7 @@ static void _call_f_operator_excl__eq__c2431 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStaticText &arg1 = args.read (heap); + const QStaticText &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStaticText *)cls)->operator!= (arg1)); } @@ -126,7 +126,7 @@ static void _call_f_operator_eq__2431 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStaticText &arg1 = args.read (heap); + const QStaticText &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStaticText &)((QStaticText *)cls)->operator= (arg1)); } @@ -145,7 +145,7 @@ static void _call_f_operator_eq__eq__c2431 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStaticText &arg1 = args.read (heap); + const QStaticText &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStaticText *)cls)->operator== (arg1)); } @@ -181,8 +181,8 @@ static void _call_f_prepare_4043 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args ? args.read (heap) : (const QTransform &)(QTransform()); - const QFont &arg2 = args ? args.read (heap) : (const QFont &)(QFont()); + const QTransform &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTransform(), heap); + const QFont &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QFont(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStaticText *)cls)->prepare (arg1, arg2); } @@ -202,7 +202,7 @@ static void _call_f_setPerformanceHint_3211 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStaticText *)cls)->setPerformanceHint (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -222,7 +222,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStaticText *)cls)->setText (arg1); } @@ -242,7 +242,7 @@ static void _call_f_setTextFormat_1787 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStaticText *)cls)->setTextFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -262,7 +262,7 @@ static void _call_f_setTextOption_2448 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextOption &arg1 = args.read (heap); + const QTextOption &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStaticText *)cls)->setTextOption (arg1); } @@ -282,7 +282,7 @@ static void _call_f_setTextWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStaticText *)cls)->setTextWidth (arg1); } @@ -317,7 +317,7 @@ static void _call_f_swap_1736 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStaticText &arg1 = args.read (heap); + QStaticText &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStaticText *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQStatusTipEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQStatusTipEvent.cc index dec989937..b4c9407fe 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQStatusTipEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQStatusTipEvent.cc @@ -102,7 +102,7 @@ static void _call_ctor_QStatusTipEvent_Adaptor_2025 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStatusTipEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQStyleHints.cc b/src/gsiqt/qt5/QtGui/gsiDeclQStyleHints.cc index 468eaddce..1f49a2359 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQStyleHints.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQStyleHints.cc @@ -189,7 +189,7 @@ static void _call_f_setCursorFlashTime_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleHints *)cls)->setCursorFlashTime (arg1); } @@ -224,7 +224,7 @@ static void _call_f_setKeyboardInputInterval_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleHints *)cls)->setKeyboardInputInterval (arg1); } @@ -244,7 +244,7 @@ static void _call_f_setMouseDoubleClickInterval_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleHints *)cls)->setMouseDoubleClickInterval (arg1); } @@ -264,7 +264,7 @@ static void _call_f_setStartDragDistance_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleHints *)cls)->setStartDragDistance (arg1); } @@ -284,7 +284,7 @@ static void _call_f_setStartDragTime_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleHints *)cls)->setStartDragTime (arg1); } @@ -413,9 +413,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStyleHints::tr (arg1, arg2, arg3)); } @@ -438,9 +438,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStyleHints::trUtf8 (arg1, arg2, arg3)); } @@ -693,7 +693,7 @@ static void _call_emitter_cursorFlashTimeChanged_767 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QStyleHints_Adaptor *)cls)->emitter_QStyleHints_cursorFlashTimeChanged_767 (arg1); } @@ -735,7 +735,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStyleHints_Adaptor *)cls)->emitter_QStyleHints_destroyed_1302 (arg1); } @@ -826,7 +826,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyleHints_Adaptor *)cls)->fp_QStyleHints_isSignalConnected_c2394 (arg1)); } @@ -844,7 +844,7 @@ static void _call_emitter_keyboardInputIntervalChanged_767 (const qt_gsi::Generi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QStyleHints_Adaptor *)cls)->emitter_QStyleHints_keyboardInputIntervalChanged_767 (arg1); } @@ -862,7 +862,7 @@ static void _call_emitter_mouseDoubleClickIntervalChanged_767 (const qt_gsi::Gen { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QStyleHints_Adaptor *)cls)->emitter_QStyleHints_mouseDoubleClickIntervalChanged_767 (arg1); } @@ -880,7 +880,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStyleHints_Adaptor *)cls)->fp_QStyleHints_receivers_c1731 (arg1)); } @@ -926,7 +926,7 @@ static void _call_emitter_startDragDistanceChanged_767 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QStyleHints_Adaptor *)cls)->emitter_QStyleHints_startDragDistanceChanged_767 (arg1); } @@ -944,7 +944,7 @@ static void _call_emitter_startDragTimeChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QStyleHints_Adaptor *)cls)->emitter_QStyleHints_startDragTimeChanged_767 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQSurfaceFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQSurfaceFormat.cc index 30f621694..1aebb7b94 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQSurfaceFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQSurfaceFormat.cc @@ -65,7 +65,7 @@ static void _call_ctor_QSurfaceFormat_3909 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write (new QSurfaceFormat (arg1)); } @@ -84,7 +84,7 @@ static void _call_ctor_QSurfaceFormat_2724 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSurfaceFormat &arg1 = args.read (heap); + const QSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSurfaceFormat (arg1)); } @@ -208,7 +208,7 @@ static void _call_f_operator_eq__2724 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSurfaceFormat &arg1 = args.read (heap); + const QSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSurfaceFormat &)((QSurfaceFormat *)cls)->operator= (arg1)); } @@ -302,7 +302,7 @@ static void _call_f_setAlphaBufferSize_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setAlphaBufferSize (arg1); } @@ -322,7 +322,7 @@ static void _call_f_setBlueBufferSize_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setBlueBufferSize (arg1); } @@ -342,7 +342,7 @@ static void _call_f_setDepthBufferSize_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setDepthBufferSize (arg1); } @@ -362,7 +362,7 @@ static void _call_f_setGreenBufferSize_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setGreenBufferSize (arg1); } @@ -382,7 +382,7 @@ static void _call_f_setMajorVersion_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setMajorVersion (arg1); } @@ -402,7 +402,7 @@ static void _call_f_setMinorVersion_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setMinorVersion (arg1); } @@ -422,7 +422,7 @@ static void _call_f_setOption_3909 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setOption (arg1); } @@ -444,8 +444,8 @@ static void _call_f_setOption_3969 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -465,7 +465,7 @@ static void _call_f_setOptions_3909 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setOptions (arg1); } @@ -485,7 +485,7 @@ static void _call_f_setProfile_3974 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setProfile (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -505,7 +505,7 @@ static void _call_f_setRedBufferSize_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setRedBufferSize (arg1); } @@ -525,7 +525,7 @@ static void _call_f_setRenderableType_3393 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setRenderableType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -545,7 +545,7 @@ static void _call_f_setSamples_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setSamples (arg1); } @@ -565,7 +565,7 @@ static void _call_f_setStencilBufferSize_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setStencilBufferSize (arg1); } @@ -585,7 +585,7 @@ static void _call_f_setStereo_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setStereo (arg1); } @@ -605,7 +605,7 @@ static void _call_f_setSwapBehavior_3190 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setSwapBehavior (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -625,7 +625,7 @@ static void _call_f_setSwapInterval_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setSwapInterval (arg1); } @@ -647,8 +647,8 @@ static void _call_f_setVersion_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSurfaceFormat *)cls)->setVersion (arg1, arg2); } @@ -728,7 +728,7 @@ static void _call_f_testOption_c3909 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QSurfaceFormat *)cls)->testOption (arg1)); } @@ -747,7 +747,7 @@ static void _call_f_testOption_c3213 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QSurfaceFormat *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -796,7 +796,7 @@ static void _call_f_setDefaultFormat_2724 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSurfaceFormat &arg1 = args.read (heap); + const QSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSurfaceFormat::setDefaultFormat (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQSyntaxHighlighter.cc b/src/gsiqt/qt5/QtGui/gsiDeclQSyntaxHighlighter.cc index 8dd7fe228..843f7b89a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQSyntaxHighlighter.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQSyntaxHighlighter.cc @@ -106,7 +106,7 @@ static void _call_f_rehighlightBlock_2306 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter *)cls)->rehighlightBlock (arg1); } @@ -126,7 +126,7 @@ static void _call_f_setDocument_1955 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter *)cls)->setDocument (arg1); } @@ -150,9 +150,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSyntaxHighlighter::tr (arg1, arg2, arg3)); } @@ -175,9 +175,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSyntaxHighlighter::trUtf8 (arg1, arg2, arg3)); } @@ -433,7 +433,7 @@ static void _call_ctor_QSyntaxHighlighter_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QSyntaxHighlighter_Adaptor (arg1)); } @@ -451,7 +451,7 @@ static void _call_ctor_QSyntaxHighlighter_Adaptor_1955 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QSyntaxHighlighter_Adaptor (arg1)); } @@ -559,7 +559,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSyntaxHighlighter_Adaptor *)cls)->emitter_QSyntaxHighlighter_destroyed_1302 (arg1); } @@ -650,7 +650,7 @@ static void _call_fp_format_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCharFormat)((QSyntaxHighlighter_Adaptor *)cls)->fp_QSyntaxHighlighter_format_c767 (arg1)); } @@ -692,7 +692,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSyntaxHighlighter_Adaptor *)cls)->fp_QSyntaxHighlighter_isSignalConnected_c2394 (arg1)); } @@ -724,7 +724,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSyntaxHighlighter_Adaptor *)cls)->fp_QSyntaxHighlighter_receivers_c1731 (arg1)); } @@ -770,7 +770,7 @@ static void _call_fp_setCurrentBlockState_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->fp_QSyntaxHighlighter_setCurrentBlockState_767 (arg1); } @@ -789,7 +789,7 @@ static void _call_fp_setCurrentBlockUserData_2408 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextBlockUserData *arg1 = args.read (heap); + QTextBlockUserData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->fp_QSyntaxHighlighter_setCurrentBlockUserData_2408 (arg1); } @@ -812,9 +812,9 @@ static void _call_fp_setFormat_4132 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextCharFormat &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextCharFormat &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->fp_QSyntaxHighlighter_setFormat_4132 (arg1, arg2, arg3); } @@ -837,9 +837,9 @@ static void _call_fp_setFormat_3223 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QColor &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QColor &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->fp_QSyntaxHighlighter_setFormat_3223 (arg1, arg2, arg3); } @@ -862,9 +862,9 @@ static void _call_fp_setFormat_3119 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QFont &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QFont &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSyntaxHighlighter_Adaptor *)cls)->fp_QSyntaxHighlighter_setFormat_3119 (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock.cc index 93be38a87..9b9358c51 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock.cc @@ -71,7 +71,7 @@ static void _call_ctor_QTextBlock_2306 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextBlock (arg1)); } @@ -196,7 +196,7 @@ static void _call_f_contains_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlock *)cls)->contains (arg1)); } @@ -365,7 +365,7 @@ static void _call_f_operator_excl__eq__c2306 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlock *)cls)->operator!= (arg1)); } @@ -384,7 +384,7 @@ static void _call_f_operator_lt__c2306 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlock *)cls)->operator< (arg1)); } @@ -403,7 +403,7 @@ static void _call_f_operator_eq__2306 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextBlock &)((QTextBlock *)cls)->operator= (arg1)); } @@ -422,7 +422,7 @@ static void _call_f_operator_eq__eq__c2306 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlock *)cls)->operator== (arg1)); } @@ -486,7 +486,7 @@ static void _call_f_setLineCount_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlock *)cls)->setLineCount (arg1); } @@ -506,7 +506,7 @@ static void _call_f_setRevision_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlock *)cls)->setRevision (arg1); } @@ -526,7 +526,7 @@ static void _call_f_setUserData_2408 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextBlockUserData *arg1 = args.read (heap); + QTextBlockUserData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlock *)cls)->setUserData (arg1); } @@ -546,7 +546,7 @@ static void _call_f_setUserState_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlock *)cls)->setUserState (arg1); } @@ -566,7 +566,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlock *)cls)->setVisible (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockFormat.cc index 1b7456685..1ff89653a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockFormat.cc @@ -153,8 +153,8 @@ static void _call_f_lineHeight_c2034 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((double)((QTextBlockFormat *)cls)->lineHeight (arg1, arg2)); } @@ -248,7 +248,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setAlignment (arg1); } @@ -268,7 +268,7 @@ static void _call_f_setBottomMargin_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setBottomMargin (arg1); } @@ -288,7 +288,7 @@ static void _call_f_setIndent_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setIndent (arg1); } @@ -308,7 +308,7 @@ static void _call_f_setLeftMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setLeftMargin (arg1); } @@ -330,8 +330,8 @@ static void _call_f_setLineHeight_1730 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - int arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setLineHeight (arg1, arg2); } @@ -351,7 +351,7 @@ static void _call_f_setNonBreakableLines_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setNonBreakableLines (arg1); } @@ -371,7 +371,7 @@ static void _call_f_setPageBreakPolicy_3611 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setPageBreakPolicy (arg1); } @@ -391,7 +391,7 @@ static void _call_f_setRightMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setRightMargin (arg1); } @@ -411,7 +411,7 @@ static void _call_f_setTabPositions_3458 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setTabPositions (arg1); } @@ -431,7 +431,7 @@ static void _call_f_setTextIndent_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setTextIndent (arg1); } @@ -451,7 +451,7 @@ static void _call_f_setTopMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockFormat *)cls)->setTopMargin (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockGroup.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockGroup.cc index fd0113f64..834d05b7e 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockGroup.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlockGroup.cc @@ -76,9 +76,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextBlockGroup::tr (arg1, arg2, arg3)); } @@ -101,9 +101,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextBlockGroup::trUtf8 (arg1, arg2, arg3)); } @@ -468,7 +468,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextBlockGroup_Adaptor *)cls)->emitter_QTextBlockGroup_destroyed_1302 (arg1); } @@ -559,7 +559,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlockGroup_Adaptor *)cls)->fp_QTextBlockGroup_isSignalConnected_c2394 (arg1)); } @@ -577,7 +577,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextBlockGroup_Adaptor *)cls)->fp_QTextBlockGroup_receivers_c1731 (arg1)); } @@ -623,7 +623,7 @@ static void _call_fp_setFormat_2432 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBlockGroup_Adaptor *)cls)->fp_QTextBlockGroup_setFormat_2432 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock_Iterator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock_Iterator.cc index 84f1eceef..faeabb629 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock_Iterator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextBlock_Iterator.cc @@ -66,7 +66,7 @@ static void _call_ctor_QTextBlock_Iterator_3296 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock::iterator &arg1 = args.read (heap); + const QTextBlock::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextBlock::iterator (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_excl__eq__c3296 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock::iterator &arg1 = args.read (heap); + const QTextBlock::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlock::iterator *)cls)->operator!= (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_operator_plus__plus__767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextBlock::iterator)((QTextBlock::iterator *)cls)->operator++ (arg1)); } @@ -183,7 +183,7 @@ static void _call_f_operator_minus__minus__767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextBlock::iterator)((QTextBlock::iterator *)cls)->operator-- (arg1)); } @@ -202,7 +202,7 @@ static void _call_f_operator_eq__eq__c3296 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock::iterator &arg1 = args.read (heap); + const QTextBlock::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBlock::iterator *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextCharFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextCharFormat.cc index 6880a0c79..acb4c2834 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextCharFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextCharFormat.cc @@ -422,7 +422,7 @@ static void _call_f_setAnchor_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setAnchor (arg1); } @@ -442,7 +442,7 @@ static void _call_f_setAnchorHref_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setAnchorHref (arg1); } @@ -462,7 +462,7 @@ static void _call_f_setAnchorName_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setAnchorName (arg1); } @@ -482,7 +482,7 @@ static void _call_f_setAnchorNames_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setAnchorNames (arg1); } @@ -504,8 +504,8 @@ static void _call_f_setFont_7168 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFont (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -525,7 +525,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFont (arg1); } @@ -545,7 +545,7 @@ static void _call_f_setFontCapitalization_2508 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontCapitalization (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -565,7 +565,7 @@ static void _call_f_setFontFamily_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontFamily (arg1); } @@ -585,7 +585,7 @@ static void _call_f_setFontFixedPitch_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontFixedPitch (arg1); } @@ -605,7 +605,7 @@ static void _call_f_setFontHintingPreference_2784 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontHintingPreference (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -625,7 +625,7 @@ static void _call_f_setFontItalic_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontItalic (arg1); } @@ -645,7 +645,7 @@ static void _call_f_setFontKerning_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontKerning (arg1); } @@ -665,7 +665,7 @@ static void _call_f_setFontLetterSpacing_1071 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontLetterSpacing (arg1); } @@ -685,7 +685,7 @@ static void _call_f_setFontLetterSpacingType_2167 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontLetterSpacingType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -705,7 +705,7 @@ static void _call_f_setFontOverline_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontOverline (arg1); } @@ -725,7 +725,7 @@ static void _call_f_setFontPointSize_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontPointSize (arg1); } @@ -745,7 +745,7 @@ static void _call_f_setFontStretch_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontStretch (arg1); } @@ -765,7 +765,7 @@ static void _call_f_setFontStrikeOut_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontStrikeOut (arg1); } @@ -787,8 +787,8 @@ static void _call_f_setFontStyleHint_4284 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QFont::PreferDefault)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QFont::PreferDefault), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontStyleHint (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -808,7 +808,7 @@ static void _call_f_setFontStyleStrategy_2420 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontStyleStrategy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -828,7 +828,7 @@ static void _call_f_setFontUnderline_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontUnderline (arg1); } @@ -848,7 +848,7 @@ static void _call_f_setFontWeight_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontWeight (arg1); } @@ -868,7 +868,7 @@ static void _call_f_setFontWordSpacing_1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setFontWordSpacing (arg1); } @@ -888,7 +888,7 @@ static void _call_f_setTableCellColumnSpan_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setTableCellColumnSpan (arg1); } @@ -908,7 +908,7 @@ static void _call_f_setTableCellRowSpan_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setTableCellRowSpan (arg1); } @@ -928,7 +928,7 @@ static void _call_f_setTextOutline_1685 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setTextOutline (arg1); } @@ -948,7 +948,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setToolTip (arg1); } @@ -968,7 +968,7 @@ static void _call_f_setUnderlineColor_1905 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setUnderlineColor (arg1); } @@ -988,7 +988,7 @@ static void _call_f_setUnderlineStyle_3516 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setUnderlineStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1008,7 +1008,7 @@ static void _call_f_setVerticalAlignment_3806 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCharFormat *)cls)->setVerticalAlignment (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextCursor.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextCursor.cc index 5e10235e3..6ed5d57bf 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextCursor.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextCursor.cc @@ -78,7 +78,7 @@ static void _call_ctor_QTextCursor_1955 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextCursor (arg1)); } @@ -97,7 +97,7 @@ static void _call_ctor_QTextCursor_1615 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextFrame *arg1 = args.read (heap); + QTextFrame *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextCursor (arg1)); } @@ -116,7 +116,7 @@ static void _call_ctor_QTextCursor_2306 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextCursor (arg1)); } @@ -135,7 +135,7 @@ static void _call_ctor_QTextCursor_2453 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextCursor (arg1)); } @@ -351,7 +351,7 @@ static void _call_f_createList_2844 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextListFormat &arg1 = args.read (heap); + const QTextListFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextList *)((QTextCursor *)cls)->createList (arg1)); } @@ -370,7 +370,7 @@ static void _call_f_createList_2612 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QTextList *)((QTextCursor *)cls)->createList (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -543,7 +543,7 @@ static void _call_f_insertBlock_2923 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlockFormat &arg1 = args.read (heap); + const QTextBlockFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertBlock (arg1); } @@ -565,8 +565,8 @@ static void _call_f_insertBlock_5629 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlockFormat &arg1 = args.read (heap); - const QTextCharFormat &arg2 = args.read (heap); + const QTextBlockFormat &arg1 = gsi::arg_reader() (args, heap); + const QTextCharFormat &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertBlock (arg1, arg2); } @@ -586,7 +586,7 @@ static void _call_f_insertFragment_3466 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextDocumentFragment &arg1 = args.read (heap); + const QTextDocumentFragment &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertFragment (arg1); } @@ -606,7 +606,7 @@ static void _call_f_insertFrame_2923 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFrameFormat &arg1 = args.read (heap); + const QTextFrameFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextFrame *)((QTextCursor *)cls)->insertFrame (arg1)); } @@ -625,7 +625,7 @@ static void _call_f_insertHtml_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertHtml (arg1); } @@ -647,8 +647,8 @@ static void _call_f_insertImage_5822 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextImageFormat &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QTextImageFormat &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertImage (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -668,7 +668,7 @@ static void _call_f_insertImage_2915 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextImageFormat &arg1 = args.read (heap); + const QTextImageFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertImage (arg1); } @@ -688,7 +688,7 @@ static void _call_f_insertImage_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertImage (arg1); } @@ -710,8 +710,8 @@ static void _call_f_insertImage_3794 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QImage &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertImage (arg1, arg2); } @@ -731,7 +731,7 @@ static void _call_f_insertList_2844 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextListFormat &arg1 = args.read (heap); + const QTextListFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextList *)((QTextCursor *)cls)->insertList (arg1)); } @@ -750,7 +750,7 @@ static void _call_f_insertList_2612 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QTextList *)((QTextCursor *)cls)->insertList (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -773,9 +773,9 @@ static void _call_f_insertTable_4238 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextTableFormat &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextTableFormat &arg3 = gsi::arg_reader() (args, heap); ret.write ((QTextTable *)((QTextCursor *)cls)->insertTable (arg1, arg2, arg3)); } @@ -796,8 +796,8 @@ static void _call_f_insertTable_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QTextTable *)((QTextCursor *)cls)->insertTable (arg1, arg2)); } @@ -816,7 +816,7 @@ static void _call_f_insertText_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertText (arg1); } @@ -838,8 +838,8 @@ static void _call_f_insertText_4731 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QTextCharFormat &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QTextCharFormat &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->insertText (arg1, arg2); } @@ -859,7 +859,7 @@ static void _call_f_isCopyOf_c2453 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCursor *)cls)->isCopyOf (arg1)); } @@ -924,7 +924,7 @@ static void _call_f_mergeBlockCharFormat_2814 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->mergeBlockCharFormat (arg1); } @@ -944,7 +944,7 @@ static void _call_f_mergeBlockFormat_2923 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlockFormat &arg1 = args.read (heap); + const QTextBlockFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->mergeBlockFormat (arg1); } @@ -964,7 +964,7 @@ static void _call_f_mergeCharFormat_2814 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->mergeCharFormat (arg1); } @@ -988,9 +988,9 @@ static void _call_f_movePosition_6083 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor)); - int arg3 = args ? args.read (heap) : (int)(1); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor), heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write ((bool)((QTextCursor *)cls)->movePosition (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -1009,7 +1009,7 @@ static void _call_f_operator_excl__eq__c2453 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCursor *)cls)->operator!= (arg1)); } @@ -1028,7 +1028,7 @@ static void _call_f_operator_lt__c2453 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCursor *)cls)->operator< (arg1)); } @@ -1047,7 +1047,7 @@ static void _call_f_operator_lt__eq__c2453 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCursor *)cls)->operator<= (arg1)); } @@ -1066,7 +1066,7 @@ static void _call_f_operator_eq__2453 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCursor &)((QTextCursor *)cls)->operator= (arg1)); } @@ -1085,7 +1085,7 @@ static void _call_f_operator_eq__eq__c2453 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCursor *)cls)->operator== (arg1)); } @@ -1104,7 +1104,7 @@ static void _call_f_operator_gt__c2453 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCursor *)cls)->operator> (arg1)); } @@ -1123,7 +1123,7 @@ static void _call_f_operator_gt__eq__c2453 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextCursor *)cls)->operator>= (arg1)); } @@ -1188,7 +1188,7 @@ static void _call_f_select_3044 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->select (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1214,10 +1214,10 @@ static void _call_f_selectedTableCells_c3488 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->selectedTableCells (arg1, arg2, arg3, arg4); } @@ -1297,7 +1297,7 @@ static void _call_f_setBlockCharFormat_2814 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->setBlockCharFormat (arg1); } @@ -1317,7 +1317,7 @@ static void _call_f_setBlockFormat_2923 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlockFormat &arg1 = args.read (heap); + const QTextBlockFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->setBlockFormat (arg1); } @@ -1337,7 +1337,7 @@ static void _call_f_setCharFormat_2814 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->setCharFormat (arg1); } @@ -1357,7 +1357,7 @@ static void _call_f_setKeepPositionOnInsert_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->setKeepPositionOnInsert (arg1); } @@ -1379,8 +1379,8 @@ static void _call_f_setPosition_3147 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->setPosition (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1400,7 +1400,7 @@ static void _call_f_setVerticalMovementX_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->setVerticalMovementX (arg1); } @@ -1420,7 +1420,7 @@ static void _call_f_setVisualNavigation_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->setVisualNavigation (arg1); } @@ -1440,7 +1440,7 @@ static void _call_f_swap_1758 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextCursor &arg1 = args.read (heap); + QTextCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextCursor *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextDocument.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextDocument.cc index 4dc5d40d5..6ec7a6a27 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextDocument.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextDocument.cc @@ -88,9 +88,9 @@ static void _call_f_addResource_4371 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->addResource (arg1, arg2, arg3); } @@ -216,7 +216,7 @@ static void _call_f_characterAt_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QTextDocument *)cls)->characterAt (arg1))); } @@ -266,7 +266,7 @@ static void _call_f_clearUndoRedoStacks_2502 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextDocument::UndoAndRedoStacks)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextDocument::UndoAndRedoStacks), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->clearUndoRedoStacks (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -286,7 +286,7 @@ static void _call_f_clone_c1302 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QTextDocument *)((QTextDocument *)cls)->clone (arg1)); } @@ -397,8 +397,8 @@ static void _call_f_drawContents_3180 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args ? args.read (heap) : (const QRectF &)(QRectF()); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->drawContents (arg1, arg2); } @@ -437,9 +437,9 @@ static void _call_f_find_c5920 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QTextCursor)((QTextDocument *)cls)->find (arg1, arg2, arg3)); } @@ -462,9 +462,9 @@ static void _call_f_find_c7606 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QTextCursor &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QTextCursor &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QTextCursor)((QTextDocument *)cls)->find (arg1, arg2, arg3)); } @@ -487,9 +487,9 @@ static void _call_f_find_c5876 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QTextCursor)((QTextDocument *)cls)->find (arg1, arg2, arg3)); } @@ -512,9 +512,9 @@ static void _call_f_find_c7562 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); - const QTextCursor &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); + const QTextCursor &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QTextCursor)((QTextDocument *)cls)->find (arg1, arg2, arg3)); } @@ -537,9 +537,9 @@ static void _call_f_find_c7083 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegularExpression &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + const QRegularExpression &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QTextCursor)((QTextDocument *)cls)->find (arg1, arg2, arg3)); } @@ -562,9 +562,9 @@ static void _call_f_find_c8769 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegularExpression &arg1 = args.read (heap); - const QTextCursor &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + const QRegularExpression &arg1 = gsi::arg_reader() (args, heap); + const QTextCursor &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QTextCursor)((QTextDocument *)cls)->find (arg1, arg2, arg3)); } @@ -583,7 +583,7 @@ static void _call_f_findBlock_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextBlock)((QTextDocument *)cls)->findBlock (arg1)); } @@ -602,7 +602,7 @@ static void _call_f_findBlockByLineNumber_c767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextBlock)((QTextDocument *)cls)->findBlockByLineNumber (arg1)); } @@ -621,7 +621,7 @@ static void _call_f_findBlockByNumber_c767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextBlock)((QTextDocument *)cls)->findBlockByNumber (arg1)); } @@ -655,7 +655,7 @@ static void _call_f_frameAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextFrame *)((QTextDocument *)cls)->frameAt (arg1)); } @@ -811,8 +811,8 @@ static void _call_f_markContentsDirty_1426 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->markContentsDirty (arg1, arg2); } @@ -847,7 +847,7 @@ static void _call_f_metaInformation_c3434 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QTextDocument *)cls)->metaInformation (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -866,7 +866,7 @@ static void _call_f_object_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextObject *)((QTextDocument *)cls)->object (arg1)); } @@ -885,7 +885,7 @@ static void _call_f_objectForFormat_c2432 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextObject *)((QTextDocument *)cls)->objectForFormat (arg1)); } @@ -934,7 +934,7 @@ static void _call_f_print_c2284 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPagedPaintDevice *arg1 = args.read (heap); + QPagedPaintDevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->print (arg1); } @@ -954,7 +954,7 @@ static void _call_f_redo_1762 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextCursor *arg1 = args.read (heap); + QTextCursor *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->redo (arg1); } @@ -992,8 +992,8 @@ static void _call_f_resource_c2360 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextDocument *)cls)->resource (arg1, arg2)); } @@ -1042,7 +1042,7 @@ static void _call_f_setBaseUrl_1701 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setBaseUrl (arg1); } @@ -1062,7 +1062,7 @@ static void _call_f_setDefaultCursorMoveStyle_2323 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setDefaultCursorMoveStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1082,7 +1082,7 @@ static void _call_f_setDefaultFont_1801 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setDefaultFont (arg1); } @@ -1102,7 +1102,7 @@ static void _call_f_setDefaultStyleSheet_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setDefaultStyleSheet (arg1); } @@ -1122,7 +1122,7 @@ static void _call_f_setDefaultTextOption_2448 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextOption &arg1 = args.read (heap); + const QTextOption &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setDefaultTextOption (arg1); } @@ -1142,7 +1142,7 @@ static void _call_f_setDocumentLayout_3413 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractTextDocumentLayout *arg1 = args.read (heap); + QAbstractTextDocumentLayout *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setDocumentLayout (arg1); } @@ -1162,7 +1162,7 @@ static void _call_f_setDocumentMargin_1071 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setDocumentMargin (arg1); } @@ -1182,7 +1182,7 @@ static void _call_f_setHtml_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setHtml (arg1); } @@ -1202,7 +1202,7 @@ static void _call_f_setIndentWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setIndentWidth (arg1); } @@ -1222,7 +1222,7 @@ static void _call_f_setMaximumBlockCount_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setMaximumBlockCount (arg1); } @@ -1244,8 +1244,8 @@ static void _call_f_setMetaInformation_5351 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setMetaInformation (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -1265,7 +1265,7 @@ static void _call_f_setModified_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setModified (arg1); } @@ -1285,7 +1285,7 @@ static void _call_f_setPageSize_1875 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setPageSize (arg1); } @@ -1305,7 +1305,7 @@ static void _call_f_setPlainText_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setPlainText (arg1); } @@ -1325,7 +1325,7 @@ static void _call_f_setTextWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setTextWidth (arg1); } @@ -1345,7 +1345,7 @@ static void _call_f_setUndoRedoEnabled_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setUndoRedoEnabled (arg1); } @@ -1365,7 +1365,7 @@ static void _call_f_setUseDesignMetrics_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->setUseDesignMetrics (arg1); } @@ -1415,7 +1415,7 @@ static void _call_f_toHtml_c2309 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QByteArray &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write ((QString)((QTextDocument *)cls)->toHtml (arg1)); } @@ -1449,7 +1449,7 @@ static void _call_f_undo_1762 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextCursor *arg1 = args.read (heap); + QTextCursor *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocument *)cls)->undo (arg1); } @@ -1504,9 +1504,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextDocument::tr (arg1, arg2, arg3)); } @@ -1529,9 +1529,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextDocument::trUtf8 (arg1, arg2, arg3)); } @@ -1924,7 +1924,7 @@ static void _call_ctor_QTextDocument_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTextDocument_Adaptor (arg1)); } @@ -1944,8 +1944,8 @@ static void _call_ctor_QTextDocument_Adaptor_3219 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTextDocument_Adaptor (arg1, arg2)); } @@ -1963,7 +1963,7 @@ static void _call_emitter_baseUrlChanged_1701 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ((QTextDocument_Adaptor *)cls)->emitter_QTextDocument_baseUrlChanged_1701 (arg1); } @@ -1981,7 +1981,7 @@ static void _call_emitter_blockCountChanged_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QTextDocument_Adaptor *)cls)->emitter_QTextDocument_blockCountChanged_767 (arg1); } @@ -2047,9 +2047,9 @@ static void _call_emitter_contentsChange_2085 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QTextDocument_Adaptor *)cls)->emitter_QTextDocument_contentsChange_2085 (arg1, arg2, arg3); } @@ -2104,7 +2104,7 @@ static void _call_emitter_cursorPositionChanged_2453 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ((QTextDocument_Adaptor *)cls)->emitter_QTextDocument_cursorPositionChanged_2453 (arg1); } @@ -2146,7 +2146,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextDocument_Adaptor *)cls)->emitter_QTextDocument_destroyed_1302 (arg1); } @@ -2251,7 +2251,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextDocument_Adaptor *)cls)->fp_QTextDocument_isSignalConnected_c2394 (arg1)); } @@ -2295,7 +2295,7 @@ static void _call_emitter_modificationChanged_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextDocument_Adaptor *)cls)->emitter_QTextDocument_modificationChanged_864 (arg1); } @@ -2313,7 +2313,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextDocument_Adaptor *)cls)->fp_QTextDocument_receivers_c1731 (arg1)); } @@ -2331,7 +2331,7 @@ static void _call_emitter_redoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextDocument_Adaptor *)cls)->emitter_QTextDocument_redoAvailable_864 (arg1); } @@ -2401,7 +2401,7 @@ static void _call_emitter_undoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextDocument_Adaptor *)cls)->emitter_QTextDocument_undoAvailable_864 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentFragment.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentFragment.cc index b67da5880..abe0147c1 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentFragment.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentFragment.cc @@ -67,7 +67,7 @@ static void _call_ctor_QTextDocumentFragment_2650 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextDocument *arg1 = args.read (heap); + const QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextDocumentFragment (arg1)); } @@ -86,7 +86,7 @@ static void _call_ctor_QTextDocumentFragment_2453 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextDocumentFragment (arg1)); } @@ -105,7 +105,7 @@ static void _call_ctor_QTextDocumentFragment_3466 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextDocumentFragment &arg1 = args.read (heap); + const QTextDocumentFragment &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextDocumentFragment (arg1)); } @@ -139,7 +139,7 @@ static void _call_f_operator_eq__3466 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextDocumentFragment &arg1 = args.read (heap); + const QTextDocumentFragment &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextDocumentFragment &)((QTextDocumentFragment *)cls)->operator= (arg1)); } @@ -158,7 +158,7 @@ static void _call_f_toHtml_c2309 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QByteArray &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write ((QString)((QTextDocumentFragment *)cls)->toHtml (arg1)); } @@ -192,7 +192,7 @@ static void _call_f_fromHtml_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextDocumentFragment)QTextDocumentFragment::fromHtml (arg1)); } @@ -213,8 +213,8 @@ static void _call_f_fromHtml_4567 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QTextDocument *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QTextDocument *arg2 = gsi::arg_reader() (args, heap); ret.write ((QTextDocumentFragment)QTextDocumentFragment::fromHtml (arg1, arg2)); } @@ -233,7 +233,7 @@ static void _call_f_fromPlainText_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextDocumentFragment)QTextDocumentFragment::fromPlainText (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentWriter.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentWriter.cc index 5dff3682f..144ddf729 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentWriter.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextDocumentWriter.cc @@ -71,8 +71,8 @@ static void _call_ctor_QTextDocumentWriter_3648 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write (new QTextDocumentWriter (arg1, arg2)); } @@ -93,8 +93,8 @@ static void _call_ctor_QTextDocumentWriter_4226 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QTextDocumentWriter (arg1, arg2)); } @@ -173,7 +173,7 @@ static void _call_f_setCodec_1602 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextCodec *arg1 = args.read (heap); + QTextCodec *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocumentWriter *)cls)->setCodec (arg1); } @@ -193,7 +193,7 @@ static void _call_f_setDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocumentWriter *)cls)->setDevice (arg1); } @@ -213,7 +213,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocumentWriter *)cls)->setFileName (arg1); } @@ -233,7 +233,7 @@ static void _call_f_setFormat_2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextDocumentWriter *)cls)->setFormat (arg1); } @@ -253,7 +253,7 @@ static void _call_f_write_2650 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextDocument *arg1 = args.read (heap); + const QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextDocumentWriter *)cls)->write (arg1)); } @@ -272,7 +272,7 @@ static void _call_f_write_3466 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextDocumentFragment &arg1 = args.read (heap); + const QTextDocumentFragment &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextDocumentWriter *)cls)->write (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextFormat.cc index 7ceede5c5..e7126d5e1 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextFormat.cc @@ -76,7 +76,7 @@ static void _call_ctor_QTextFormat_767 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextFormat (arg1)); } @@ -95,7 +95,7 @@ static void _call_ctor_QTextFormat_2432 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextFormat (arg1)); } @@ -129,7 +129,7 @@ static void _call_f_boolProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFormat *)cls)->boolProperty (arg1)); } @@ -148,7 +148,7 @@ static void _call_f_brushProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QBrush)((QTextFormat *)cls)->brushProperty (arg1)); } @@ -199,7 +199,7 @@ static void _call_f_clearProperty_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->clearProperty (arg1); } @@ -219,7 +219,7 @@ static void _call_f_colorProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor)((QTextFormat *)cls)->colorProperty (arg1)); } @@ -238,7 +238,7 @@ static void _call_f_doubleProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QTextFormat *)cls)->doubleProperty (arg1)); } @@ -272,7 +272,7 @@ static void _call_f_hasProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFormat *)cls)->hasProperty (arg1)); } @@ -291,7 +291,7 @@ static void _call_f_intProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextFormat *)cls)->intProperty (arg1)); } @@ -460,7 +460,7 @@ static void _call_f_lengthProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextLength)((QTextFormat *)cls)->lengthProperty (arg1)); } @@ -479,7 +479,7 @@ static void _call_f_lengthVectorProperty_c767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QVector)((QTextFormat *)cls)->lengthVectorProperty (arg1)); } @@ -498,7 +498,7 @@ static void _call_f_merge_2432 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->merge (arg1); } @@ -548,7 +548,7 @@ static void _call_f_operator_excl__eq__c2432 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFormat *)cls)->operator!= (arg1)); } @@ -567,7 +567,7 @@ static void _call_f_operator_eq__2432 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextFormat &)((QTextFormat *)cls)->operator= (arg1)); } @@ -586,7 +586,7 @@ static void _call_f_operator_eq__eq__c2432 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFormat *)cls)->operator== (arg1)); } @@ -605,7 +605,7 @@ static void _call_f_penProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QPen)((QTextFormat *)cls)->penProperty (arg1)); } @@ -639,7 +639,7 @@ static void _call_f_property_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextFormat *)cls)->property (arg1)); } @@ -673,7 +673,7 @@ static void _call_f_setBackground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->setBackground (arg1); } @@ -693,7 +693,7 @@ static void _call_f_setForeground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->setForeground (arg1); } @@ -713,7 +713,7 @@ static void _call_f_setLayoutDirection_2316 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->setLayoutDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -733,7 +733,7 @@ static void _call_f_setObjectIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->setObjectIndex (arg1); } @@ -753,7 +753,7 @@ static void _call_f_setObjectType_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->setObjectType (arg1); } @@ -775,8 +775,8 @@ static void _call_f_setProperty_2778 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->setProperty (arg1, arg2); } @@ -798,8 +798,8 @@ static void _call_f_setProperty_3914 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVector &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVector &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->setProperty (arg1, arg2); } @@ -819,7 +819,7 @@ static void _call_f_stringProperty_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextFormat *)cls)->stringProperty (arg1)); } @@ -838,7 +838,7 @@ static void _call_f_swap_1737 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextFormat &arg1 = args.read (heap); + QTextFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFormat *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextFragment.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextFragment.cc index f89030a1f..5d524e804 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextFragment.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextFragment.cc @@ -67,7 +67,7 @@ static void _call_ctor_QTextFragment_2635 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFragment &arg1 = args.read (heap); + const QTextFragment &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextFragment (arg1)); } @@ -116,7 +116,7 @@ static void _call_f_contains_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFragment *)cls)->contains (arg1)); } @@ -137,8 +137,8 @@ static void _call_f_glyphRuns_c1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); - int arg2 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write > ((QList)((QTextFragment *)cls)->glyphRuns (arg1, arg2)); } @@ -187,7 +187,7 @@ static void _call_f_operator_excl__eq__c2635 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFragment &arg1 = args.read (heap); + const QTextFragment &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFragment *)cls)->operator!= (arg1)); } @@ -206,7 +206,7 @@ static void _call_f_operator_lt__c2635 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFragment &arg1 = args.read (heap); + const QTextFragment &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFragment *)cls)->operator< (arg1)); } @@ -225,7 +225,7 @@ static void _call_f_operator_eq__2635 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFragment &arg1 = args.read (heap); + const QTextFragment &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextFragment &)((QTextFragment *)cls)->operator= (arg1)); } @@ -244,7 +244,7 @@ static void _call_f_operator_eq__eq__c2635 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFragment &arg1 = args.read (heap); + const QTextFragment &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFragment *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame.cc index f3d70a52e..ce48c3b60 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame.cc @@ -178,7 +178,7 @@ static void _call_f_setFrameFormat_2923 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFrameFormat &arg1 = args.read (heap); + const QTextFrameFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame *)cls)->setFrameFormat (arg1); } @@ -202,9 +202,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextFrame::tr (arg1, arg2, arg3)); } @@ -227,9 +227,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextFrame::trUtf8 (arg1, arg2, arg3)); } @@ -421,7 +421,7 @@ static void _call_ctor_QTextFrame_Adaptor_1955 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextFrame_Adaptor (arg1)); } @@ -487,7 +487,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextFrame_Adaptor *)cls)->emitter_QTextFrame_destroyed_1302 (arg1); } @@ -578,7 +578,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFrame_Adaptor *)cls)->fp_QTextFrame_isSignalConnected_c2394 (arg1)); } @@ -596,7 +596,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextFrame_Adaptor *)cls)->fp_QTextFrame_receivers_c1731 (arg1)); } @@ -642,7 +642,7 @@ static void _call_fp_setFormat_2432 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrame_Adaptor *)cls)->fp_QTextFrame_setFormat_2432 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrameFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrameFormat.cc index 213f46c18..f4f30a998 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrameFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrameFormat.cc @@ -256,7 +256,7 @@ static void _call_f_setBorder_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setBorder (arg1); } @@ -276,7 +276,7 @@ static void _call_f_setBorderBrush_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setBorderBrush (arg1); } @@ -296,7 +296,7 @@ static void _call_f_setBorderStyle_3297 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setBorderStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -316,7 +316,7 @@ static void _call_f_setBottomMargin_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setBottomMargin (arg1); } @@ -336,7 +336,7 @@ static void _call_f_setHeight_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setHeight (arg1); } @@ -356,7 +356,7 @@ static void _call_f_setHeight_2425 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextLength &arg1 = args.read (heap); + const QTextLength &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setHeight (arg1); } @@ -376,7 +376,7 @@ static void _call_f_setLeftMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setLeftMargin (arg1); } @@ -396,7 +396,7 @@ static void _call_f_setMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setMargin (arg1); } @@ -416,7 +416,7 @@ static void _call_f_setPadding_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setPadding (arg1); } @@ -436,7 +436,7 @@ static void _call_f_setPageBreakPolicy_3611 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setPageBreakPolicy (arg1); } @@ -456,7 +456,7 @@ static void _call_f_setPosition_3015 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setPosition (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -476,7 +476,7 @@ static void _call_f_setRightMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setRightMargin (arg1); } @@ -496,7 +496,7 @@ static void _call_f_setTopMargin_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setTopMargin (arg1); } @@ -516,7 +516,7 @@ static void _call_f_setWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setWidth (arg1); } @@ -536,7 +536,7 @@ static void _call_f_setWidth_2425 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextLength &arg1 = args.read (heap); + const QTextLength &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextFrameFormat *)cls)->setWidth (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame_Iterator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame_Iterator.cc index c7420b980..e5fea1a96 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame_Iterator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextFrame_Iterator.cc @@ -67,7 +67,7 @@ static void _call_ctor_QTextFrame_Iterator_3296u1 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFrame::iterator &arg1 = args.read (heap); + const QTextFrame::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextFrame::iterator (arg1)); } @@ -131,7 +131,7 @@ static void _call_f_operator_excl__eq__c3296u1 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFrame::iterator &arg1 = args.read (heap); + const QTextFrame::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFrame::iterator *)cls)->operator!= (arg1)); } @@ -165,7 +165,7 @@ static void _call_f_operator_plus__plus__767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextFrame::iterator)((QTextFrame::iterator *)cls)->operator++ (arg1)); } @@ -199,7 +199,7 @@ static void _call_f_operator_minus__minus__767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextFrame::iterator)((QTextFrame::iterator *)cls)->operator-- (arg1)); } @@ -218,7 +218,7 @@ static void _call_f_operator_eq__3296 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFrame::iterator &arg1 = args.read (heap); + const QTextFrame::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextFrame::iterator &)((QTextFrame::iterator *)cls)->operator= (arg1)); } @@ -237,7 +237,7 @@ static void _call_f_operator_eq__eq__c3296u1 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFrame::iterator &arg1 = args.read (heap); + const QTextFrame::iterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextFrame::iterator *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextImageFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextImageFormat.cc index af11e1bef..e8f764b7b 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextImageFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextImageFormat.cc @@ -122,7 +122,7 @@ static void _call_f_setHeight_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextImageFormat *)cls)->setHeight (arg1); } @@ -142,7 +142,7 @@ static void _call_f_setName_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextImageFormat *)cls)->setName (arg1); } @@ -162,7 +162,7 @@ static void _call_f_setWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextImageFormat *)cls)->setWidth (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextInlineObject.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextInlineObject.cc index dfb07a91a..6c640c954 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextInlineObject.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextInlineObject.cc @@ -172,7 +172,7 @@ static void _call_f_setAscent_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextInlineObject *)cls)->setAscent (arg1); } @@ -192,7 +192,7 @@ static void _call_f_setDescent_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextInlineObject *)cls)->setDescent (arg1); } @@ -212,7 +212,7 @@ static void _call_f_setWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextInlineObject *)cls)->setWidth (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextLayout.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextLayout.cc index 26b1a6e98..31cf18a8a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextLayout.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextLayout.cc @@ -75,7 +75,7 @@ static void _call_ctor_QTextLayout_2025 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextLayout (arg1)); } @@ -98,9 +98,9 @@ static void _call_ctor_QTextLayout_5413 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QFont &arg2 = args.read (heap); - QPaintDevice *arg3 = args ? args.read (heap) : (QPaintDevice *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QFont &arg2 = gsi::arg_reader() (args, heap); + QPaintDevice *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTextLayout (arg1, arg2, arg3)); } @@ -119,7 +119,7 @@ static void _call_ctor_QTextLayout_2306 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextLayout (arg1)); } @@ -267,10 +267,10 @@ static void _call_f_draw_c9459 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); - const QRectF &arg4 = args ? args.read (heap) : (const QRectF &)(QRectF()); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); + const QRectF &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->draw (arg1, arg2, arg3, arg4); } @@ -294,9 +294,9 @@ static void _call_f_drawCursor_c3963 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - int arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->drawCursor (arg1, arg2, arg3); } @@ -322,10 +322,10 @@ static void _call_f_drawCursor_c4622 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->drawCursor (arg1, arg2, arg3, arg4); } @@ -378,8 +378,8 @@ static void _call_f_glyphRuns_c1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); - int arg2 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write > ((QList)((QTextLayout *)cls)->glyphRuns (arg1, arg2)); } @@ -398,7 +398,7 @@ static void _call_f_isValidCursorPosition_c767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextLayout *)cls)->isValidCursorPosition (arg1)); } @@ -417,7 +417,7 @@ static void _call_f_leftCursorPosition_c767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextLayout *)cls)->leftCursorPosition (arg1)); } @@ -436,7 +436,7 @@ static void _call_f_lineAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextLine)((QTextLayout *)cls)->lineAt (arg1)); } @@ -470,7 +470,7 @@ static void _call_f_lineForTextPosition_c767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextLine)((QTextLayout *)cls)->lineForTextPosition (arg1)); } @@ -521,8 +521,8 @@ static void _call_f_nextCursorPosition_c3378 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextLayout::SkipCharacters)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextLayout::SkipCharacters), heap); ret.write ((int)((QTextLayout *)cls)->nextCursorPosition (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -588,8 +588,8 @@ static void _call_f_previousCursorPosition_c3378 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextLayout::SkipCharacters)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextLayout::SkipCharacters), heap); ret.write ((int)((QTextLayout *)cls)->previousCursorPosition (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -608,7 +608,7 @@ static void _call_f_rightCursorPosition_c767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextLayout *)cls)->rightCursorPosition (arg1)); } @@ -627,7 +627,7 @@ static void _call_f_setAdditionalFormats_4294 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setAdditionalFormats (arg1); } @@ -647,7 +647,7 @@ static void _call_f_setCacheEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setCacheEnabled (arg1); } @@ -667,7 +667,7 @@ static void _call_f_setCursorMoveStyle_2323 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setCursorMoveStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -687,7 +687,7 @@ static void _call_f_setFlags_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setFlags (arg1); } @@ -707,7 +707,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setFont (arg1); } @@ -727,7 +727,7 @@ static void _call_f_setPosition_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setPosition (arg1); } @@ -749,8 +749,8 @@ static void _call_f_setPreeditArea_2684 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setPreeditArea (arg1, arg2); } @@ -770,7 +770,7 @@ static void _call_f_setRawFont_2099 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRawFont &arg1 = args.read (heap); + const QRawFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setRawFont (arg1); } @@ -790,7 +790,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setText (arg1); } @@ -810,7 +810,7 @@ static void _call_f_setTextOption_2448 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextOption &arg1 = args.read (heap); + const QTextOption &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLayout *)cls)->setTextOption (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextLength.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextLength.cc index 7bc0e4b80..5c1260790 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextLength.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextLength.cc @@ -67,8 +67,8 @@ static void _call_ctor_QTextLength_3045 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - double arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write (new QTextLength (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -87,7 +87,7 @@ static void _call_f_operator_excl__eq__c2425 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextLength &arg1 = args.read (heap); + const QTextLength &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextLength *)cls)->operator!= (arg1)); } @@ -106,7 +106,7 @@ static void _call_f_operator_eq__eq__c2425 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextLength &arg1 = args.read (heap); + const QTextLength &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextLength *)cls)->operator== (arg1)); } @@ -155,7 +155,7 @@ static void _call_f_value_c1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QTextLength *)cls)->value (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextLine.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextLine.cc index 461bab607..c1dcbecd2 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextLine.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextLine.cc @@ -86,8 +86,8 @@ static void _call_f_cursorToX_c2664 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextLine::Leading)); + int *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextLine::Leading), heap); ret.write ((double)((QTextLine *)cls)->cursorToX (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -108,8 +108,8 @@ static void _call_f_cursorToX_c2478 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextLine::Leading)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextLine::Leading), heap); ret.write ((double)((QTextLine *)cls)->cursorToX (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -147,9 +147,9 @@ static void _call_f_draw_c6879 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - const QTextLayout::FormatRange *arg3 = args ? args.read (heap) : (const QTextLayout::FormatRange *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + const QTextLayout::FormatRange *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLine *)cls)->draw (arg1, arg2, arg3); } @@ -171,8 +171,8 @@ static void _call_f_glyphRuns_c1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); - int arg2 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write > ((QList)((QTextLine *)cls)->glyphRuns (arg1, arg2)); } @@ -341,7 +341,7 @@ static void _call_f_setLeadingIncluded_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLine *)cls)->setLeadingIncluded (arg1); } @@ -361,7 +361,7 @@ static void _call_f_setLineWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLine *)cls)->setLineWidth (arg1); } @@ -381,7 +381,7 @@ static void _call_f_setNumColumns_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLine *)cls)->setNumColumns (arg1); } @@ -403,8 +403,8 @@ static void _call_f_setNumColumns_1730 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLine *)cls)->setNumColumns (arg1, arg2); } @@ -424,7 +424,7 @@ static void _call_f_setPosition_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextLine *)cls)->setPosition (arg1); } @@ -506,8 +506,8 @@ static void _call_f_xToCursor_c3900 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextLine::CursorBetweenCharacters)); + double arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextLine::CursorBetweenCharacters), heap); ret.write ((int)((QTextLine *)cls)->xToCursor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc index 748c0d686..e0d974e26 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextList.cc @@ -72,7 +72,7 @@ static void _call_f_add_2306 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList *)cls)->add (arg1); } @@ -137,7 +137,7 @@ static void _call_f_item_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextBlock)((QTextList *)cls)->item (arg1)); } @@ -156,7 +156,7 @@ static void _call_f_itemNumber_c2306 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextList *)cls)->itemNumber (arg1)); } @@ -175,7 +175,7 @@ static void _call_f_itemText_c2306 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextList *)cls)->itemText (arg1)); } @@ -194,7 +194,7 @@ static void _call_f_remove_2306 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList *)cls)->remove (arg1); } @@ -214,7 +214,7 @@ static void _call_f_removeItem_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList *)cls)->removeItem (arg1); } @@ -234,7 +234,7 @@ static void _call_f_setFormat_2844 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextListFormat &arg1 = args.read (heap); + const QTextListFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextList *)cls)->setFormat (arg1); } @@ -258,9 +258,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextList::tr (arg1, arg2, arg3)); } @@ -283,9 +283,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextList::trUtf8 (arg1, arg2, arg3)); } @@ -527,7 +527,7 @@ static void _call_ctor_QTextList_Adaptor_1955 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextList_Adaptor (arg1)); } @@ -679,7 +679,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextList_Adaptor *)cls)->emitter_QTextList_destroyed_1302 (arg1); } @@ -770,7 +770,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextList_Adaptor *)cls)->fp_QTextList_isSignalConnected_c2394 (arg1)); } @@ -788,7 +788,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextList_Adaptor *)cls)->fp_QTextList_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextListFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextListFormat.cc index 94b1dc6d3..c4a7b9ec0 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextListFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextListFormat.cc @@ -136,7 +136,7 @@ static void _call_f_setIndent_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextListFormat *)cls)->setIndent (arg1); } @@ -156,7 +156,7 @@ static void _call_f_setNumberPrefix_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextListFormat *)cls)->setNumberPrefix (arg1); } @@ -176,7 +176,7 @@ static void _call_f_setNumberSuffix_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextListFormat *)cls)->setNumberSuffix (arg1); } @@ -196,7 +196,7 @@ static void _call_f_setStyle_2612 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextListFormat *)cls)->setStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextObject.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextObject.cc index a8dbbd164..a239ab865 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextObject.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextObject.cc @@ -135,9 +135,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextObject::tr (arg1, arg2, arg3)); } @@ -160,9 +160,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextObject::trUtf8 (arg1, arg2, arg3)); } @@ -392,7 +392,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextObject_Adaptor *)cls)->emitter_QTextObject_destroyed_1302 (arg1); } @@ -483,7 +483,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextObject_Adaptor *)cls)->fp_QTextObject_isSignalConnected_c2394 (arg1)); } @@ -501,7 +501,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextObject_Adaptor *)cls)->fp_QTextObject_receivers_c1731 (arg1)); } @@ -547,7 +547,7 @@ static void _call_fp_setFormat_2432 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextFormat &arg1 = args.read (heap); + const QTextFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObject_Adaptor *)cls)->fp_QTextObject_setFormat_2432 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextObjectInterface.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextObjectInterface.cc index 6247525c2..ab3bc4f6f 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextObjectInterface.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextObjectInterface.cc @@ -63,11 +63,11 @@ static void _call_f_drawObject_8010 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); - QTextDocument *arg3 = args.read (heap); - int arg4 = args.read (heap); - const QTextFormat &arg5 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); + QTextDocument *arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QTextFormat &arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextObjectInterface *)cls)->drawObject (arg1, arg2, arg3, arg4, arg5); } @@ -91,9 +91,9 @@ static void _call_f_intrinsicSize_4938 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QTextFormat &arg3 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QTextFormat &arg3 = gsi::arg_reader() (args, heap); ret.write ((QSizeF)((QTextObjectInterface *)cls)->intrinsicSize (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextOption.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextOption.cc index d1ef19dfb..1d0ffd2bf 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextOption.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextOption.cc @@ -65,7 +65,7 @@ static void _call_ctor_QTextOption_2750 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write (new QTextOption (arg1)); } @@ -84,7 +84,7 @@ static void _call_ctor_QTextOption_2448 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextOption &arg1 = args.read (heap); + const QTextOption &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextOption (arg1)); } @@ -133,7 +133,7 @@ static void _call_f_operator_eq__2448 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextOption &arg1 = args.read (heap); + const QTextOption &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextOption &)((QTextOption *)cls)->operator= (arg1)); } @@ -152,7 +152,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setAlignment (arg1); } @@ -172,7 +172,7 @@ static void _call_f_setFlags_2761 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setFlags (arg1); } @@ -192,7 +192,7 @@ static void _call_f_setTabArray_2461 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setTabArray (arg1); } @@ -212,7 +212,7 @@ static void _call_f_setTabStop_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setTabStop (arg1); } @@ -232,7 +232,7 @@ static void _call_f_setTabs_3458 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setTabs (arg1); } @@ -252,7 +252,7 @@ static void _call_f_setTextDirection_2316 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setTextDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -272,7 +272,7 @@ static void _call_f_setUseDesignMetrics_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setUseDesignMetrics (arg1); } @@ -292,7 +292,7 @@ static void _call_f_setWrapMode_2486 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextOption *)cls)->setWrapMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextOption_Tab.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextOption_Tab.cc index 07c14dae5..ec4760763 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextOption_Tab.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextOption_Tab.cc @@ -69,9 +69,9 @@ static void _call_ctor_QTextOption_Tab_4138 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QChar())); + double arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QChar()), heap); ret.write (new QTextOption::Tab (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -90,7 +90,7 @@ static void _call_f_operator_excl__eq__c2843 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextOption::Tab &arg1 = args.read (heap); + const QTextOption::Tab &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextOption::Tab *)cls)->operator!= (arg1)); } @@ -109,7 +109,7 @@ static void _call_f_operator_eq__eq__c2843 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextOption::Tab &arg1 = args.read (heap); + const QTextOption::Tab &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextOption::Tab *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc index 23d948da7..42df70aa4 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextTable.cc @@ -75,7 +75,7 @@ static void _call_f_appendColumns_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->appendColumns (arg1); } @@ -95,7 +95,7 @@ static void _call_f_appendRows_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->appendRows (arg1); } @@ -117,8 +117,8 @@ static void _call_f_cellAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QTextTableCell)((QTextTable *)cls)->cellAt (arg1, arg2)); } @@ -137,7 +137,7 @@ static void _call_f_cellAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextTableCell)((QTextTable *)cls)->cellAt (arg1)); } @@ -156,7 +156,7 @@ static void _call_f_cellAt_c2453 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextTableCell)((QTextTable *)cls)->cellAt (arg1)); } @@ -207,8 +207,8 @@ static void _call_f_insertColumns_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->insertColumns (arg1, arg2); } @@ -230,8 +230,8 @@ static void _call_f_insertRows_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->insertRows (arg1, arg2); } @@ -257,10 +257,10 @@ static void _call_f_mergeCells_2744 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->mergeCells (arg1, arg2, arg3, arg4); } @@ -280,7 +280,7 @@ static void _call_f_mergeCells_2453 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->mergeCells (arg1); } @@ -302,8 +302,8 @@ static void _call_f_removeColumns_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->removeColumns (arg1, arg2); } @@ -325,8 +325,8 @@ static void _call_f_removeRows_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->removeRows (arg1, arg2); } @@ -348,8 +348,8 @@ static void _call_f_resize_1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->resize (arg1, arg2); } @@ -369,7 +369,7 @@ static void _call_f_rowEnd_c2453 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCursor)((QTextTable *)cls)->rowEnd (arg1)); } @@ -388,7 +388,7 @@ static void _call_f_rowStart_c2453 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCursor)((QTextTable *)cls)->rowStart (arg1)); } @@ -422,7 +422,7 @@ static void _call_f_setFormat_2920 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextTableFormat &arg1 = args.read (heap); + const QTextTableFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->setFormat (arg1); } @@ -448,10 +448,10 @@ static void _call_f_splitCell_2744 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTable *)cls)->splitCell (arg1, arg2, arg3, arg4); } @@ -475,9 +475,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextTable::tr (arg1, arg2, arg3)); } @@ -500,9 +500,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextTable::trUtf8 (arg1, arg2, arg3)); } @@ -700,7 +700,7 @@ static void _call_ctor_QTextTable_Adaptor_1955 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextTable_Adaptor (arg1)); } @@ -766,7 +766,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextTable_Adaptor *)cls)->emitter_QTextTable_destroyed_1302 (arg1); } @@ -857,7 +857,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextTable_Adaptor *)cls)->fp_QTextTable_isSignalConnected_c2394 (arg1)); } @@ -875,7 +875,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextTable_Adaptor *)cls)->fp_QTextTable_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCell.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCell.cc index 28b679e8d..437ef2eb2 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCell.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCell.cc @@ -67,7 +67,7 @@ static void _call_ctor_QTextTableCell_2687 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextTableCell &arg1 = args.read (heap); + const QTextTableCell &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTextTableCell (arg1)); } @@ -206,7 +206,7 @@ static void _call_f_operator_excl__eq__c2687 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextTableCell &arg1 = args.read (heap); + const QTextTableCell &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextTableCell *)cls)->operator!= (arg1)); } @@ -225,7 +225,7 @@ static void _call_f_operator_eq__2687 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextTableCell &arg1 = args.read (heap); + const QTextTableCell &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextTableCell &)((QTextTableCell *)cls)->operator= (arg1)); } @@ -244,7 +244,7 @@ static void _call_f_operator_eq__eq__c2687 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextTableCell &arg1 = args.read (heap); + const QTextTableCell &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextTableCell *)cls)->operator== (arg1)); } @@ -293,7 +293,7 @@ static void _call_f_setFormat_2814 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableCell *)cls)->setFormat (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCellFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCellFormat.cc index f8074f0d3..028cb7fe6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCellFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableCellFormat.cc @@ -137,7 +137,7 @@ static void _call_f_setBottomPadding_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableCellFormat *)cls)->setBottomPadding (arg1); } @@ -157,7 +157,7 @@ static void _call_f_setLeftPadding_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableCellFormat *)cls)->setLeftPadding (arg1); } @@ -177,7 +177,7 @@ static void _call_f_setPadding_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableCellFormat *)cls)->setPadding (arg1); } @@ -197,7 +197,7 @@ static void _call_f_setRightPadding_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableCellFormat *)cls)->setRightPadding (arg1); } @@ -217,7 +217,7 @@ static void _call_f_setTopPadding_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableCellFormat *)cls)->setTopPadding (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableFormat.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableFormat.cc index 121026041..908cd5662 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTextTableFormat.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTextTableFormat.cc @@ -197,7 +197,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableFormat *)cls)->setAlignment (arg1); } @@ -217,7 +217,7 @@ static void _call_f_setCellPadding_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableFormat *)cls)->setCellPadding (arg1); } @@ -237,7 +237,7 @@ static void _call_f_setCellSpacing_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableFormat *)cls)->setCellSpacing (arg1); } @@ -257,7 +257,7 @@ static void _call_f_setColumnWidthConstraints_3255 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableFormat *)cls)->setColumnWidthConstraints (arg1); } @@ -277,7 +277,7 @@ static void _call_f_setColumns_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableFormat *)cls)->setColumns (arg1); } @@ -297,7 +297,7 @@ static void _call_f_setHeaderRowCount_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextTableFormat *)cls)->setHeaderRowCount (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQToolBarChangeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQToolBarChangeEvent.cc index 7861b7872..1aac53457 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQToolBarChangeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQToolBarChangeEvent.cc @@ -102,7 +102,7 @@ static void _call_ctor_QToolBarChangeEvent_Adaptor_864 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write (new QToolBarChangeEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTouchDevice.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTouchDevice.cc index f074fdf01..3d73bb59c 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTouchDevice.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTouchDevice.cc @@ -110,7 +110,7 @@ static void _call_f_setCapabilities_3840 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchDevice *)cls)->setCapabilities (arg1); } @@ -130,7 +130,7 @@ static void _call_f_setMaximumTouchPoints_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchDevice *)cls)->setMaximumTouchPoints (arg1); } @@ -150,7 +150,7 @@ static void _call_f_setName_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchDevice *)cls)->setName (arg1); } @@ -170,7 +170,7 @@ static void _call_f_setType_2750 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchDevice *)cls)->setType (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent.cc index 6d328e697..38f152ff3 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent.cc @@ -69,7 +69,7 @@ static void _call_f_setDevice_1810 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTouchDevice *arg1 = args.read (heap); + QTouchDevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent *)cls)->setDevice (arg1); } @@ -89,7 +89,7 @@ static void _call_f_setTarget_1302 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent *)cls)->setTarget (arg1); } @@ -109,7 +109,7 @@ static void _call_f_setTouchPointStates_2995 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent *)cls)->setTouchPointStates (arg1); } @@ -129,7 +129,7 @@ static void _call_f_setTouchPoints_4191 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent *)cls)->setTouchPoints (arg1); } @@ -149,7 +149,7 @@ static void _call_f_setWindow_1335 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWindow *arg1 = args.read (heap); + QWindow *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent *)cls)->setWindow (arg1); } @@ -306,11 +306,11 @@ static void _call_ctor_QTouchEvent_Adaptor_13206 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QTouchDevice *arg2 = args ? args.read (heap) : (QTouchDevice *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::NoModifier); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(0); - const QList &arg5 = args ? args.read & > (heap) : (const QList &)(QList()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QTouchDevice *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::NoModifier, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); + const QList &arg5 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); ret.write (new QTouchEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent_TouchPoint.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent_TouchPoint.cc index e15989d5b..8f36881d6 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent_TouchPoint.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTouchEvent_TouchPoint.cc @@ -53,7 +53,7 @@ static void _call_ctor_QTouchEvent_TouchPoint_767 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write (new QTouchEvent::TouchPoint (arg1)); } @@ -72,7 +72,7 @@ static void _call_ctor_QTouchEvent_TouchPoint_3576 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTouchEvent::TouchPoint &arg1 = args.read (heap); + const QTouchEvent::TouchPoint &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTouchEvent::TouchPoint (arg1)); } @@ -196,7 +196,7 @@ static void _call_f_operator_eq__3576 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTouchEvent::TouchPoint &arg1 = args.read (heap); + const QTouchEvent::TouchPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTouchEvent::TouchPoint &)((QTouchEvent::TouchPoint *)cls)->operator= (arg1)); } @@ -335,7 +335,7 @@ static void _call_f_setFlags_4285 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setFlags (arg1); } @@ -355,7 +355,7 @@ static void _call_f_setId_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setId (arg1); } @@ -375,7 +375,7 @@ static void _call_f_setLastNormalizedPos_1986 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setLastNormalizedPos (arg1); } @@ -395,7 +395,7 @@ static void _call_f_setLastPos_1986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setLastPos (arg1); } @@ -415,7 +415,7 @@ static void _call_f_setLastScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setLastScenePos (arg1); } @@ -435,7 +435,7 @@ static void _call_f_setLastScreenPos_1986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setLastScreenPos (arg1); } @@ -455,7 +455,7 @@ static void _call_f_setNormalizedPos_1986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setNormalizedPos (arg1); } @@ -475,7 +475,7 @@ static void _call_f_setPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setPos (arg1); } @@ -495,7 +495,7 @@ static void _call_f_setPressure_1071 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setPressure (arg1); } @@ -515,7 +515,7 @@ static void _call_f_setRawScreenPositions_2816 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setRawScreenPositions (arg1); } @@ -535,7 +535,7 @@ static void _call_f_setRect_1862 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setRect (arg1); } @@ -555,7 +555,7 @@ static void _call_f_setScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setScenePos (arg1); } @@ -575,7 +575,7 @@ static void _call_f_setSceneRect_1862 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setSceneRect (arg1); } @@ -595,7 +595,7 @@ static void _call_f_setScreenPos_1986 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setScreenPos (arg1); } @@ -615,7 +615,7 @@ static void _call_f_setScreenRect_1862 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setScreenRect (arg1); } @@ -635,7 +635,7 @@ static void _call_f_setStartNormalizedPos_1986 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setStartNormalizedPos (arg1); } @@ -655,7 +655,7 @@ static void _call_f_setStartPos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setStartPos (arg1); } @@ -675,7 +675,7 @@ static void _call_f_setStartScenePos_1986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setStartScenePos (arg1); } @@ -695,7 +695,7 @@ static void _call_f_setStartScreenPos_1986 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setStartScreenPos (arg1); } @@ -715,7 +715,7 @@ static void _call_f_setState_2995 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setState (arg1); } @@ -735,7 +735,7 @@ static void _call_f_setVelocity_2139 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->setVelocity (arg1); } @@ -830,7 +830,7 @@ static void _call_f_swap_2881 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTouchEvent::TouchPoint &arg1 = args.read (heap); + QTouchEvent::TouchPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTouchEvent::TouchPoint *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQTransform.cc b/src/gsiqt/qt5/QtGui/gsiDeclQTransform.cc index 00f1ab05c..c0cbe80ed 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQTransform.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQTransform.cc @@ -92,15 +92,15 @@ static void _call_ctor_QTransform_8775 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); - double arg7 = args.read (heap); - double arg8 = args.read (heap); - double arg9 = args ? args.read (heap) : (double)(1.0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); + double arg7 = gsi::arg_reader() (args, heap); + double arg8 = gsi::arg_reader() (args, heap); + double arg9 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.0, heap); ret.write (new QTransform (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)); } @@ -129,12 +129,12 @@ static void _call_ctor_QTransform_5886 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); ret.write (new QTransform (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -153,7 +153,7 @@ static void _call_ctor_QTransform_2023 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTransform (arg1)); } @@ -247,7 +247,7 @@ static void _call_f_inverted_c1050 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args ? args.read (heap) : (bool *)(0); + bool *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QTransform)((QTransform *)cls)->inverted (arg1)); } @@ -491,7 +491,7 @@ static void _call_f_map_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QTransform *)cls)->map (arg1)); } @@ -510,7 +510,7 @@ static void _call_f_map_c1986 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QTransform *)cls)->map (arg1)); } @@ -529,7 +529,7 @@ static void _call_f_map_c1786 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLine &arg1 = args.read (heap); + const QLine &arg1 = gsi::arg_reader() (args, heap); ret.write ((QLine)((QTransform *)cls)->map (arg1)); } @@ -548,7 +548,7 @@ static void _call_f_map_c1856 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QLineF)((QTransform *)cls)->map (arg1)); } @@ -567,7 +567,7 @@ static void _call_f_map_c2208 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QTransform *)cls)->map (arg1)); } @@ -586,7 +586,7 @@ static void _call_f_map_c2138 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QTransform *)cls)->map (arg1)); } @@ -605,7 +605,7 @@ static void _call_f_map_c2006 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QTransform *)cls)->map (arg1)); } @@ -624,7 +624,7 @@ static void _call_f_map_c2514 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QTransform *)cls)->map (arg1)); } @@ -649,10 +649,10 @@ static void _call_f_map_c3116 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTransform *)cls)->map (arg1, arg2, arg3, arg4); } @@ -678,10 +678,10 @@ static void _call_f_map_c4332 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTransform *)cls)->map (arg1, arg2, arg3, arg4); } @@ -701,7 +701,7 @@ static void _call_f_mapRect_c1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTransform *)cls)->mapRect (arg1)); } @@ -720,7 +720,7 @@ static void _call_f_mapRect_c1862 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QTransform *)cls)->mapRect (arg1)); } @@ -739,7 +739,7 @@ static void _call_f_mapToPolygon_c1792 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QTransform *)cls)->mapToPolygon (arg1)); } @@ -758,7 +758,7 @@ static void _call_f_operator_excl__eq__c2350 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTransform *)cls)->operator!= (arg1)); } @@ -777,7 +777,7 @@ static void _call_f_operator_star__c2350 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform)((QTransform *)cls)->operator* (arg1)); } @@ -796,7 +796,7 @@ static void _call_f_operator_star__eq__2350 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->operator*= (arg1)); } @@ -815,7 +815,7 @@ static void _call_f_operator_star__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->operator*= (arg1)); } @@ -834,7 +834,7 @@ static void _call_f_operator_plus__eq__1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->operator+= (arg1)); } @@ -853,7 +853,7 @@ static void _call_f_operator_minus__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->operator-= (arg1)); } @@ -872,7 +872,7 @@ static void _call_f_operator_slash__eq__1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->operator/= (arg1)); } @@ -891,7 +891,7 @@ static void _call_f_operator_eq__2350 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->operator= (arg1)); } @@ -910,7 +910,7 @@ static void _call_f_operator_eq__eq__c2350 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTransform *)cls)->operator== (arg1)); } @@ -947,8 +947,8 @@ static void _call_f_rotate_2117 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::ZAxis)); + double arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::ZAxis), heap); ret.write ((QTransform &)((QTransform *)cls)->rotate (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -969,8 +969,8 @@ static void _call_f_rotateRadians_2117 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::ZAxis)); + double arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::ZAxis), heap); ret.write ((QTransform &)((QTransform *)cls)->rotateRadians (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -991,8 +991,8 @@ static void _call_f_scale_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->scale (arg1, arg2)); } @@ -1027,15 +1027,15 @@ static void _call_f_setMatrix_8775 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); - double arg6 = args.read (heap); - double arg7 = args.read (heap); - double arg8 = args.read (heap); - double arg9 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); + double arg6 = gsi::arg_reader() (args, heap); + double arg7 = gsi::arg_reader() (args, heap); + double arg8 = gsi::arg_reader() (args, heap); + double arg9 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTransform *)cls)->setMatrix (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9); } @@ -1057,8 +1057,8 @@ static void _call_f_shear_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->shear (arg1, arg2)); } @@ -1094,8 +1094,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QTransform &)((QTransform *)cls)->translate (arg1, arg2)); } @@ -1146,8 +1146,8 @@ static void _call_f_fromScale_2034 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QTransform)QTransform::fromScale (arg1, arg2)); } @@ -1168,8 +1168,8 @@ static void _call_f_fromTranslate_2034 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QTransform)QTransform::fromTranslate (arg1, arg2)); } @@ -1192,9 +1192,9 @@ static void _call_f_quadToQuad_5855 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); - const QPolygonF &arg2 = args.read (heap); - QTransform &arg3 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); + const QPolygonF &arg2 = gsi::arg_reader() (args, heap); + QTransform &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)QTransform::quadToQuad (arg1, arg2, arg3)); } @@ -1215,8 +1215,8 @@ static void _call_f_quadToSquare_3755 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); - QTransform &arg2 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); + QTransform &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QTransform::quadToSquare (arg1, arg2)); } @@ -1237,8 +1237,8 @@ static void _call_f_squareToQuad_3755 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); - QTransform &arg2 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); + QTransform &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)QTransform::squareToQuad (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQValidator.cc b/src/gsiqt/qt5/QtGui/gsiDeclQValidator.cc index f1a662930..cf15e1a3a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQValidator.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQValidator.cc @@ -70,7 +70,7 @@ static void _call_f_fixup_c1330 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator *)cls)->fixup (arg1); } @@ -105,7 +105,7 @@ static void _call_f_setLocale_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QValidator *)cls)->setLocale (arg1); } @@ -127,8 +127,8 @@ static void _call_f_validate_c2171 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QValidator *)cls)->validate (arg1, arg2))); } @@ -151,9 +151,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QValidator::tr (arg1, arg2, arg3)); } @@ -176,9 +176,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QValidator::trUtf8 (arg1, arg2, arg3)); } @@ -408,7 +408,7 @@ static void _call_ctor_QValidator_Adaptor_1302 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QValidator_Adaptor (arg1)); } @@ -488,7 +488,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QValidator_Adaptor *)cls)->emitter_QValidator_destroyed_1302 (arg1); } @@ -603,7 +603,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QValidator_Adaptor *)cls)->fp_QValidator_isSignalConnected_c2394 (arg1)); } @@ -621,7 +621,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QValidator_Adaptor *)cls)->fp_QValidator_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQVector2D.cc b/src/gsiqt/qt5/QtGui/gsiDeclQVector2D.cc index 55adaee1b..3e9aa2547 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQVector2D.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQVector2D.cc @@ -71,8 +71,8 @@ static void _call_ctor_QVector2D_1832 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); ret.write (new QVector2D (arg1, arg2)); } @@ -91,7 +91,7 @@ static void _call_ctor_QVector2D_1916 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector2D (arg1)); } @@ -110,7 +110,7 @@ static void _call_ctor_QVector2D_1986 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector2D (arg1)); } @@ -129,7 +129,7 @@ static void _call_ctor_QVector2D_2140 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector2D (arg1)); } @@ -148,7 +148,7 @@ static void _call_ctor_QVector2D_2141 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector2D (arg1)); } @@ -169,8 +169,8 @@ static void _call_f_distanceToLine_c4170 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); - const QVector2D &arg2 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); + const QVector2D &arg2 = gsi::arg_reader() (args, heap); ret.write ((float)((QVector2D *)cls)->distanceToLine (arg1, arg2)); } @@ -189,7 +189,7 @@ static void _call_f_distanceToPoint_c2139 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); ret.write ((float)((QVector2D *)cls)->distanceToPoint (arg1)); } @@ -284,7 +284,7 @@ static void _call_f_operator_star__eq__970 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector2D &)((QVector2D *)cls)->operator*= (arg1)); } @@ -303,7 +303,7 @@ static void _call_f_operator_star__eq__2139 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector2D &)((QVector2D *)cls)->operator*= (arg1)); } @@ -322,7 +322,7 @@ static void _call_f_operator_plus__eq__2139 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector2D &)((QVector2D *)cls)->operator+= (arg1)); } @@ -341,7 +341,7 @@ static void _call_f_operator_minus__eq__2139 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector2D &)((QVector2D *)cls)->operator-= (arg1)); } @@ -360,7 +360,7 @@ static void _call_f_operator_slash__eq__970 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector2D &)((QVector2D *)cls)->operator/= (arg1)); } @@ -379,7 +379,7 @@ static void _call_f_operator_slash__eq__2139 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector2D &)((QVector2D *)cls)->operator/= (arg1)); } @@ -398,7 +398,7 @@ static void _call_f_operator_index__767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((float &)((QVector2D *)cls)->operator[] (arg1)); } @@ -417,7 +417,7 @@ static void _call_f_operator_index__c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((float)((QVector2D *)cls)->operator[] (arg1)); } @@ -436,7 +436,7 @@ static void _call_f_setX_970 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector2D *)cls)->setX (arg1); } @@ -456,7 +456,7 @@ static void _call_f_setY_970 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector2D *)cls)->setY (arg1); } @@ -568,8 +568,8 @@ static void _call_f_dotProduct_4170 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); - const QVector2D &arg2 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); + const QVector2D &arg2 = gsi::arg_reader() (args, heap); ret.write ((float)QVector2D::dotProduct (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQVector3D.cc b/src/gsiqt/qt5/QtGui/gsiDeclQVector3D.cc index 58e2017ab..3d745277a 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQVector3D.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQVector3D.cc @@ -71,9 +71,9 @@ static void _call_ctor_QVector3D_2694 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); - float arg3 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); ret.write (new QVector3D (arg1, arg2, arg3)); } @@ -92,7 +92,7 @@ static void _call_ctor_QVector3D_1916 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector3D (arg1)); } @@ -111,7 +111,7 @@ static void _call_ctor_QVector3D_1986 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector3D (arg1)); } @@ -130,7 +130,7 @@ static void _call_ctor_QVector3D_2139 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector3D (arg1)); } @@ -151,8 +151,8 @@ static void _call_ctor_QVector3D_3001 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); - float arg2 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); ret.write (new QVector3D (arg1, arg2)); } @@ -171,7 +171,7 @@ static void _call_ctor_QVector3D_2141 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector3D (arg1)); } @@ -192,8 +192,8 @@ static void _call_f_distanceToLine_c4172 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); ret.write ((float)((QVector3D *)cls)->distanceToLine (arg1, arg2)); } @@ -214,8 +214,8 @@ static void _call_f_distanceToPlane_c4172 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); ret.write ((float)((QVector3D *)cls)->distanceToPlane (arg1, arg2)); } @@ -238,9 +238,9 @@ static void _call_f_distanceToPlane_c6204 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); - const QVector3D &arg3 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); + const QVector3D &arg3 = gsi::arg_reader() (args, heap); ret.write ((float)((QVector3D *)cls)->distanceToPlane (arg1, arg2, arg3)); } @@ -259,7 +259,7 @@ static void _call_f_distanceToPoint_c2140 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write ((float)((QVector3D *)cls)->distanceToPoint (arg1)); } @@ -354,7 +354,7 @@ static void _call_f_operator_star__eq__970 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D &)((QVector3D *)cls)->operator*= (arg1)); } @@ -373,7 +373,7 @@ static void _call_f_operator_star__eq__2140 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D &)((QVector3D *)cls)->operator*= (arg1)); } @@ -392,7 +392,7 @@ static void _call_f_operator_plus__eq__2140 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D &)((QVector3D *)cls)->operator+= (arg1)); } @@ -411,7 +411,7 @@ static void _call_f_operator_minus__eq__2140 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D &)((QVector3D *)cls)->operator-= (arg1)); } @@ -430,7 +430,7 @@ static void _call_f_operator_slash__eq__970 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D &)((QVector3D *)cls)->operator/= (arg1)); } @@ -449,7 +449,7 @@ static void _call_f_operator_slash__eq__2140 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector3D &)((QVector3D *)cls)->operator/= (arg1)); } @@ -468,7 +468,7 @@ static void _call_f_operator_index__767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((float &)((QVector3D *)cls)->operator[] (arg1)); } @@ -487,7 +487,7 @@ static void _call_f_operator_index__c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((float)((QVector3D *)cls)->operator[] (arg1)); } @@ -510,9 +510,9 @@ static void _call_f_project_c6070 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix4x4 &arg1 = args.read (heap); - const QMatrix4x4 &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); + const QMatrix4x4 &arg1 = gsi::arg_reader() (args, heap); + const QMatrix4x4 &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); ret.write ((QVector3D)((QVector3D *)cls)->project (arg1, arg2, arg3)); } @@ -531,7 +531,7 @@ static void _call_f_setX_970 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector3D *)cls)->setX (arg1); } @@ -551,7 +551,7 @@ static void _call_f_setY_970 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector3D *)cls)->setY (arg1); } @@ -571,7 +571,7 @@ static void _call_f_setZ_970 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector3D *)cls)->setZ (arg1); } @@ -655,9 +655,9 @@ static void _call_f_unproject_c6070 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix4x4 &arg1 = args.read (heap); - const QMatrix4x4 &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); + const QMatrix4x4 &arg1 = gsi::arg_reader() (args, heap); + const QMatrix4x4 &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); ret.write ((QVector3D)((QVector3D *)cls)->unproject (arg1, arg2, arg3)); } @@ -723,8 +723,8 @@ static void _call_f_crossProduct_4172 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVector3D)QVector3D::crossProduct (arg1, arg2)); } @@ -745,8 +745,8 @@ static void _call_f_dotProduct_4172 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); ret.write ((float)QVector3D::dotProduct (arg1, arg2)); } @@ -767,8 +767,8 @@ static void _call_f_normal_4172 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVector3D)QVector3D::normal (arg1, arg2)); } @@ -791,9 +791,9 @@ static void _call_f_normal_6204 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - const QVector3D &arg2 = args.read (heap); - const QVector3D &arg3 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + const QVector3D &arg2 = gsi::arg_reader() (args, heap); + const QVector3D &arg3 = gsi::arg_reader() (args, heap); ret.write ((QVector3D)QVector3D::normal (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQVector4D.cc b/src/gsiqt/qt5/QtGui/gsiDeclQVector4D.cc index 53bdb8010..d900339fe 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQVector4D.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQVector4D.cc @@ -73,10 +73,10 @@ static void _call_ctor_QVector4D_3556 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); - float arg2 = args.read (heap); - float arg3 = args.read (heap); - float arg4 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); + float arg4 = gsi::arg_reader() (args, heap); ret.write (new QVector4D (arg1, arg2, arg3, arg4)); } @@ -95,7 +95,7 @@ static void _call_ctor_QVector4D_1916 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector4D (arg1)); } @@ -114,7 +114,7 @@ static void _call_ctor_QVector4D_1986 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector4D (arg1)); } @@ -133,7 +133,7 @@ static void _call_ctor_QVector4D_2139 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector4D (arg1)); } @@ -156,9 +156,9 @@ static void _call_ctor_QVector4D_3863 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector2D &arg1 = args.read (heap); - float arg2 = args.read (heap); - float arg3 = args.read (heap); + const QVector2D &arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); + float arg3 = gsi::arg_reader() (args, heap); ret.write (new QVector4D (arg1, arg2, arg3)); } @@ -177,7 +177,7 @@ static void _call_ctor_QVector4D_2140 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVector4D (arg1)); } @@ -198,8 +198,8 @@ static void _call_ctor_QVector4D_3002 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); - float arg2 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); ret.write (new QVector4D (arg1, arg2)); } @@ -294,7 +294,7 @@ static void _call_f_operator_star__eq__970 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D &)((QVector4D *)cls)->operator*= (arg1)); } @@ -313,7 +313,7 @@ static void _call_f_operator_star__eq__2141 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D &)((QVector4D *)cls)->operator*= (arg1)); } @@ -332,7 +332,7 @@ static void _call_f_operator_plus__eq__2141 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D &)((QVector4D *)cls)->operator+= (arg1)); } @@ -351,7 +351,7 @@ static void _call_f_operator_minus__eq__2141 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D &)((QVector4D *)cls)->operator-= (arg1)); } @@ -370,7 +370,7 @@ static void _call_f_operator_slash__eq__970 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D &)((QVector4D *)cls)->operator/= (arg1)); } @@ -389,7 +389,7 @@ static void _call_f_operator_slash__eq__2141 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVector4D &)((QVector4D *)cls)->operator/= (arg1)); } @@ -408,7 +408,7 @@ static void _call_f_operator_index__767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((float &)((QVector4D *)cls)->operator[] (arg1)); } @@ -427,7 +427,7 @@ static void _call_f_operator_index__c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((float)((QVector4D *)cls)->operator[] (arg1)); } @@ -446,7 +446,7 @@ static void _call_f_setW_970 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector4D *)cls)->setW (arg1); } @@ -466,7 +466,7 @@ static void _call_f_setX_970 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector4D *)cls)->setX (arg1); } @@ -486,7 +486,7 @@ static void _call_f_setY_970 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector4D *)cls)->setY (arg1); } @@ -506,7 +506,7 @@ static void _call_f_setZ_970 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVector4D *)cls)->setZ (arg1); } @@ -678,8 +678,8 @@ static void _call_f_dotProduct_4174 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector4D &arg1 = args.read (heap); - const QVector4D &arg2 = args.read (heap); + const QVector4D &arg1 = gsi::arg_reader() (args, heap); + const QVector4D &arg2 = gsi::arg_reader() (args, heap); ret.write ((float)QVector4D::dotProduct (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQWhatsThisClickedEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQWhatsThisClickedEvent.cc index adddd2004..655ab1717 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQWhatsThisClickedEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQWhatsThisClickedEvent.cc @@ -102,7 +102,7 @@ static void _call_ctor_QWhatsThisClickedEvent_Adaptor_2025 (const qt_gsi::Generi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QWhatsThisClickedEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQWheelEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQWheelEvent.cc index 5b865f790..9ba3ab333 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQWheelEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQWheelEvent.cc @@ -372,11 +372,11 @@ static void _call_ctor_QWheelEvent_Adaptor_9913 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - int arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); - QFlags arg4 = args.read > (heap); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::Vertical)); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); + QFlags arg4 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::Vertical), heap); ret.write (new QWheelEvent_Adaptor (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -404,12 +404,12 @@ static void _call_ctor_QWheelEvent_Adaptor_11791 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - int arg3 = args.read (heap); - QFlags arg4 = args.read > (heap); - QFlags arg5 = args.read > (heap); - const qt_gsi::Converter::target_type & arg6 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::Vertical)); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = gsi::arg_reader >() (args, heap); + QFlags arg5 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg6 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::Vertical), heap); ret.write (new QWheelEvent_Adaptor (arg1, arg2, arg3, arg4, arg5, qt_gsi::QtToCppAdaptor(arg6).cref())); } @@ -441,14 +441,14 @@ static void _call_ctor_QWheelEvent_Adaptor_13653 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - QPoint arg3 = args.read (heap); - QPoint arg4 = args.read (heap); - int arg5 = args.read (heap); - const qt_gsi::Converter::target_type & arg6 = args.read::target_type & > (heap); - QFlags arg7 = args.read > (heap); - QFlags arg8 = args.read > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + QPoint arg3 = gsi::arg_reader() (args, heap); + QPoint arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg6 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg7 = gsi::arg_reader >() (args, heap); + QFlags arg8 = gsi::arg_reader >() (args, heap); ret.write (new QWheelEvent_Adaptor (arg1, arg2, arg3, arg4, arg5, qt_gsi::QtToCppAdaptor(arg6).cref(), arg7, arg8)); } @@ -482,15 +482,15 @@ static void _call_ctor_QWheelEvent_Adaptor_15414 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - QPoint arg3 = args.read (heap); - QPoint arg4 = args.read (heap); - int arg5 = args.read (heap); - const qt_gsi::Converter::target_type & arg6 = args.read::target_type & > (heap); - QFlags arg7 = args.read > (heap); - QFlags arg8 = args.read > (heap); - const qt_gsi::Converter::target_type & arg9 = args.read::target_type & > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + QPoint arg3 = gsi::arg_reader() (args, heap); + QPoint arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg6 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg7 = gsi::arg_reader >() (args, heap); + QFlags arg8 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg9 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QWheelEvent_Adaptor (arg1, arg2, arg3, arg4, arg5, qt_gsi::QtToCppAdaptor(arg6).cref(), arg7, arg8, qt_gsi::QtToCppAdaptor(arg9).cref())); } @@ -526,16 +526,16 @@ static void _call_ctor_QWheelEvent_Adaptor_17715 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); - QPoint arg3 = args.read (heap); - QPoint arg4 = args.read (heap); - int arg5 = args.read (heap); - const qt_gsi::Converter::target_type & arg6 = args.read::target_type & > (heap); - QFlags arg7 = args.read > (heap); - QFlags arg8 = args.read > (heap); - const qt_gsi::Converter::target_type & arg9 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg10 = args.read::target_type & > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + QPoint arg3 = gsi::arg_reader() (args, heap); + QPoint arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg6 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg7 = gsi::arg_reader >() (args, heap); + QFlags arg8 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg9 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg10 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QWheelEvent_Adaptor (arg1, arg2, arg3, arg4, arg5, qt_gsi::QtToCppAdaptor(arg6).cref(), arg7, arg8, qt_gsi::QtToCppAdaptor(arg9).cref(), qt_gsi::QtToCppAdaptor(arg10).cref())); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc b/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc index 4946480f6..8b58c1a70 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQWindow.cc @@ -79,7 +79,7 @@ static void _call_f_alert_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->alert (arg1); } @@ -389,8 +389,8 @@ static void _call_f_isAncestorOf_c4407 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWindow *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QWindow::IncludeTransients)); + const QWindow *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QWindow::IncludeTransients), heap); ret.write ((bool)((QWindow *)cls)->isAncestorOf (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -485,7 +485,7 @@ static void _call_f_mapFromGlobal_c1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QWindow *)cls)->mapFromGlobal (arg1)); } @@ -504,7 +504,7 @@ static void _call_f_mapToGlobal_c1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QWindow *)cls)->mapToGlobal (arg1)); } @@ -704,7 +704,7 @@ static void _call_f_reportContentOrientationChange_2521 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->reportContentOrientationChange (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -771,7 +771,7 @@ static void _call_f_resize_1805 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->resize (arg1); } @@ -793,8 +793,8 @@ static void _call_f_resize_1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->resize (arg1, arg2); } @@ -829,7 +829,7 @@ static void _call_f_setBaseSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setBaseSize (arg1); } @@ -849,7 +849,7 @@ static void _call_f_setCursor_2032 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCursor &arg1 = args.read (heap); + const QCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setCursor (arg1); } @@ -869,7 +869,7 @@ static void _call_f_setFilePath_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setFilePath (arg1); } @@ -889,7 +889,7 @@ static void _call_f_setFlags_2495 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setFlags (arg1); } @@ -909,7 +909,7 @@ static void _call_f_setFormat_2724 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSurfaceFormat &arg1 = args.read (heap); + const QSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setFormat (arg1); } @@ -929,7 +929,7 @@ static void _call_f_setFramePosition_1916 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setFramePosition (arg1); } @@ -955,10 +955,10 @@ static void _call_f_setGeometry_2744 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setGeometry (arg1, arg2, arg3, arg4); } @@ -978,7 +978,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setGeometry (arg1); } @@ -998,7 +998,7 @@ static void _call_f_setHeight_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setHeight (arg1); } @@ -1018,7 +1018,7 @@ static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setIcon (arg1); } @@ -1038,7 +1038,7 @@ static void _call_f_setKeyboardGrabEnabled_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWindow *)cls)->setKeyboardGrabEnabled (arg1)); } @@ -1057,7 +1057,7 @@ static void _call_f_setMask_2006 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setMask (arg1); } @@ -1077,7 +1077,7 @@ static void _call_f_setMaximumHeight_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setMaximumHeight (arg1); } @@ -1097,7 +1097,7 @@ static void _call_f_setMaximumSize_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setMaximumSize (arg1); } @@ -1117,7 +1117,7 @@ static void _call_f_setMaximumWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setMaximumWidth (arg1); } @@ -1137,7 +1137,7 @@ static void _call_f_setMinimumHeight_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setMinimumHeight (arg1); } @@ -1157,7 +1157,7 @@ static void _call_f_setMinimumSize_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setMinimumSize (arg1); } @@ -1177,7 +1177,7 @@ static void _call_f_setMinimumWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setMinimumWidth (arg1); } @@ -1197,7 +1197,7 @@ static void _call_f_setModality_2216 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setModality (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1217,7 +1217,7 @@ static void _call_f_setMouseGrabEnabled_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWindow *)cls)->setMouseGrabEnabled (arg1)); } @@ -1236,7 +1236,7 @@ static void _call_f_setOpacity_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setOpacity (arg1); } @@ -1256,7 +1256,7 @@ static void _call_f_setParent_1335 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWindow *arg1 = args.read (heap); + QWindow *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setParent (arg1); } @@ -1276,7 +1276,7 @@ static void _call_f_setPosition_1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setPosition (arg1); } @@ -1298,8 +1298,8 @@ static void _call_f_setPosition_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setPosition (arg1, arg2); } @@ -1319,7 +1319,7 @@ static void _call_f_setScreen_1311 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScreen *arg1 = args.read (heap); + QScreen *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setScreen (arg1); } @@ -1339,7 +1339,7 @@ static void _call_f_setSizeIncrement_1805 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setSizeIncrement (arg1); } @@ -1359,7 +1359,7 @@ static void _call_f_setSurfaceType_2477 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setSurfaceType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1379,7 +1379,7 @@ static void _call_f_setTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setTitle (arg1); } @@ -1399,7 +1399,7 @@ static void _call_f_setTransientParent_1335 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWindow *arg1 = args.read (heap); + QWindow *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setTransientParent (arg1); } @@ -1419,7 +1419,7 @@ static void _call_f_setVisibility_2329 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setVisibility (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1439,7 +1439,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setVisible (arg1); } @@ -1459,7 +1459,7 @@ static void _call_f_setWidth_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setWidth (arg1); } @@ -1479,7 +1479,7 @@ static void _call_f_setWindowState_1894 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setWindowState (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1499,7 +1499,7 @@ static void _call_f_setX_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setX (arg1); } @@ -1519,7 +1519,7 @@ static void _call_f_setY_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWindow *)cls)->setY (arg1); } @@ -1815,7 +1815,7 @@ static void _call_f_fromWinId_696 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QWindow *)QWindow::fromWinId (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1838,9 +1838,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QWindow::tr (arg1, arg2, arg3)); } @@ -1863,9 +1863,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QWindow::trUtf8 (arg1, arg2, arg3)); } @@ -2685,7 +2685,7 @@ static void _call_ctor_QWindow_Adaptor_1311 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScreen *arg1 = args ? args.read (heap) : (QScreen *)(0); + QScreen *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QWindow_Adaptor (arg1)); } @@ -2703,7 +2703,7 @@ static void _call_ctor_QWindow_Adaptor_1335 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWindow *arg1 = args.read (heap); + QWindow *arg1 = gsi::arg_reader() (args, heap); ret.write (new QWindow_Adaptor (arg1)); } @@ -2778,7 +2778,7 @@ static void _call_emitter_contentOrientationChanged_2521 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_contentOrientationChanged_2521 (arg1); } @@ -2820,7 +2820,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_destroyed_1302 (arg1); } @@ -2978,7 +2978,7 @@ static void _call_emitter_focusObjectChanged_1302 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_focusObjectChanged_1302 (arg1); } @@ -3039,7 +3039,7 @@ static void _call_emitter_heightChanged_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_heightChanged_767 (arg1); } @@ -3081,7 +3081,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWindow_Adaptor *)cls)->fp_QWindow_isSignalConnected_c2394 (arg1)); } @@ -3147,7 +3147,7 @@ static void _call_emitter_maximumHeightChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_maximumHeightChanged_767 (arg1); } @@ -3165,7 +3165,7 @@ static void _call_emitter_maximumWidthChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_maximumWidthChanged_767 (arg1); } @@ -3183,7 +3183,7 @@ static void _call_emitter_minimumHeightChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_minimumHeightChanged_767 (arg1); } @@ -3201,7 +3201,7 @@ static void _call_emitter_minimumWidthChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_minimumWidthChanged_767 (arg1); } @@ -3219,7 +3219,7 @@ static void _call_emitter_modalityChanged_2216 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_modalityChanged_2216 (arg1); } @@ -3386,7 +3386,7 @@ static void _call_emitter_opacityChanged_1071 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_opacityChanged_1071 (arg1); } @@ -3404,7 +3404,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWindow_Adaptor *)cls)->fp_QWindow_receivers_c1731 (arg1)); } @@ -3446,7 +3446,7 @@ static void _call_emitter_screenChanged_1311 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScreen *arg1 = args.read (heap); + QScreen *arg1 = gsi::arg_reader() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_screenChanged_1311 (arg1); } @@ -3626,7 +3626,7 @@ static void _call_emitter_visibilityChanged_2329 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_visibilityChanged_2329 (arg1); } @@ -3644,7 +3644,7 @@ static void _call_emitter_visibleChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_visibleChanged_864 (arg1); } @@ -3686,7 +3686,7 @@ static void _call_emitter_widthChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_widthChanged_767 (arg1); } @@ -3704,7 +3704,7 @@ static void _call_emitter_windowStateChanged_1894 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_windowStateChanged_1894 (arg1); } @@ -3722,7 +3722,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_windowTitleChanged_2025 (arg1); } @@ -3740,7 +3740,7 @@ static void _call_emitter_xChanged_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_xChanged_767 (arg1); } @@ -3758,7 +3758,7 @@ static void _call_emitter_yChanged_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWindow_Adaptor *)cls)->emitter_QWindow_yChanged_767 (arg1); } diff --git a/src/gsiqt/qt5/QtGui/gsiDeclQWindowStateChangeEvent.cc b/src/gsiqt/qt5/QtGui/gsiDeclQWindowStateChangeEvent.cc index cdf7f4065..5fc2f2e79 100644 --- a/src/gsiqt/qt5/QtGui/gsiDeclQWindowStateChangeEvent.cc +++ b/src/gsiqt/qt5/QtGui/gsiDeclQWindowStateChangeEvent.cc @@ -126,8 +126,8 @@ static void _call_ctor_QWindowStateChangeEvent_Adaptor_3346 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + QFlags arg1 = gsi::arg_reader >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write (new QWindowStateChangeEvent_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioDeviceInfo.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioDeviceInfo.cc index 672c84282..8b8f5df07 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioDeviceInfo.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioDeviceInfo.cc @@ -85,7 +85,7 @@ static void _call_f_isFormatSupported_c2509 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAudioDeviceInfo *)cls)->isFormatSupported (arg1)); } @@ -213,9 +213,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractAudioDeviceInfo::tr (arg1, arg2, arg3)); } @@ -238,9 +238,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractAudioDeviceInfo::trUtf8 (arg1, arg2, arg3)); } @@ -635,7 +635,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractAudioDeviceInfo_Adaptor *)cls)->emitter_QAbstractAudioDeviceInfo_destroyed_1302 (arg1); } @@ -768,7 +768,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAudioDeviceInfo_Adaptor *)cls)->fp_QAbstractAudioDeviceInfo_isSignalConnected_c2394 (arg1)); } @@ -805,7 +805,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractAudioDeviceInfo_Adaptor *)cls)->fp_QAbstractAudioDeviceInfo_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioInput.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioInput.cc index 7d0decc06..80fe69414 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioInput.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioInput.cc @@ -223,7 +223,7 @@ static void _call_f_setBufferSize_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioInput *)cls)->setBufferSize (arg1); } @@ -243,7 +243,7 @@ static void _call_f_setFormat_2509 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioInput *)cls)->setFormat (arg1); } @@ -263,7 +263,7 @@ static void _call_f_setNotifyInterval_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioInput *)cls)->setNotifyInterval (arg1); } @@ -283,7 +283,7 @@ static void _call_f_setVolume_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioInput *)cls)->setVolume (arg1); } @@ -303,7 +303,7 @@ static void _call_f_start_1447 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioInput *)cls)->start (arg1); } @@ -404,9 +404,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractAudioInput::tr (arg1, arg2, arg3)); } @@ -429,9 +429,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractAudioInput::trUtf8 (arg1, arg2, arg3)); } @@ -1076,7 +1076,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractAudioInput_Adaptor *)cls)->emitter_QAbstractAudioInput_destroyed_1302 (arg1); } @@ -1156,7 +1156,7 @@ static void _call_emitter_errorChanged_1653 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAbstractAudioInput_Adaptor *)cls)->emitter_QAbstractAudioInput_errorChanged_1653 (arg1); } @@ -1242,7 +1242,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAudioInput_Adaptor *)cls)->fp_QAbstractAudioInput_isSignalConnected_c2394 (arg1)); } @@ -1331,7 +1331,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractAudioInput_Adaptor *)cls)->fp_QAbstractAudioInput_receivers_c1731 (arg1)); } @@ -1575,7 +1575,7 @@ static void _call_emitter_stateChanged_1644 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAbstractAudioInput_Adaptor *)cls)->emitter_QAbstractAudioInput_stateChanged_1644 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioOutput.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioOutput.cc index 23b61a7b6..bc6783449 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioOutput.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractAudioOutput.cc @@ -238,7 +238,7 @@ static void _call_f_setBufferSize_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput *)cls)->setBufferSize (arg1); } @@ -258,7 +258,7 @@ static void _call_f_setCategory_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput *)cls)->setCategory (arg1); } @@ -278,7 +278,7 @@ static void _call_f_setFormat_2509 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput *)cls)->setFormat (arg1); } @@ -298,7 +298,7 @@ static void _call_f_setNotifyInterval_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput *)cls)->setNotifyInterval (arg1); } @@ -318,7 +318,7 @@ static void _call_f_setVolume_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput *)cls)->setVolume (arg1); } @@ -338,7 +338,7 @@ static void _call_f_start_1447 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractAudioOutput *)cls)->start (arg1); } @@ -439,9 +439,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractAudioOutput::tr (arg1, arg2, arg3)); } @@ -464,9 +464,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractAudioOutput::trUtf8 (arg1, arg2, arg3)); } @@ -1163,7 +1163,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractAudioOutput_Adaptor *)cls)->emitter_QAbstractAudioOutput_destroyed_1302 (arg1); } @@ -1243,7 +1243,7 @@ static void _call_emitter_errorChanged_1653 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAbstractAudioOutput_Adaptor *)cls)->emitter_QAbstractAudioOutput_errorChanged_1653 (arg1); } @@ -1329,7 +1329,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractAudioOutput_Adaptor *)cls)->fp_QAbstractAudioOutput_isSignalConnected_c2394 (arg1)); } @@ -1418,7 +1418,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractAudioOutput_Adaptor *)cls)->fp_QAbstractAudioOutput_receivers_c1731 (arg1)); } @@ -1686,7 +1686,7 @@ static void _call_emitter_stateChanged_1644 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAbstractAudioOutput_Adaptor *)cls)->emitter_QAbstractAudioOutput_stateChanged_1644 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoFilter.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoFilter.cc index f19151636..11861e311 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoFilter.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoFilter.cc @@ -100,7 +100,7 @@ static void _call_f_setActive_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractVideoFilter *)cls)->setActive (arg1); } @@ -124,9 +124,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractVideoFilter::tr (arg1, arg2, arg3)); } @@ -149,9 +149,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractVideoFilter::trUtf8 (arg1, arg2, arg3)); } @@ -362,7 +362,7 @@ static void _call_ctor_QAbstractVideoFilter_Adaptor_1302 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractVideoFilter_Adaptor (arg1)); } @@ -461,7 +461,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractVideoFilter_Adaptor *)cls)->emitter_QAbstractVideoFilter_destroyed_1302 (arg1); } @@ -552,7 +552,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractVideoFilter_Adaptor *)cls)->fp_QAbstractVideoFilter_isSignalConnected_c2394 (arg1)); } @@ -570,7 +570,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractVideoFilter_Adaptor *)cls)->fp_QAbstractVideoFilter_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoSurface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoSurface.cc index ab4cbbd69..de867d368 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoSurface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAbstractVideoSurface.cc @@ -102,7 +102,7 @@ static void _call_f_isFormatSupported_c3227 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoSurfaceFormat &arg1 = args.read (heap); + const QVideoSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractVideoSurface *)cls)->isFormatSupported (arg1)); } @@ -136,7 +136,7 @@ static void _call_f_nearestFormat_c3227 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoSurfaceFormat &arg1 = args.read (heap); + const QVideoSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVideoSurfaceFormat)((QAbstractVideoSurface *)cls)->nearestFormat (arg1)); } @@ -155,7 +155,7 @@ static void _call_f_present_2388 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoFrame &arg1 = args.read (heap); + const QVideoFrame &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractVideoSurface *)cls)->present (arg1)); } @@ -174,7 +174,7 @@ static void _call_f_start_3227 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoSurfaceFormat &arg1 = args.read (heap); + const QVideoSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractVideoSurface *)cls)->start (arg1)); } @@ -209,7 +209,7 @@ static void _call_f_supportedPixelFormats_c3564 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractVideoBuffer::NoHandle)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractVideoBuffer::NoHandle), heap); ret.write > ((QList)((QAbstractVideoSurface *)cls)->supportedPixelFormats (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -247,9 +247,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractVideoSurface::tr (arg1, arg2, arg3)); } @@ -272,9 +272,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractVideoSurface::trUtf8 (arg1, arg2, arg3)); } @@ -605,7 +605,7 @@ static void _call_ctor_QAbstractVideoSurface_Adaptor_1302 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractVideoSurface_Adaptor (arg1)); } @@ -623,7 +623,7 @@ static void _call_emitter_activeChanged_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QAbstractVideoSurface_Adaptor *)cls)->emitter_QAbstractVideoSurface_activeChanged_864 (arg1); } @@ -689,7 +689,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractVideoSurface_Adaptor *)cls)->emitter_QAbstractVideoSurface_destroyed_1302 (arg1); } @@ -803,7 +803,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractVideoSurface_Adaptor *)cls)->fp_QAbstractVideoSurface_isSignalConnected_c2394 (arg1)); } @@ -821,7 +821,7 @@ static void _call_emitter_nativeResolutionChanged_1805 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QAbstractVideoSurface_Adaptor *)cls)->emitter_QAbstractVideoSurface_nativeResolutionChanged_1805 (arg1); } @@ -885,7 +885,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractVideoSurface_Adaptor *)cls)->fp_QAbstractVideoSurface_receivers_c1731 (arg1)); } @@ -931,7 +931,7 @@ static void _call_fp_setError_3191 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractVideoSurface_Adaptor *)cls)->fp_QAbstractVideoSurface_setError_3191 (arg1); } @@ -950,7 +950,7 @@ static void _call_fp_setNativeResolution_1805 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractVideoSurface_Adaptor *)cls)->fp_QAbstractVideoSurface_setNativeResolution_1805 (arg1); } @@ -1049,7 +1049,7 @@ static void _call_emitter_surfaceFormatChanged_3227 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoSurfaceFormat &arg1 = args.read (heap); + const QVideoSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); ((QAbstractVideoSurface_Adaptor *)cls)->emitter_QAbstractVideoSurface_surfaceFormatChanged_3227 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioBuffer.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioBuffer.cc index 70617be3a..a08686a75 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioBuffer.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioBuffer.cc @@ -65,7 +65,7 @@ static void _call_ctor_QAudioBuffer_2494 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioBuffer &arg1 = args.read (heap); + const QAudioBuffer &arg1 = gsi::arg_reader() (args, heap); ret.write (new QAudioBuffer (arg1)); } @@ -88,9 +88,9 @@ static void _call_ctor_QAudioBuffer_5588 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const QAudioFormat &arg2 = args.read (heap); - qint64 arg3 = args ? args.read (heap) : (qint64)(-1); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const QAudioFormat &arg2 = gsi::arg_reader() (args, heap); + qint64 arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write (new QAudioBuffer (arg1, arg2, arg3)); } @@ -113,9 +113,9 @@ static void _call_ctor_QAudioBuffer_4046 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QAudioFormat &arg2 = args.read (heap); - qint64 arg3 = args ? args.read (heap) : (qint64)(-1); + int arg1 = gsi::arg_reader() (args, heap); + const QAudioFormat &arg2 = gsi::arg_reader() (args, heap); + qint64 arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write (new QAudioBuffer (arg1, arg2, arg3)); } @@ -254,7 +254,7 @@ static void _call_f_operator_eq__2494 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioBuffer &arg1 = args.read (heap); + const QAudioBuffer &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAudioBuffer &)((QAudioBuffer *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc index 8a68da07f..ef68de96f 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoder.cc @@ -88,7 +88,7 @@ static void _call_f_bind_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioDecoder *)cls)->bind (arg1)); } @@ -197,7 +197,7 @@ static void _call_f_setAudioFormat_2509 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoder *)cls)->setAudioFormat (arg1); } @@ -217,7 +217,7 @@ static void _call_f_setSourceDevice_1447 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoder *)cls)->setSourceDevice (arg1); } @@ -237,7 +237,7 @@ static void _call_f_setSourceFilename_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoder *)cls)->setSourceFilename (arg1); } @@ -334,7 +334,7 @@ static void _call_f_unbind_1302 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoder *)cls)->unbind (arg1); } @@ -356,8 +356,8 @@ static void _call_f_hasSupport_4354 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args ? args.read (heap) : (const QStringList &)(QStringList()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStringList(), heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QAudioDecoder::hasSupport (arg1, arg2))); } @@ -380,9 +380,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioDecoder::tr (arg1, arg2, arg3)); } @@ -405,9 +405,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioDecoder::trUtf8 (arg1, arg2, arg3)); } @@ -805,7 +805,7 @@ static void _call_ctor_QAudioDecoder_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAudioDecoder_Adaptor (arg1)); } @@ -823,7 +823,7 @@ static void _call_fp_addPropertyWatch_2309 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray const &arg1 = args.read (heap); + QByteArray const &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoder_Adaptor *)cls)->fp_QAudioDecoder_addPropertyWatch_2309 (arg1); } @@ -861,7 +861,7 @@ static void _call_emitter_availabilityChanged_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QAudioDecoder_Adaptor *)cls)->emitter_QAudioDecoder_availabilityChanged_864 (arg1); } @@ -879,7 +879,7 @@ static void _call_emitter_availabilityChanged_3555 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAudioDecoder_Adaptor *)cls)->emitter_QAudioDecoder_availabilityChanged_3555 (arg1); } @@ -920,7 +920,7 @@ static void _call_emitter_bufferAvailableChanged_864 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QAudioDecoder_Adaptor *)cls)->emitter_QAudioDecoder_bufferAvailableChanged_864 (arg1); } @@ -1000,7 +1000,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAudioDecoder_Adaptor *)cls)->emitter_QAudioDecoder_destroyed_1302 (arg1); } @@ -1042,7 +1042,7 @@ static void _call_emitter_durationChanged_986 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ((QAudioDecoder_Adaptor *)cls)->emitter_QAudioDecoder_durationChanged_986 (arg1); } @@ -1060,7 +1060,7 @@ static void _call_emitter_error_2347 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAudioDecoder_Adaptor *)cls)->emitter_QAudioDecoder_error_2347 (arg1); } @@ -1141,7 +1141,7 @@ static void _call_emitter_formatChanged_2509 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); ((QAudioDecoder_Adaptor *)cls)->emitter_QAudioDecoder_formatChanged_2509 (arg1); } @@ -1178,7 +1178,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioDecoder_Adaptor *)cls)->fp_QAudioDecoder_isSignalConnected_c2394 (arg1)); } @@ -1196,7 +1196,7 @@ static void _call_emitter_metaDataAvailableChanged_864 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QAudioDecoder_Adaptor *)cls)->emitter_QAudioDecoder_metaDataAvailableChanged_864 (arg1); } @@ -1230,8 +1230,8 @@ static void _call_emitter_metaDataChanged_4036 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ((QAudioDecoder_Adaptor *)cls)->emitter_QAudioDecoder_metaDataChanged_4036 (arg1, arg2); } @@ -1249,7 +1249,7 @@ static void _call_emitter_notifyIntervalChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QAudioDecoder_Adaptor *)cls)->emitter_QAudioDecoder_notifyIntervalChanged_767 (arg1); } @@ -1267,7 +1267,7 @@ static void _call_emitter_positionChanged_986 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ((QAudioDecoder_Adaptor *)cls)->emitter_QAudioDecoder_positionChanged_986 (arg1); } @@ -1285,7 +1285,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAudioDecoder_Adaptor *)cls)->fp_QAudioDecoder_receivers_c1731 (arg1)); } @@ -1303,7 +1303,7 @@ static void _call_fp_removePropertyWatch_2309 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray const &arg1 = args.read (heap); + QByteArray const &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoder_Adaptor *)cls)->fp_QAudioDecoder_removePropertyWatch_2309 (arg1); } @@ -1383,7 +1383,7 @@ static void _call_emitter_stateChanged_2338 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAudioDecoder_Adaptor *)cls)->emitter_QAudioDecoder_stateChanged_2338 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoderControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoderControl.cc index b2a7ae5cf..ab34d1db2 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoderControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDecoderControl.cc @@ -147,7 +147,7 @@ static void _call_f_setAudioFormat_2509 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoderControl *)cls)->setAudioFormat (arg1); } @@ -167,7 +167,7 @@ static void _call_f_setSourceDevice_1447 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoderControl *)cls)->setSourceDevice (arg1); } @@ -187,7 +187,7 @@ static void _call_f_setSourceFilename_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioDecoderControl *)cls)->setSourceFilename (arg1); } @@ -288,9 +288,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioDecoderControl::tr (arg1, arg2, arg3)); } @@ -313,9 +313,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioDecoderControl::trUtf8 (arg1, arg2, arg3)); } @@ -833,7 +833,7 @@ static void _call_emitter_bufferAvailableChanged_864 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QAudioDecoderControl_Adaptor *)cls)->emitter_QAudioDecoderControl_bufferAvailableChanged_864 (arg1); } @@ -913,7 +913,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAudioDecoderControl_Adaptor *)cls)->emitter_QAudioDecoderControl_destroyed_1302 (arg1); } @@ -974,7 +974,7 @@ static void _call_emitter_durationChanged_986 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ((QAudioDecoderControl_Adaptor *)cls)->emitter_QAudioDecoderControl_durationChanged_986 (arg1); } @@ -994,8 +994,8 @@ static void _call_emitter_error_2684 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ((QAudioDecoderControl_Adaptor *)cls)->emitter_QAudioDecoderControl_error_2684 (arg1, arg2); } @@ -1076,7 +1076,7 @@ static void _call_emitter_formatChanged_2509 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); ((QAudioDecoderControl_Adaptor *)cls)->emitter_QAudioDecoderControl_formatChanged_2509 (arg1); } @@ -1094,7 +1094,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioDecoderControl_Adaptor *)cls)->fp_QAudioDecoderControl_isSignalConnected_c2394 (arg1)); } @@ -1131,7 +1131,7 @@ static void _call_emitter_positionChanged_986 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ((QAudioDecoderControl_Adaptor *)cls)->emitter_QAudioDecoderControl_positionChanged_986 (arg1); } @@ -1168,7 +1168,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAudioDecoderControl_Adaptor *)cls)->fp_QAudioDecoderControl_receivers_c1731 (arg1)); } @@ -1377,7 +1377,7 @@ static void _call_emitter_stateChanged_2338 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAudioDecoderControl_Adaptor *)cls)->emitter_QAudioDecoderControl_stateChanged_2338 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDeviceInfo.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDeviceInfo.cc index 3c988c4ef..02b52c9d8 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDeviceInfo.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioDeviceInfo.cc @@ -66,7 +66,7 @@ static void _call_ctor_QAudioDeviceInfo_2880 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioDeviceInfo &arg1 = args.read (heap); + const QAudioDeviceInfo &arg1 = gsi::arg_reader() (args, heap); ret.write (new QAudioDeviceInfo (arg1)); } @@ -100,7 +100,7 @@ static void _call_f_isFormatSupported_c2509 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioDeviceInfo *)cls)->isFormatSupported (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_nearestFormat_c2509 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAudioFormat)((QAudioDeviceInfo *)cls)->nearestFormat (arg1)); } @@ -153,7 +153,7 @@ static void _call_f_operator_excl__eq__c2880 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioDeviceInfo &arg1 = args.read (heap); + const QAudioDeviceInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioDeviceInfo *)cls)->operator!= (arg1)); } @@ -172,7 +172,7 @@ static void _call_f_operator_eq__2880 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioDeviceInfo &arg1 = args.read (heap); + const QAudioDeviceInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAudioDeviceInfo &)((QAudioDeviceInfo *)cls)->operator= (arg1)); } @@ -191,7 +191,7 @@ static void _call_f_operator_eq__eq__c2880 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioDeviceInfo &arg1 = args.read (heap); + const QAudioDeviceInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioDeviceInfo *)cls)->operator== (arg1)); } @@ -315,7 +315,7 @@ static void _call_f_availableDevices_1520 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QList)QAudioDeviceInfo::availableDevices (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettings.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettings.cc index 5a7b9c09b..34244f997 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettings.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettings.cc @@ -65,7 +65,7 @@ static void _call_ctor_QAudioEncoderSettings_3445 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioEncoderSettings &arg1 = args.read (heap); + const QAudioEncoderSettings &arg1 = gsi::arg_reader() (args, heap); ret.write (new QAudioEncoderSettings (arg1)); } @@ -144,7 +144,7 @@ static void _call_f_encodingOption_c2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QAudioEncoderSettings *)cls)->encodingOption (arg1)); } @@ -193,7 +193,7 @@ static void _call_f_operator_excl__eq__c3445 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioEncoderSettings &arg1 = args.read (heap); + const QAudioEncoderSettings &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioEncoderSettings *)cls)->operator!= (arg1)); } @@ -212,7 +212,7 @@ static void _call_f_operator_eq__3445 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioEncoderSettings &arg1 = args.read (heap); + const QAudioEncoderSettings &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAudioEncoderSettings &)((QAudioEncoderSettings *)cls)->operator= (arg1)); } @@ -231,7 +231,7 @@ static void _call_f_operator_eq__eq__c3445 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioEncoderSettings &arg1 = args.read (heap); + const QAudioEncoderSettings &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioEncoderSettings *)cls)->operator== (arg1)); } @@ -280,7 +280,7 @@ static void _call_f_setBitRate_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioEncoderSettings *)cls)->setBitRate (arg1); } @@ -300,7 +300,7 @@ static void _call_f_setChannelCount_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioEncoderSettings *)cls)->setChannelCount (arg1); } @@ -320,7 +320,7 @@ static void _call_f_setCodec_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioEncoderSettings *)cls)->setCodec (arg1); } @@ -340,7 +340,7 @@ static void _call_f_setEncodingMode_2864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioEncoderSettings *)cls)->setEncodingMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -362,8 +362,8 @@ static void _call_f_setEncodingOption_4036 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioEncoderSettings *)cls)->setEncodingOption (arg1, arg2); } @@ -383,7 +383,7 @@ static void _call_f_setEncodingOptions_3508 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMap &arg1 = args.read & > (heap); + const QMap &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioEncoderSettings *)cls)->setEncodingOptions (arg1); } @@ -403,7 +403,7 @@ static void _call_f_setQuality_3220 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioEncoderSettings *)cls)->setQuality (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -423,7 +423,7 @@ static void _call_f_setSampleRate_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioEncoderSettings *)cls)->setSampleRate (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettingsControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettingsControl.cc index b2bc7fdc5..34d33dda4 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettingsControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioEncoderSettingsControl.cc @@ -85,7 +85,7 @@ static void _call_f_codecDescription_c2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAudioEncoderSettingsControl *)cls)->codecDescription (arg1)); } @@ -104,7 +104,7 @@ static void _call_f_setAudioSettings_3445 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioEncoderSettings &arg1 = args.read (heap); + const QAudioEncoderSettings &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioEncoderSettingsControl *)cls)->setAudioSettings (arg1); } @@ -141,8 +141,8 @@ static void _call_f_supportedSampleRates_c4387 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioEncoderSettings &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QAudioEncoderSettings &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QAudioEncoderSettingsControl *)cls)->supportedSampleRates (arg1, arg2)); } @@ -165,9 +165,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioEncoderSettingsControl::tr (arg1, arg2, arg3)); } @@ -190,9 +190,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioEncoderSettingsControl::trUtf8 (arg1, arg2, arg3)); } @@ -564,7 +564,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAudioEncoderSettingsControl_Adaptor *)cls)->emitter_QAudioEncoderSettingsControl_destroyed_1302 (arg1); } @@ -655,7 +655,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioEncoderSettingsControl_Adaptor *)cls)->fp_QAudioEncoderSettingsControl_isSignalConnected_c2394 (arg1)); } @@ -673,7 +673,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAudioEncoderSettingsControl_Adaptor *)cls)->fp_QAudioEncoderSettingsControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioFormat.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioFormat.cc index 864021cb8..c091b1fd0 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioFormat.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioFormat.cc @@ -65,7 +65,7 @@ static void _call_ctor_QAudioFormat_2509 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); ret.write (new QAudioFormat (arg1)); } @@ -99,7 +99,7 @@ static void _call_f_bytesForDuration_c986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((qint32)((QAudioFormat *)cls)->bytesForDuration (arg1)); } @@ -118,7 +118,7 @@ static void _call_f_bytesForFrames_c981 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint32 arg1 = args.read (heap); + qint32 arg1 = gsi::arg_reader() (args, heap); ret.write ((qint32)((QAudioFormat *)cls)->bytesForFrames (arg1)); } @@ -182,7 +182,7 @@ static void _call_f_durationForBytes_c981 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint32 arg1 = args.read (heap); + qint32 arg1 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QAudioFormat *)cls)->durationForBytes (arg1)); } @@ -201,7 +201,7 @@ static void _call_f_durationForFrames_c981 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint32 arg1 = args.read (heap); + qint32 arg1 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QAudioFormat *)cls)->durationForFrames (arg1)); } @@ -220,7 +220,7 @@ static void _call_f_framesForBytes_c981 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint32 arg1 = args.read (heap); + qint32 arg1 = gsi::arg_reader() (args, heap); ret.write ((qint32)((QAudioFormat *)cls)->framesForBytes (arg1)); } @@ -239,7 +239,7 @@ static void _call_f_framesForDuration_c986 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((qint32)((QAudioFormat *)cls)->framesForDuration (arg1)); } @@ -273,7 +273,7 @@ static void _call_f_operator_excl__eq__c2509 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioFormat *)cls)->operator!= (arg1)); } @@ -292,7 +292,7 @@ static void _call_f_operator_eq__2509 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAudioFormat &)((QAudioFormat *)cls)->operator= (arg1)); } @@ -311,7 +311,7 @@ static void _call_f_operator_eq__eq__c2509 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args.read (heap); + const QAudioFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioFormat *)cls)->operator== (arg1)); } @@ -375,7 +375,7 @@ static void _call_f_setByteOrder_2339 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioFormat *)cls)->setByteOrder (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -395,7 +395,7 @@ static void _call_f_setChannelCount_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioFormat *)cls)->setChannelCount (arg1); } @@ -415,7 +415,7 @@ static void _call_f_setCodec_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioFormat *)cls)->setCodec (arg1); } @@ -435,7 +435,7 @@ static void _call_f_setSampleRate_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioFormat *)cls)->setSampleRate (arg1); } @@ -455,7 +455,7 @@ static void _call_f_setSampleSize_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioFormat *)cls)->setSampleSize (arg1); } @@ -475,7 +475,7 @@ static void _call_f_setSampleType_2776 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioFormat *)cls)->setSampleType (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInput.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInput.cc index 37bc1c78d..a61c0c391 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInput.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInput.cc @@ -224,7 +224,7 @@ static void _call_f_setBufferSize_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInput *)cls)->setBufferSize (arg1); } @@ -244,7 +244,7 @@ static void _call_f_setNotifyInterval_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInput *)cls)->setNotifyInterval (arg1); } @@ -264,7 +264,7 @@ static void _call_f_setVolume_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInput *)cls)->setVolume (arg1); } @@ -284,7 +284,7 @@ static void _call_f_start_1447 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInput *)cls)->start (arg1); } @@ -385,9 +385,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioInput::tr (arg1, arg2, arg3)); } @@ -410,9 +410,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioInput::trUtf8 (arg1, arg2, arg3)); } @@ -656,8 +656,8 @@ static void _call_ctor_QAudioInput_Adaptor_3703 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args ? args.read (heap) : (const QAudioFormat &)(QAudioFormat()); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QAudioFormat &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QAudioFormat(), heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAudioInput_Adaptor (arg1, arg2)); } @@ -679,9 +679,9 @@ static void _call_ctor_QAudioInput_Adaptor_6475 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioDeviceInfo &arg1 = args.read (heap); - const QAudioFormat &arg2 = args ? args.read (heap) : (const QAudioFormat &)(QAudioFormat()); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + const QAudioDeviceInfo &arg1 = gsi::arg_reader() (args, heap); + const QAudioFormat &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QAudioFormat(), heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAudioInput_Adaptor (arg1, arg2, arg3)); } @@ -747,7 +747,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAudioInput_Adaptor *)cls)->emitter_QAudioInput_destroyed_1302 (arg1); } @@ -838,7 +838,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioInput_Adaptor *)cls)->fp_QAudioInput_isSignalConnected_c2394 (arg1)); } @@ -870,7 +870,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAudioInput_Adaptor *)cls)->fp_QAudioInput_receivers_c1731 (arg1)); } @@ -916,7 +916,7 @@ static void _call_emitter_stateChanged_1644 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAudioInput_Adaptor *)cls)->emitter_QAudioInput_stateChanged_1644 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInputSelectorControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInputSelectorControl.cc index 1ccc9c7a8..3ffdf9f00 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInputSelectorControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioInputSelectorControl.cc @@ -114,7 +114,7 @@ static void _call_f_inputDescription_c2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAudioInputSelectorControl *)cls)->inputDescription (arg1)); } @@ -133,7 +133,7 @@ static void _call_f_setActiveInput_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioInputSelectorControl *)cls)->setActiveInput (arg1); } @@ -157,9 +157,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioInputSelectorControl::tr (arg1, arg2, arg3)); } @@ -182,9 +182,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioInputSelectorControl::trUtf8 (arg1, arg2, arg3)); } @@ -497,7 +497,7 @@ static void _call_emitter_activeInputChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QAudioInputSelectorControl_Adaptor *)cls)->emitter_QAudioInputSelectorControl_activeInputChanged_2025 (arg1); } @@ -615,7 +615,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAudioInputSelectorControl_Adaptor *)cls)->emitter_QAudioInputSelectorControl_destroyed_1302 (arg1); } @@ -729,7 +729,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioInputSelectorControl_Adaptor *)cls)->fp_QAudioInputSelectorControl_isSignalConnected_c2394 (arg1)); } @@ -747,7 +747,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAudioInputSelectorControl_Adaptor *)cls)->fp_QAudioInputSelectorControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutput.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutput.cc index 5ef6dfedd..62dce98a1 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutput.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutput.cc @@ -239,7 +239,7 @@ static void _call_f_setBufferSize_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutput *)cls)->setBufferSize (arg1); } @@ -259,7 +259,7 @@ static void _call_f_setCategory_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutput *)cls)->setCategory (arg1); } @@ -279,7 +279,7 @@ static void _call_f_setNotifyInterval_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutput *)cls)->setNotifyInterval (arg1); } @@ -299,7 +299,7 @@ static void _call_f_setVolume_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutput *)cls)->setVolume (arg1); } @@ -319,7 +319,7 @@ static void _call_f_start_1447 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutput *)cls)->start (arg1); } @@ -420,9 +420,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioOutput::tr (arg1, arg2, arg3)); } @@ -445,9 +445,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioOutput::trUtf8 (arg1, arg2, arg3)); } @@ -693,8 +693,8 @@ static void _call_ctor_QAudioOutput_Adaptor_3703 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioFormat &arg1 = args ? args.read (heap) : (const QAudioFormat &)(QAudioFormat()); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QAudioFormat &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QAudioFormat(), heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAudioOutput_Adaptor (arg1, arg2)); } @@ -716,9 +716,9 @@ static void _call_ctor_QAudioOutput_Adaptor_6475 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioDeviceInfo &arg1 = args.read (heap); - const QAudioFormat &arg2 = args ? args.read (heap) : (const QAudioFormat &)(QAudioFormat()); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + const QAudioDeviceInfo &arg1 = gsi::arg_reader() (args, heap); + const QAudioFormat &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QAudioFormat(), heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAudioOutput_Adaptor (arg1, arg2, arg3)); } @@ -784,7 +784,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAudioOutput_Adaptor *)cls)->emitter_QAudioOutput_destroyed_1302 (arg1); } @@ -875,7 +875,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioOutput_Adaptor *)cls)->fp_QAudioOutput_isSignalConnected_c2394 (arg1)); } @@ -907,7 +907,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAudioOutput_Adaptor *)cls)->fp_QAudioOutput_receivers_c1731 (arg1)); } @@ -953,7 +953,7 @@ static void _call_emitter_stateChanged_1644 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAudioOutput_Adaptor *)cls)->emitter_QAudioOutput_stateChanged_1644 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutputSelectorControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutputSelectorControl.cc index 1aa487e13..db58fe4d6 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutputSelectorControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioOutputSelectorControl.cc @@ -114,7 +114,7 @@ static void _call_f_outputDescription_c2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAudioOutputSelectorControl *)cls)->outputDescription (arg1)); } @@ -133,7 +133,7 @@ static void _call_f_setActiveOutput_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioOutputSelectorControl *)cls)->setActiveOutput (arg1); } @@ -157,9 +157,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioOutputSelectorControl::tr (arg1, arg2, arg3)); } @@ -182,9 +182,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioOutputSelectorControl::trUtf8 (arg1, arg2, arg3)); } @@ -497,7 +497,7 @@ static void _call_emitter_activeOutputChanged_2025 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QAudioOutputSelectorControl_Adaptor *)cls)->emitter_QAudioOutputSelectorControl_activeOutputChanged_2025 (arg1); } @@ -615,7 +615,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAudioOutputSelectorControl_Adaptor *)cls)->emitter_QAudioOutputSelectorControl_destroyed_1302 (arg1); } @@ -706,7 +706,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioOutputSelectorControl_Adaptor *)cls)->fp_QAudioOutputSelectorControl_isSignalConnected_c2394 (arg1)); } @@ -747,7 +747,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAudioOutputSelectorControl_Adaptor *)cls)->fp_QAudioOutputSelectorControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioProbe.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioProbe.cc index 43d06d241..e01f1a02d 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioProbe.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioProbe.cc @@ -87,7 +87,7 @@ static void _call_f_setSource_1782 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaObject *arg1 = args.read (heap); + QMediaObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioProbe *)cls)->setSource (arg1)); } @@ -106,7 +106,7 @@ static void _call_f_setSource_2005 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaRecorder *arg1 = args.read (heap); + QMediaRecorder *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioProbe *)cls)->setSource (arg1)); } @@ -129,9 +129,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioProbe::tr (arg1, arg2, arg3)); } @@ -154,9 +154,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioProbe::trUtf8 (arg1, arg2, arg3)); } @@ -358,7 +358,7 @@ static void _call_ctor_QAudioProbe_Adaptor_1302 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAudioProbe_Adaptor (arg1)); } @@ -376,7 +376,7 @@ static void _call_emitter_audioBufferProbed_2494 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioBuffer &arg1 = args.read (heap); + const QAudioBuffer &arg1 = gsi::arg_reader() (args, heap); ((QAudioProbe_Adaptor *)cls)->emitter_QAudioProbe_audioBufferProbed_2494 (arg1); } @@ -442,7 +442,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAudioProbe_Adaptor *)cls)->emitter_QAudioProbe_destroyed_1302 (arg1); } @@ -547,7 +547,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioProbe_Adaptor *)cls)->fp_QAudioProbe_isSignalConnected_c2394 (arg1)); } @@ -565,7 +565,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAudioProbe_Adaptor *)cls)->fp_QAudioProbe_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRecorder.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRecorder.cc index 70d780500..f9a135706 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRecorder.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioRecorder.cc @@ -89,7 +89,7 @@ static void _call_f_audioInputDescription_c2025 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAudioRecorder *)cls)->audioInputDescription (arg1)); } @@ -138,7 +138,7 @@ static void _call_f_setAudioInput_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAudioRecorder *)cls)->setAudioInput (arg1); } @@ -162,9 +162,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioRecorder::tr (arg1, arg2, arg3)); } @@ -187,9 +187,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioRecorder::trUtf8 (arg1, arg2, arg3)); } @@ -516,7 +516,7 @@ static void _call_ctor_QAudioRecorder_Adaptor_1302 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAudioRecorder_Adaptor (arg1)); } @@ -534,7 +534,7 @@ static void _call_emitter_actualLocationChanged_1701 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ((QAudioRecorder_Adaptor *)cls)->emitter_QAudioRecorder_actualLocationChanged_1701 (arg1); } @@ -552,7 +552,7 @@ static void _call_emitter_audioInputChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QAudioRecorder_Adaptor *)cls)->emitter_QAudioRecorder_audioInputChanged_2025 (arg1); } @@ -570,7 +570,7 @@ static void _call_emitter_availabilityChanged_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QAudioRecorder_Adaptor *)cls)->emitter_QAudioRecorder_availabilityChanged_864 (arg1); } @@ -588,7 +588,7 @@ static void _call_emitter_availabilityChanged_3555 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAudioRecorder_Adaptor *)cls)->emitter_QAudioRecorder_availabilityChanged_3555 (arg1); } @@ -668,7 +668,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAudioRecorder_Adaptor *)cls)->emitter_QAudioRecorder_destroyed_1302 (arg1); } @@ -710,7 +710,7 @@ static void _call_emitter_durationChanged_986 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ((QAudioRecorder_Adaptor *)cls)->emitter_QAudioRecorder_durationChanged_986 (arg1); } @@ -728,7 +728,7 @@ static void _call_emitter_error_2457 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAudioRecorder_Adaptor *)cls)->emitter_QAudioRecorder_error_2457 (arg1); } @@ -795,7 +795,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioRecorder_Adaptor *)cls)->fp_QAudioRecorder_isSignalConnected_c2394 (arg1)); } @@ -832,7 +832,7 @@ static void _call_emitter_metaDataAvailableChanged_864 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QAudioRecorder_Adaptor *)cls)->emitter_QAudioRecorder_metaDataAvailableChanged_864 (arg1); } @@ -866,8 +866,8 @@ static void _call_emitter_metaDataChanged_4036 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ((QAudioRecorder_Adaptor *)cls)->emitter_QAudioRecorder_metaDataChanged_4036 (arg1, arg2); } @@ -885,7 +885,7 @@ static void _call_emitter_metaDataWritableChanged_864 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QAudioRecorder_Adaptor *)cls)->emitter_QAudioRecorder_metaDataWritableChanged_864 (arg1); } @@ -903,7 +903,7 @@ static void _call_emitter_mutedChanged_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QAudioRecorder_Adaptor *)cls)->emitter_QAudioRecorder_mutedChanged_864 (arg1); } @@ -921,7 +921,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAudioRecorder_Adaptor *)cls)->fp_QAudioRecorder_receivers_c1731 (arg1)); } @@ -990,7 +990,7 @@ static void _call_emitter_stateChanged_2448 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAudioRecorder_Adaptor *)cls)->emitter_QAudioRecorder_stateChanged_2448 (arg1); } @@ -1008,7 +1008,7 @@ static void _call_emitter_statusChanged_2579 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QAudioRecorder_Adaptor *)cls)->emitter_QAudioRecorder_statusChanged_2579 (arg1); } @@ -1050,7 +1050,7 @@ static void _call_emitter_volumeChanged_1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QAudioRecorder_Adaptor *)cls)->emitter_QAudioRecorder_volumeChanged_1071 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemFactoryInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemFactoryInterface.cc index ec0dd89ac..7883bc75b 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemFactoryInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemFactoryInterface.cc @@ -53,7 +53,7 @@ static void _call_f_availableDevices_c1520 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QList)((QAudioSystemFactoryInterface *)cls)->availableDevices (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -74,8 +74,8 @@ static void _call_f_createDeviceInfo_3721 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QAbstractAudioDeviceInfo *)((QAudioSystemFactoryInterface *)cls)->createDeviceInfo (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -94,7 +94,7 @@ static void _call_f_createInput_2309 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractAudioInput *)((QAudioSystemFactoryInterface *)cls)->createInput (arg1)); } @@ -113,7 +113,7 @@ static void _call_f_createOutput_2309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractAudioOutput *)((QAudioSystemFactoryInterface *)cls)->createOutput (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc index 8ac50dfb9..e543a1f7f 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQAudioSystemPlugin.cc @@ -72,7 +72,7 @@ static void _call_f_availableDevices_c1520 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QList)((QAudioSystemPlugin *)cls)->availableDevices (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -93,8 +93,8 @@ static void _call_f_createDeviceInfo_3721 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QAbstractAudioDeviceInfo *)((QAudioSystemPlugin *)cls)->createDeviceInfo (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -113,7 +113,7 @@ static void _call_f_createInput_2309 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractAudioInput *)((QAudioSystemPlugin *)cls)->createInput (arg1)); } @@ -132,7 +132,7 @@ static void _call_f_createOutput_2309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractAudioOutput *)((QAudioSystemPlugin *)cls)->createOutput (arg1)); } @@ -155,9 +155,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioSystemPlugin::tr (arg1, arg2, arg3)); } @@ -180,9 +180,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAudioSystemPlugin::trUtf8 (arg1, arg2, arg3)); } @@ -489,7 +489,7 @@ static void _call_ctor_QAudioSystemPlugin_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAudioSystemPlugin_Adaptor (arg1)); } @@ -650,7 +650,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAudioSystemPlugin_Adaptor *)cls)->emitter_QAudioSystemPlugin_destroyed_1302 (arg1); } @@ -741,7 +741,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAudioSystemPlugin_Adaptor *)cls)->fp_QAudioSystemPlugin_isSignalConnected_c2394 (arg1)); } @@ -759,7 +759,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAudioSystemPlugin_Adaptor *)cls)->fp_QAudioSystemPlugin_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc index ef300ade4..139ff3585 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera.cc @@ -172,7 +172,7 @@ static void _call_f_isCaptureModeSupported_c3027 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QCamera *)cls)->isCaptureModeSupported (arg1)); } @@ -222,7 +222,7 @@ static void _call_f_lockStatus_c2029 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QCamera *)cls)->lockStatus (qt_gsi::QtToCppAdaptor(arg1).cref()))); } @@ -272,7 +272,7 @@ static void _call_f_searchAndLock_2725 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera *)cls)->searchAndLock (arg1); } @@ -292,7 +292,7 @@ static void _call_f_setCaptureMode_3027 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera *)cls)->setCaptureMode (arg1); } @@ -312,7 +312,7 @@ static void _call_f_setViewfinder_1818 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QVideoWidget *arg1 = args.read (heap); + QVideoWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera *)cls)->setViewfinder (arg1); } @@ -332,7 +332,7 @@ static void _call_f_setViewfinder_2422 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsVideoItem *arg1 = args.read (heap); + QGraphicsVideoItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera *)cls)->setViewfinder (arg1); } @@ -352,7 +352,7 @@ static void _call_f_setViewfinder_2739 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractVideoSurface *arg1 = args.read (heap); + QAbstractVideoSurface *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera *)cls)->setViewfinder (arg1); } @@ -372,7 +372,7 @@ static void _call_f_setViewfinderSettings_3871 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraViewfinderSettings &arg1 = args.read (heap); + const QCameraViewfinderSettings &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera *)cls)->setViewfinderSettings (arg1); } @@ -469,7 +469,7 @@ static void _call_f_supportedViewfinderFrameRateRanges_c3871 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraViewfinderSettings &arg1 = args ? args.read (heap) : (const QCameraViewfinderSettings &)(QCameraViewfinderSettings()); + const QCameraViewfinderSettings &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QCameraViewfinderSettings(), heap); ret.write > ((QList)((QCamera *)cls)->supportedViewfinderFrameRateRanges (arg1)); } @@ -488,7 +488,7 @@ static void _call_f_supportedViewfinderPixelFormats_c3871 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraViewfinderSettings &arg1 = args ? args.read (heap) : (const QCameraViewfinderSettings &)(QCameraViewfinderSettings()); + const QCameraViewfinderSettings &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QCameraViewfinderSettings(), heap); ret.write > ((QList)((QCamera *)cls)->supportedViewfinderPixelFormats (arg1)); } @@ -507,7 +507,7 @@ static void _call_f_supportedViewfinderResolutions_c3871 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraViewfinderSettings &arg1 = args ? args.read (heap) : (const QCameraViewfinderSettings &)(QCameraViewfinderSettings()); + const QCameraViewfinderSettings &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QCameraViewfinderSettings(), heap); ret.write > ((QList)((QCamera *)cls)->supportedViewfinderResolutions (arg1)); } @@ -526,7 +526,7 @@ static void _call_f_supportedViewfinderSettings_c3871 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraViewfinderSettings &arg1 = args ? args.read (heap) : (const QCameraViewfinderSettings &)(QCameraViewfinderSettings()); + const QCameraViewfinderSettings &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QCameraViewfinderSettings(), heap); ret.write > ((QList)((QCamera *)cls)->supportedViewfinderSettings (arg1)); } @@ -577,7 +577,7 @@ static void _call_f_unlock_2725 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera *)cls)->unlock (arg1); } @@ -627,7 +627,7 @@ static void _call_f_deviceDescription_2309 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)QCamera::deviceDescription (arg1)); } @@ -650,9 +650,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCamera::tr (arg1, arg2, arg3)); } @@ -675,9 +675,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCamera::trUtf8 (arg1, arg2, arg3)); } @@ -1120,7 +1120,7 @@ static void _call_ctor_QCamera_Adaptor_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCamera_Adaptor (arg1)); } @@ -1140,8 +1140,8 @@ static void _call_ctor_QCamera_Adaptor_3503 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCamera_Adaptor (arg1, arg2)); } @@ -1161,8 +1161,8 @@ static void _call_ctor_QCamera_Adaptor_3569 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraInfo &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QCameraInfo &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCamera_Adaptor (arg1, arg2)); } @@ -1182,8 +1182,8 @@ static void _call_ctor_QCamera_Adaptor_3265 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCamera_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1201,7 +1201,7 @@ static void _call_fp_addPropertyWatch_2309 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray const &arg1 = args.read (heap); + QByteArray const &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera_Adaptor *)cls)->fp_QCamera_addPropertyWatch_2309 (arg1); } @@ -1239,7 +1239,7 @@ static void _call_emitter_availabilityChanged_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QCamera_Adaptor *)cls)->emitter_QCamera_availabilityChanged_864 (arg1); } @@ -1257,7 +1257,7 @@ static void _call_emitter_availabilityChanged_3555 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QCamera_Adaptor *)cls)->emitter_QCamera_availabilityChanged_3555 (arg1); } @@ -1298,7 +1298,7 @@ static void _call_emitter_captureModeChanged_3027 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ((QCamera_Adaptor *)cls)->emitter_QCamera_captureModeChanged_3027 (arg1); } @@ -1364,7 +1364,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCamera_Adaptor *)cls)->emitter_QCamera_destroyed_1302 (arg1); } @@ -1406,7 +1406,7 @@ static void _call_emitter_error_1740 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QCamera_Adaptor *)cls)->emitter_QCamera_error_1740 (arg1); } @@ -1492,7 +1492,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCamera_Adaptor *)cls)->fp_QCamera_isSignalConnected_c2394 (arg1)); } @@ -1526,8 +1526,8 @@ static void _call_emitter_lockStatusChanged_4956 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ((QCamera_Adaptor *)cls)->emitter_QCamera_lockStatusChanged_4956 (arg1, arg2); } @@ -1549,9 +1549,9 @@ static void _call_emitter_lockStatusChanged_6877 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ((QCamera_Adaptor *)cls)->emitter_QCamera_lockStatusChanged_6877 (arg1, arg2, arg3); } @@ -1583,7 +1583,7 @@ static void _call_emitter_metaDataAvailableChanged_864 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QCamera_Adaptor *)cls)->emitter_QCamera_metaDataAvailableChanged_864 (arg1); } @@ -1617,8 +1617,8 @@ static void _call_emitter_metaDataChanged_4036 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ((QCamera_Adaptor *)cls)->emitter_QCamera_metaDataChanged_4036 (arg1, arg2); } @@ -1636,7 +1636,7 @@ static void _call_emitter_notifyIntervalChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QCamera_Adaptor *)cls)->emitter_QCamera_notifyIntervalChanged_767 (arg1); } @@ -1654,7 +1654,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCamera_Adaptor *)cls)->fp_QCamera_receivers_c1731 (arg1)); } @@ -1672,7 +1672,7 @@ static void _call_fp_removePropertyWatch_2309 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray const &arg1 = args.read (heap); + QByteArray const &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCamera_Adaptor *)cls)->fp_QCamera_removePropertyWatch_2309 (arg1); } @@ -1738,7 +1738,7 @@ static void _call_emitter_stateChanged_1731 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QCamera_Adaptor *)cls)->emitter_QCamera_stateChanged_1731 (arg1); } @@ -1756,7 +1756,7 @@ static void _call_emitter_statusChanged_1862 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QCamera_Adaptor *)cls)->emitter_QCamera_statusChanged_1862 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureBufferFormatControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureBufferFormatControl.cc index 43cbfab24..8a22e51ce 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureBufferFormatControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureBufferFormatControl.cc @@ -84,7 +84,7 @@ static void _call_f_setBufferFormat_2758 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraCaptureBufferFormatControl *)cls)->setBufferFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -123,9 +123,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraCaptureBufferFormatControl::tr (arg1, arg2, arg3)); } @@ -148,9 +148,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraCaptureBufferFormatControl::trUtf8 (arg1, arg2, arg3)); } @@ -421,7 +421,7 @@ static void _call_emitter_bufferFormatChanged_2758 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QCameraCaptureBufferFormatControl_Adaptor *)cls)->emitter_QCameraCaptureBufferFormatControl_bufferFormatChanged_2758 (arg1); } @@ -487,7 +487,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCameraCaptureBufferFormatControl_Adaptor *)cls)->emitter_QCameraCaptureBufferFormatControl_destroyed_1302 (arg1); } @@ -578,7 +578,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraCaptureBufferFormatControl_Adaptor *)cls)->fp_QCameraCaptureBufferFormatControl_isSignalConnected_c2394 (arg1)); } @@ -596,7 +596,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraCaptureBufferFormatControl_Adaptor *)cls)->fp_QCameraCaptureBufferFormatControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureDestinationControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureDestinationControl.cc index f233c005b..f53d5234e 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureDestinationControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraCaptureDestinationControl.cc @@ -84,7 +84,7 @@ static void _call_f_isCaptureDestinationSupported_c4999 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QCameraCaptureDestinationControl *)cls)->isCaptureDestinationSupported (arg1)); } @@ -103,7 +103,7 @@ static void _call_f_setCaptureDestination_4999 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraCaptureDestinationControl *)cls)->setCaptureDestination (arg1); } @@ -127,9 +127,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraCaptureDestinationControl::tr (arg1, arg2, arg3)); } @@ -152,9 +152,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraCaptureDestinationControl::trUtf8 (arg1, arg2, arg3)); } @@ -426,7 +426,7 @@ static void _call_emitter_captureDestinationChanged_4999 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ((QCameraCaptureDestinationControl_Adaptor *)cls)->emitter_QCameraCaptureDestinationControl_captureDestinationChanged_4999 (arg1); } @@ -492,7 +492,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCameraCaptureDestinationControl_Adaptor *)cls)->emitter_QCameraCaptureDestinationControl_destroyed_1302 (arg1); } @@ -606,7 +606,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraCaptureDestinationControl_Adaptor *)cls)->fp_QCameraCaptureDestinationControl_isSignalConnected_c2394 (arg1)); } @@ -624,7 +624,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraCaptureDestinationControl_Adaptor *)cls)->fp_QCameraCaptureDestinationControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraControl.cc index d78f9a1f5..c7664a1e1 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraControl.cc @@ -71,8 +71,8 @@ static void _call_f_canChangeProperty_c5578 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraControl *)cls)->canChangeProperty (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -106,7 +106,7 @@ static void _call_f_isCaptureModeSupported_c3027 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QCameraControl *)cls)->isCaptureModeSupported (arg1)); } @@ -125,7 +125,7 @@ static void _call_f_setCaptureMode_3027 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraControl *)cls)->setCaptureMode (arg1); } @@ -145,7 +145,7 @@ static void _call_f_setState_1731 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraControl *)cls)->setState (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -199,9 +199,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraControl::tr (arg1, arg2, arg3)); } @@ -224,9 +224,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraControl::trUtf8 (arg1, arg2, arg3)); } @@ -616,7 +616,7 @@ static void _call_emitter_captureModeChanged_3027 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ((QCameraControl_Adaptor *)cls)->emitter_QCameraControl_captureModeChanged_3027 (arg1); } @@ -682,7 +682,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCameraControl_Adaptor *)cls)->emitter_QCameraControl_destroyed_1302 (arg1); } @@ -726,8 +726,8 @@ static void _call_emitter_error_2684 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ((QCameraControl_Adaptor *)cls)->emitter_QCameraControl_error_2684 (arg1, arg2); } @@ -817,7 +817,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraControl_Adaptor *)cls)->fp_QCameraControl_isSignalConnected_c2394 (arg1)); } @@ -835,7 +835,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraControl_Adaptor *)cls)->fp_QCameraControl_receivers_c1731 (arg1)); } @@ -948,7 +948,7 @@ static void _call_emitter_stateChanged_1731 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QCameraControl_Adaptor *)cls)->emitter_QCameraControl_stateChanged_1731 (arg1); } @@ -985,7 +985,7 @@ static void _call_emitter_statusChanged_1862 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QCameraControl_Adaptor *)cls)->emitter_QCameraControl_statusChanged_1862 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposure.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposure.cc index 9bbd68fc5..47c559c8f 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposure.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposure.cc @@ -143,7 +143,7 @@ static void _call_f_isExposureModeSupported_c3325 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraExposure *)cls)->isExposureModeSupported (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -162,7 +162,7 @@ static void _call_f_isFlashModeSupported_c3656 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QCameraExposure *)cls)->isFlashModeSupported (arg1)); } @@ -196,7 +196,7 @@ static void _call_f_isMeteringModeSupported_c3293 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraExposure *)cls)->isMeteringModeSupported (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -338,7 +338,7 @@ static void _call_f_setExposureCompensation_1071 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraExposure *)cls)->setExposureCompensation (arg1); } @@ -358,7 +358,7 @@ static void _call_f_setExposureMode_3325 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraExposure *)cls)->setExposureMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -378,7 +378,7 @@ static void _call_f_setFlashMode_3656 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraExposure *)cls)->setFlashMode (arg1); } @@ -398,7 +398,7 @@ static void _call_f_setManualAperture_1071 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraExposure *)cls)->setManualAperture (arg1); } @@ -418,7 +418,7 @@ static void _call_f_setManualIsoSensitivity_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraExposure *)cls)->setManualIsoSensitivity (arg1); } @@ -438,7 +438,7 @@ static void _call_f_setManualShutterSpeed_1071 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraExposure *)cls)->setManualShutterSpeed (arg1); } @@ -458,7 +458,7 @@ static void _call_f_setMeteringMode_3293 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraExposure *)cls)->setMeteringMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -478,7 +478,7 @@ static void _call_f_setSpotMeteringPoint_1986 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraExposure *)cls)->setSpotMeteringPoint (arg1); } @@ -528,7 +528,7 @@ static void _call_f_supportedApertures_c1050 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args ? args.read (heap) : (bool *)(0); + bool *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QCameraExposure *)cls)->supportedApertures (arg1)); } @@ -547,7 +547,7 @@ static void _call_f_supportedIsoSensitivities_c1050 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args ? args.read (heap) : (bool *)(0); + bool *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QCameraExposure *)cls)->supportedIsoSensitivities (arg1)); } @@ -566,7 +566,7 @@ static void _call_f_supportedShutterSpeeds_c1050 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args ? args.read (heap) : (bool *)(0); + bool *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QCameraExposure *)cls)->supportedShutterSpeeds (arg1)); } @@ -589,9 +589,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraExposure::tr (arg1, arg2, arg3)); } @@ -614,9 +614,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraExposure::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposureControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposureControl.cc index 2a3f48e1f..fab87672e 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposureControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraExposureControl.cc @@ -69,7 +69,7 @@ static void _call_f_actualValue_c4602 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCameraExposureControl *)cls)->actualValue (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -88,7 +88,7 @@ static void _call_f_isParameterSupported_c4602 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraExposureControl *)cls)->isParameterSupported (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -107,7 +107,7 @@ static void _call_f_requestedValue_c4602 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCameraExposureControl *)cls)->requestedValue (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -128,8 +128,8 @@ static void _call_f_setValue_6613 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraExposureControl *)cls)->setValue (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -150,8 +150,8 @@ static void _call_f_supportedParameterRange_c5544 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool *arg2 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QCameraExposureControl *)cls)->supportedParameterRange (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -174,9 +174,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraExposureControl::tr (arg1, arg2, arg3)); } @@ -199,9 +199,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraExposureControl::trUtf8 (arg1, arg2, arg3)); } @@ -530,7 +530,7 @@ static void _call_emitter_actualValueChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QCameraExposureControl_Adaptor *)cls)->emitter_QCameraExposureControl_actualValueChanged_767 (arg1); } @@ -596,7 +596,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCameraExposureControl_Adaptor *)cls)->emitter_QCameraExposureControl_destroyed_1302 (arg1); } @@ -710,7 +710,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraExposureControl_Adaptor *)cls)->fp_QCameraExposureControl_isSignalConnected_c2394 (arg1)); } @@ -728,7 +728,7 @@ static void _call_emitter_parameterRangeChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QCameraExposureControl_Adaptor *)cls)->emitter_QCameraExposureControl_parameterRangeChanged_767 (arg1); } @@ -746,7 +746,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraExposureControl_Adaptor *)cls)->fp_QCameraExposureControl_receivers_c1731 (arg1)); } @@ -787,7 +787,7 @@ static void _call_emitter_requestedValueChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QCameraExposureControl_Adaptor *)cls)->emitter_QCameraExposureControl_requestedValueChanged_767 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFeedbackControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFeedbackControl.cc index e4dd4a6c9..499deed05 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFeedbackControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFeedbackControl.cc @@ -69,7 +69,7 @@ static void _call_f_isEventFeedbackEnabled_c3660 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraFeedbackControl *)cls)->isEventFeedbackEnabled (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -88,7 +88,7 @@ static void _call_f_isEventFeedbackLocked_c3660 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraFeedbackControl *)cls)->isEventFeedbackLocked (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -107,7 +107,7 @@ static void _call_f_resetEventFeedback_3660 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFeedbackControl *)cls)->resetEventFeedback (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -129,8 +129,8 @@ static void _call_f_setEventFeedbackEnabled_4416 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraFeedbackControl *)cls)->setEventFeedbackEnabled (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -151,8 +151,8 @@ static void _call_f_setEventFeedbackSound_5577 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraFeedbackControl *)cls)->setEventFeedbackSound (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -175,9 +175,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraFeedbackControl::tr (arg1, arg2, arg3)); } @@ -200,9 +200,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraFeedbackControl::trUtf8 (arg1, arg2, arg3)); } @@ -535,7 +535,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCameraFeedbackControl_Adaptor *)cls)->emitter_QCameraFeedbackControl_destroyed_1302 (arg1); } @@ -672,7 +672,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraFeedbackControl_Adaptor *)cls)->fp_QCameraFeedbackControl_isSignalConnected_c2394 (arg1)); } @@ -690,7 +690,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraFeedbackControl_Adaptor *)cls)->fp_QCameraFeedbackControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFlashControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFlashControl.cc index 0c1190db9..221997355 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFlashControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFlashControl.cc @@ -84,7 +84,7 @@ static void _call_f_isFlashModeSupported_c3656 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QCameraFlashControl *)cls)->isFlashModeSupported (arg1)); } @@ -118,7 +118,7 @@ static void _call_f_setFlashMode_3656 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFlashControl *)cls)->setFlashMode (arg1); } @@ -142,9 +142,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraFlashControl::tr (arg1, arg2, arg3)); } @@ -167,9 +167,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraFlashControl::trUtf8 (arg1, arg2, arg3)); } @@ -487,7 +487,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCameraFlashControl_Adaptor *)cls)->emitter_QCameraFlashControl_destroyed_1302 (arg1); } @@ -597,7 +597,7 @@ static void _call_emitter_flashReady_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QCameraFlashControl_Adaptor *)cls)->emitter_QCameraFlashControl_flashReady_864 (arg1); } @@ -657,7 +657,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraFlashControl_Adaptor *)cls)->fp_QCameraFlashControl_isSignalConnected_c2394 (arg1)); } @@ -675,7 +675,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraFlashControl_Adaptor *)cls)->fp_QCameraFlashControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocus.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocus.cc index 6c64b3c0b..2b3da50e1 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocus.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocus.cc @@ -159,7 +159,7 @@ static void _call_f_isFocusModeSupported_c3327 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QCameraFocus *)cls)->isFocusModeSupported (arg1)); } @@ -178,7 +178,7 @@ static void _call_f_isFocusPointModeSupported_c3153 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraFocus *)cls)->isFocusPointModeSupported (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -242,7 +242,7 @@ static void _call_f_setCustomFocusPoint_1986 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFocus *)cls)->setCustomFocusPoint (arg1); } @@ -262,7 +262,7 @@ static void _call_f_setFocusMode_3327 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFocus *)cls)->setFocusMode (arg1); } @@ -282,7 +282,7 @@ static void _call_f_setFocusPointMode_3153 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFocus *)cls)->setFocusPointMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -304,8 +304,8 @@ static void _call_f_zoomTo_2034 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFocus *)cls)->zoomTo (arg1, arg2); } @@ -329,9 +329,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraFocus::tr (arg1, arg2, arg3)); } @@ -354,9 +354,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraFocus::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusControl.cc index 403ad58ca..14acdc2ca 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusControl.cc @@ -131,7 +131,7 @@ static void _call_f_isFocusModeSupported_c3327 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QCameraFocusControl *)cls)->isFocusModeSupported (arg1)); } @@ -150,7 +150,7 @@ static void _call_f_isFocusPointModeSupported_c3153 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraFocusControl *)cls)->isFocusPointModeSupported (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -169,7 +169,7 @@ static void _call_f_setCustomFocusPoint_1986 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFocusControl *)cls)->setCustomFocusPoint (arg1); } @@ -189,7 +189,7 @@ static void _call_f_setFocusMode_3327 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFocusControl *)cls)->setFocusMode (arg1); } @@ -209,7 +209,7 @@ static void _call_f_setFocusPointMode_3153 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFocusControl *)cls)->setFocusPointMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -233,9 +233,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraFocusControl::tr (arg1, arg2, arg3)); } @@ -258,9 +258,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraFocusControl::trUtf8 (arg1, arg2, arg3)); } @@ -706,7 +706,7 @@ static void _call_emitter_customFocusPointChanged_1986 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ((QCameraFocusControl_Adaptor *)cls)->emitter_QCameraFocusControl_customFocusPointChanged_1986 (arg1); } @@ -724,7 +724,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCameraFocusControl_Adaptor *)cls)->emitter_QCameraFocusControl_destroyed_1302 (arg1); } @@ -834,7 +834,7 @@ static void _call_emitter_focusModeChanged_3327 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ((QCameraFocusControl_Adaptor *)cls)->emitter_QCameraFocusControl_focusModeChanged_3327 (arg1); } @@ -871,7 +871,7 @@ static void _call_emitter_focusPointModeChanged_3153 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QCameraFocusControl_Adaptor *)cls)->emitter_QCameraFocusControl_focusPointModeChanged_3153 (arg1); } @@ -968,7 +968,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraFocusControl_Adaptor *)cls)->fp_QCameraFocusControl_isSignalConnected_c2394 (arg1)); } @@ -986,7 +986,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraFocusControl_Adaptor *)cls)->fp_QCameraFocusControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusZone.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusZone.cc index 6d671ca77..aa617c611 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusZone.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraFocusZone.cc @@ -68,8 +68,8 @@ static void _call_ctor_QCameraFocusZone_5464 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QCameraFocusZone::Selected)); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QCameraFocusZone::Selected), heap); ret.write (new QCameraFocusZone (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -88,7 +88,7 @@ static void _call_ctor_QCameraFocusZone_2903 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraFocusZone &arg1 = args.read (heap); + const QCameraFocusZone &arg1 = gsi::arg_reader() (args, heap); ret.write (new QCameraFocusZone (arg1)); } @@ -137,7 +137,7 @@ static void _call_f_operator_excl__eq__c2903 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraFocusZone &arg1 = args.read (heap); + const QCameraFocusZone &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraFocusZone *)cls)->operator!= (arg1)); } @@ -156,7 +156,7 @@ static void _call_f_operator_eq__2903 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraFocusZone &arg1 = args.read (heap); + const QCameraFocusZone &arg1 = gsi::arg_reader() (args, heap); ret.write ((QCameraFocusZone &)((QCameraFocusZone *)cls)->operator= (arg1)); } @@ -175,7 +175,7 @@ static void _call_f_operator_eq__eq__c2903 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraFocusZone &arg1 = args.read (heap); + const QCameraFocusZone &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraFocusZone *)cls)->operator== (arg1)); } @@ -194,7 +194,7 @@ static void _call_f_setStatus_3710 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraFocusZone *)cls)->setStatus (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc index 5c64490df..28594e55d 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCapture.cc @@ -120,7 +120,7 @@ static void _call_f_capture_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((int)((QCameraImageCapture *)cls)->capture (arg1)); } @@ -199,7 +199,7 @@ static void _call_f_imageCodecDescription_c2025 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QCameraImageCapture *)cls)->imageCodecDescription (arg1)); } @@ -233,7 +233,7 @@ static void _call_f_isCaptureDestinationSupported_c4999 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QCameraImageCapture *)cls)->isCaptureDestinationSupported (arg1)); } @@ -282,7 +282,7 @@ static void _call_f_setBufferFormat_3453 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageCapture *)cls)->setBufferFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -302,7 +302,7 @@ static void _call_f_setCaptureDestination_4999 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageCapture *)cls)->setCaptureDestination (arg1); } @@ -322,7 +322,7 @@ static void _call_f_setEncodingSettings_3430 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImageEncoderSettings &arg1 = args.read (heap); + const QImageEncoderSettings &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageCapture *)cls)->setEncodingSettings (arg1); } @@ -374,8 +374,8 @@ static void _call_f_supportedResolutions_c4372 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImageEncoderSettings &arg1 = args ? args.read (heap) : (const QImageEncoderSettings &)(QImageEncoderSettings()); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QImageEncoderSettings &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QImageEncoderSettings(), heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QCameraImageCapture *)cls)->supportedResolutions (arg1, arg2)); } @@ -398,9 +398,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraImageCapture::tr (arg1, arg2, arg3)); } @@ -423,9 +423,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraImageCapture::trUtf8 (arg1, arg2, arg3)); } @@ -775,8 +775,8 @@ static void _call_ctor_QCameraImageCapture_Adaptor_2976 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaObject *arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + QMediaObject *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCameraImageCapture_Adaptor (arg1, arg2)); } @@ -794,7 +794,7 @@ static void _call_emitter_bufferFormatChanged_2758 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QCameraImageCapture_Adaptor *)cls)->emitter_QCameraImageCapture_bufferFormatChanged_2758 (arg1); } @@ -812,7 +812,7 @@ static void _call_emitter_captureDestinationChanged_4999 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ((QCameraImageCapture_Adaptor *)cls)->emitter_QCameraImageCapture_captureDestinationChanged_4999 (arg1); } @@ -878,7 +878,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCameraImageCapture_Adaptor *)cls)->emitter_QCameraImageCapture_destroyed_1302 (arg1); } @@ -924,9 +924,9 @@ static void _call_emitter_error_5523 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QString &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ((QCameraImageCapture_Adaptor *)cls)->emitter_QCameraImageCapture_error_5523 (arg1, arg2, arg3); } @@ -995,8 +995,8 @@ static void _call_emitter_imageAvailable_3047 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVideoFrame &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVideoFrame &arg2 = gsi::arg_reader() (args, heap); ((QCameraImageCapture_Adaptor *)cls)->emitter_QCameraImageCapture_imageAvailable_3047 (arg1, arg2); } @@ -1016,8 +1016,8 @@ static void _call_emitter_imageCaptured_2536 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); ((QCameraImageCapture_Adaptor *)cls)->emitter_QCameraImageCapture_imageCaptured_2536 (arg1, arg2); } @@ -1035,7 +1035,7 @@ static void _call_emitter_imageExposed_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QCameraImageCapture_Adaptor *)cls)->emitter_QCameraImageCapture_imageExposed_767 (arg1); } @@ -1057,9 +1057,9 @@ static void _call_emitter_imageMetadataAvailable_4695 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); ((QCameraImageCapture_Adaptor *)cls)->emitter_QCameraImageCapture_imageMetadataAvailable_4695 (arg1, arg2, arg3); } @@ -1079,8 +1079,8 @@ static void _call_emitter_imageSaved_2684 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ((QCameraImageCapture_Adaptor *)cls)->emitter_QCameraImageCapture_imageSaved_2684 (arg1, arg2); } @@ -1098,7 +1098,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraImageCapture_Adaptor *)cls)->fp_QCameraImageCapture_isSignalConnected_c2394 (arg1)); } @@ -1135,7 +1135,7 @@ static void _call_emitter_readyForCaptureChanged_864 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QCameraImageCapture_Adaptor *)cls)->emitter_QCameraImageCapture_readyForCaptureChanged_864 (arg1); } @@ -1153,7 +1153,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraImageCapture_Adaptor *)cls)->fp_QCameraImageCapture_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCaptureControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCaptureControl.cc index ceeb044d6..5c1c06382 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCaptureControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageCaptureControl.cc @@ -87,7 +87,7 @@ static void _call_f_capture_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraImageCaptureControl *)cls)->capture (arg1)); } @@ -136,7 +136,7 @@ static void _call_f_setDriveMode_3320 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageCaptureControl *)cls)->setDriveMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -160,9 +160,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraImageCaptureControl::tr (arg1, arg2, arg3)); } @@ -185,9 +185,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraImageCaptureControl::trUtf8 (arg1, arg2, arg3)); } @@ -607,7 +607,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCameraImageCaptureControl_Adaptor *)cls)->emitter_QCameraImageCaptureControl_destroyed_1302 (arg1); } @@ -672,9 +672,9 @@ static void _call_emitter_error_3343 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ((QCameraImageCaptureControl_Adaptor *)cls)->emitter_QCameraImageCaptureControl_error_3343 (arg1, arg2, arg3); } @@ -743,8 +743,8 @@ static void _call_emitter_imageAvailable_3047 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVideoFrame &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVideoFrame &arg2 = gsi::arg_reader() (args, heap); ((QCameraImageCaptureControl_Adaptor *)cls)->emitter_QCameraImageCaptureControl_imageAvailable_3047 (arg1, arg2); } @@ -764,8 +764,8 @@ static void _call_emitter_imageCaptured_2536 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QImage &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QImage &arg2 = gsi::arg_reader() (args, heap); ((QCameraImageCaptureControl_Adaptor *)cls)->emitter_QCameraImageCaptureControl_imageCaptured_2536 (arg1, arg2); } @@ -783,7 +783,7 @@ static void _call_emitter_imageExposed_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QCameraImageCaptureControl_Adaptor *)cls)->emitter_QCameraImageCaptureControl_imageExposed_767 (arg1); } @@ -805,9 +805,9 @@ static void _call_emitter_imageMetadataAvailable_4695 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); ((QCameraImageCaptureControl_Adaptor *)cls)->emitter_QCameraImageCaptureControl_imageMetadataAvailable_4695 (arg1, arg2, arg3); } @@ -827,8 +827,8 @@ static void _call_emitter_imageSaved_2684 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ((QCameraImageCaptureControl_Adaptor *)cls)->emitter_QCameraImageCaptureControl_imageSaved_2684 (arg1, arg2); } @@ -865,7 +865,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraImageCaptureControl_Adaptor *)cls)->fp_QCameraImageCaptureControl_isSignalConnected_c2394 (arg1)); } @@ -883,7 +883,7 @@ static void _call_emitter_readyForCaptureChanged_864 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QCameraImageCaptureControl_Adaptor *)cls)->emitter_QCameraImageCaptureControl_readyForCaptureChanged_864 (arg1); } @@ -901,7 +901,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraImageCaptureControl_Adaptor *)cls)->fp_QCameraImageCaptureControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessing.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessing.cc index a7f83d932..1911b7ce7 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessing.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessing.cc @@ -127,7 +127,7 @@ static void _call_f_isColorFilterSupported_c3879 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraImageProcessing *)cls)->isColorFilterSupported (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -146,7 +146,7 @@ static void _call_f_isWhiteBalanceModeSupported_c4334 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraImageProcessing *)cls)->isWhiteBalanceModeSupported (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -195,7 +195,7 @@ static void _call_f_setColorFilter_3879 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageProcessing *)cls)->setColorFilter (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -215,7 +215,7 @@ static void _call_f_setContrast_1071 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageProcessing *)cls)->setContrast (arg1); } @@ -235,7 +235,7 @@ static void _call_f_setDenoisingLevel_1071 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageProcessing *)cls)->setDenoisingLevel (arg1); } @@ -255,7 +255,7 @@ static void _call_f_setManualWhiteBalance_1071 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageProcessing *)cls)->setManualWhiteBalance (arg1); } @@ -275,7 +275,7 @@ static void _call_f_setSaturation_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageProcessing *)cls)->setSaturation (arg1); } @@ -295,7 +295,7 @@ static void _call_f_setSharpeningLevel_1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageProcessing *)cls)->setSharpeningLevel (arg1); } @@ -315,7 +315,7 @@ static void _call_f_setWhiteBalanceMode_4334 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageProcessing *)cls)->setWhiteBalanceMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -369,9 +369,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraImageProcessing::tr (arg1, arg2, arg3)); } @@ -394,9 +394,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraImageProcessing::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessingControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessingControl.cc index 9a70bdcdf..5b212ddb3 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessingControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraImageProcessingControl.cc @@ -69,7 +69,7 @@ static void _call_f_isParameterSupported_c5473 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraImageProcessingControl *)cls)->isParameterSupported (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -90,8 +90,8 @@ static void _call_f_isParameterValueSupported_c7484 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraImageProcessingControl *)cls)->isParameterValueSupported (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -110,7 +110,7 @@ static void _call_f_parameter_c5473 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCameraImageProcessingControl *)cls)->parameter (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -131,8 +131,8 @@ static void _call_f_setParameter_7484 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraImageProcessingControl *)cls)->setParameter (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -156,9 +156,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraImageProcessingControl::tr (arg1, arg2, arg3)); } @@ -181,9 +181,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraImageProcessingControl::trUtf8 (arg1, arg2, arg3)); } @@ -498,7 +498,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCameraImageProcessingControl_Adaptor *)cls)->emitter_QCameraImageProcessingControl_destroyed_1302 (arg1); } @@ -638,7 +638,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraImageProcessingControl_Adaptor *)cls)->fp_QCameraImageProcessingControl_isSignalConnected_c2394 (arg1)); } @@ -679,7 +679,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraImageProcessingControl_Adaptor *)cls)->fp_QCameraImageProcessingControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfo.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfo.cc index 1e576db6f..e9c03f679 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfo.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfo.cc @@ -51,7 +51,7 @@ static void _call_ctor_QCameraInfo_2309 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QByteArray &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QCameraInfo (arg1)); } @@ -70,7 +70,7 @@ static void _call_ctor_QCameraInfo_1979 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCamera &arg1 = args.read (heap); + const QCamera &arg1 = gsi::arg_reader() (args, heap); ret.write (new QCameraInfo (arg1)); } @@ -89,7 +89,7 @@ static void _call_ctor_QCameraInfo_2375 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraInfo &arg1 = args.read (heap); + const QCameraInfo &arg1 = gsi::arg_reader() (args, heap); ret.write (new QCameraInfo (arg1)); } @@ -153,7 +153,7 @@ static void _call_f_operator_excl__eq__c2375 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraInfo &arg1 = args.read (heap); + const QCameraInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraInfo *)cls)->operator!= (arg1)); } @@ -172,7 +172,7 @@ static void _call_f_operator_eq__2375 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraInfo &arg1 = args.read (heap); + const QCameraInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QCameraInfo &)((QCameraInfo *)cls)->operator= (arg1)); } @@ -191,7 +191,7 @@ static void _call_f_operator_eq__eq__c2375 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraInfo &arg1 = args.read (heap); + const QCameraInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraInfo *)cls)->operator== (arg1)); } @@ -240,7 +240,7 @@ static void _call_f_availableCameras_2071 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QCamera::UnspecifiedPosition)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QCamera::UnspecifiedPosition), heap); ret.write > ((QList)QCameraInfo::availableCameras (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfoControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfoControl.cc index cd240193a..7252a3695 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfoControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraInfoControl.cc @@ -69,7 +69,7 @@ static void _call_f_cameraOrientation_c2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraInfoControl *)cls)->cameraOrientation (arg1)); } @@ -88,7 +88,7 @@ static void _call_f_cameraPosition_c2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QCameraInfoControl *)cls)->cameraPosition (arg1))); } @@ -111,9 +111,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraInfoControl::tr (arg1, arg2, arg3)); } @@ -136,9 +136,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraInfoControl::trUtf8 (arg1, arg2, arg3)); } @@ -461,7 +461,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCameraInfoControl_Adaptor *)cls)->emitter_QCameraInfoControl_destroyed_1302 (arg1); } @@ -552,7 +552,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraInfoControl_Adaptor *)cls)->fp_QCameraInfoControl_isSignalConnected_c2394 (arg1)); } @@ -570,7 +570,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraInfoControl_Adaptor *)cls)->fp_QCameraInfoControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraLocksControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraLocksControl.cc index 57679c63d..75367130f 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraLocksControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraLocksControl.cc @@ -69,7 +69,7 @@ static void _call_f_lockStatus_c2029 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QCameraLocksControl *)cls)->lockStatus (qt_gsi::QtToCppAdaptor(arg1).cref()))); } @@ -88,7 +88,7 @@ static void _call_f_searchAndLock_2725 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraLocksControl *)cls)->searchAndLock (arg1); } @@ -123,7 +123,7 @@ static void _call_f_unlock_2725 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraLocksControl *)cls)->unlock (arg1); } @@ -147,9 +147,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraLocksControl::tr (arg1, arg2, arg3)); } @@ -172,9 +172,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraLocksControl::trUtf8 (arg1, arg2, arg3)); } @@ -493,7 +493,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCameraLocksControl_Adaptor *)cls)->emitter_QCameraLocksControl_destroyed_1302 (arg1); } @@ -584,7 +584,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraLocksControl_Adaptor *)cls)->fp_QCameraLocksControl_isSignalConnected_c2394 (arg1)); } @@ -629,9 +629,9 @@ static void _call_emitter_lockStatusChanged_6877 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ((QCameraLocksControl_Adaptor *)cls)->emitter_QCameraLocksControl_lockStatusChanged_6877 (arg1, arg2, arg3); } @@ -649,7 +649,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraLocksControl_Adaptor *)cls)->fp_QCameraLocksControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettings.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettings.cc index 097dae9cc..63a136749 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettings.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettings.cc @@ -66,7 +66,7 @@ static void _call_ctor_QCameraViewfinderSettings_3871 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraViewfinderSettings &arg1 = args.read (heap); + const QCameraViewfinderSettings &arg1 = gsi::arg_reader() (args, heap); ret.write (new QCameraViewfinderSettings (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_operator_eq__3871 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraViewfinderSettings &arg1 = args.read (heap); + const QCameraViewfinderSettings &arg1 = gsi::arg_reader() (args, heap); ret.write ((QCameraViewfinderSettings &)((QCameraViewfinderSettings *)cls)->operator= (arg1)); } @@ -194,7 +194,7 @@ static void _call_f_setMaximumFrameRate_1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettings *)cls)->setMaximumFrameRate (arg1); } @@ -214,7 +214,7 @@ static void _call_f_setMinimumFrameRate_1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettings *)cls)->setMinimumFrameRate (arg1); } @@ -234,7 +234,7 @@ static void _call_f_setPixelAspectRatio_1805 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettings *)cls)->setPixelAspectRatio (arg1); } @@ -256,8 +256,8 @@ static void _call_f_setPixelAspectRatio_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettings *)cls)->setPixelAspectRatio (arg1, arg2); } @@ -277,7 +277,7 @@ static void _call_f_setPixelFormat_2758 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettings *)cls)->setPixelFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -297,7 +297,7 @@ static void _call_f_setResolution_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettings *)cls)->setResolution (arg1); } @@ -319,8 +319,8 @@ static void _call_f_setResolution_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettings *)cls)->setResolution (arg1, arg2); } @@ -340,7 +340,7 @@ static void _call_f_swap_3176 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCameraViewfinderSettings &arg1 = args.read (heap); + QCameraViewfinderSettings &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettings *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl.cc index 6e729fce6..18d65a015 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl.cc @@ -69,7 +69,7 @@ static void _call_f_isViewfinderParameterSupported_c5819 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QCameraViewfinderSettingsControl *)cls)->isViewfinderParameterSupported (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -90,8 +90,8 @@ static void _call_f_setViewfinderParameter_7830 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettingsControl *)cls)->setViewfinderParameter (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -111,7 +111,7 @@ static void _call_f_viewfinderParameter_c5819 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QCameraViewfinderSettingsControl *)cls)->viewfinderParameter (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -134,9 +134,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraViewfinderSettingsControl::tr (arg1, arg2, arg3)); } @@ -159,9 +159,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraViewfinderSettingsControl::trUtf8 (arg1, arg2, arg3)); } @@ -457,7 +457,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCameraViewfinderSettingsControl_Adaptor *)cls)->emitter_QCameraViewfinderSettingsControl_destroyed_1302 (arg1); } @@ -548,7 +548,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraViewfinderSettingsControl_Adaptor *)cls)->fp_QCameraViewfinderSettingsControl_isSignalConnected_c2394 (arg1)); } @@ -589,7 +589,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraViewfinderSettingsControl_Adaptor *)cls)->fp_QCameraViewfinderSettingsControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl2.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl2.cc index 4a6836220..58f05dc5f 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl2.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraViewfinderSettingsControl2.cc @@ -70,7 +70,7 @@ static void _call_f_setViewfinderSettings_3871 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCameraViewfinderSettings &arg1 = args.read (heap); + const QCameraViewfinderSettings &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraViewfinderSettingsControl2 *)cls)->setViewfinderSettings (arg1); } @@ -124,9 +124,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraViewfinderSettingsControl2::tr (arg1, arg2, arg3)); } @@ -149,9 +149,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraViewfinderSettingsControl2::trUtf8 (arg1, arg2, arg3)); } @@ -444,7 +444,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCameraViewfinderSettingsControl2_Adaptor *)cls)->emitter_QCameraViewfinderSettingsControl2_destroyed_1302 (arg1); } @@ -535,7 +535,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraViewfinderSettingsControl2_Adaptor *)cls)->fp_QCameraViewfinderSettingsControl2_isSignalConnected_c2394 (arg1)); } @@ -553,7 +553,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraViewfinderSettingsControl2_Adaptor *)cls)->fp_QCameraViewfinderSettingsControl2_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraZoomControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraZoomControl.cc index c062e24ae..7ea113b60 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraZoomControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCameraZoomControl.cc @@ -161,8 +161,8 @@ static void _call_f_zoomTo_2034 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCameraZoomControl *)cls)->zoomTo (arg1, arg2); } @@ -186,9 +186,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraZoomControl::tr (arg1, arg2, arg3)); } @@ -211,9 +211,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCameraZoomControl::trUtf8 (arg1, arg2, arg3)); } @@ -612,7 +612,7 @@ static void _call_emitter_currentDigitalZoomChanged_1071 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QCameraZoomControl_Adaptor *)cls)->emitter_QCameraZoomControl_currentDigitalZoomChanged_1071 (arg1); } @@ -649,7 +649,7 @@ static void _call_emitter_currentOpticalZoomChanged_1071 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QCameraZoomControl_Adaptor *)cls)->emitter_QCameraZoomControl_currentOpticalZoomChanged_1071 (arg1); } @@ -691,7 +691,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCameraZoomControl_Adaptor *)cls)->emitter_QCameraZoomControl_destroyed_1302 (arg1); } @@ -782,7 +782,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCameraZoomControl_Adaptor *)cls)->fp_QCameraZoomControl_isSignalConnected_c2394 (arg1)); } @@ -819,7 +819,7 @@ static void _call_emitter_maximumDigitalZoomChanged_1071 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QCameraZoomControl_Adaptor *)cls)->emitter_QCameraZoomControl_maximumDigitalZoomChanged_1071 (arg1); } @@ -856,7 +856,7 @@ static void _call_emitter_maximumOpticalZoomChanged_1071 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QCameraZoomControl_Adaptor *)cls)->emitter_QCameraZoomControl_maximumOpticalZoomChanged_1071 (arg1); } @@ -874,7 +874,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCameraZoomControl_Adaptor *)cls)->fp_QCameraZoomControl_receivers_c1731 (arg1)); } @@ -911,7 +911,7 @@ static void _call_emitter_requestedDigitalZoomChanged_1071 (const qt_gsi::Generi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QCameraZoomControl_Adaptor *)cls)->emitter_QCameraZoomControl_requestedDigitalZoomChanged_1071 (arg1); } @@ -948,7 +948,7 @@ static void _call_emitter_requestedOpticalZoomChanged_1071 (const qt_gsi::Generi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QCameraZoomControl_Adaptor *)cls)->emitter_QCameraZoomControl_requestedOpticalZoomChanged_1071 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera_FrameRateRange.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera_FrameRateRange.cc index 28fb65949..4fbdcb139 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera_FrameRateRange.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQCamera_FrameRateRange.cc @@ -67,8 +67,8 @@ static void _call_ctor_QCamera_FrameRateRange_2034 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write (new QCamera::FrameRateRange (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc index adb41e2d8..955ae5620 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQGraphicsVideoItem.cc @@ -176,9 +176,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem *)cls)->paint (arg1, arg2, arg3); } @@ -198,7 +198,7 @@ static void _call_f_setAspectRatioMode_2257 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem *)cls)->setAspectRatioMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -218,7 +218,7 @@ static void _call_f_setOffset_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem *)cls)->setOffset (arg1); } @@ -238,7 +238,7 @@ static void _call_f_setSize_1875 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsVideoItem *)cls)->setSize (arg1); } @@ -277,9 +277,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsVideoItem::tr (arg1, arg2, arg3)); } @@ -302,9 +302,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsVideoItem::trUtf8 (arg1, arg2, arg3)); } @@ -1251,7 +1251,7 @@ static void _call_ctor_QGraphicsVideoItem_Adaptor_1919 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsVideoItem_Adaptor (arg1)); } @@ -1488,7 +1488,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsVideoItem_Adaptor *)cls)->emitter_QGraphicsVideoItem_destroyed_1302 (arg1); } @@ -1916,7 +1916,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsVideoItem_Adaptor *)cls)->fp_QGraphicsVideoItem_isSignalConnected_c2394 (arg1)); } @@ -2123,7 +2123,7 @@ static void _call_emitter_nativeSizeChanged_1875 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsVideoItem_Adaptor *)cls)->emitter_QGraphicsVideoItem_nativeSizeChanged_1875 (arg1); } @@ -2233,7 +2233,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsVideoItem_Adaptor *)cls)->fp_QGraphicsVideoItem_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderControl.cc index be9795f8a..1ce75da26 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderControl.cc @@ -71,7 +71,7 @@ static void _call_f_imageCodecDescription_c2025 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QImageEncoderControl *)cls)->imageCodecDescription (arg1)); } @@ -105,7 +105,7 @@ static void _call_f_setImageSettings_3430 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImageEncoderSettings &arg1 = args.read (heap); + const QImageEncoderSettings &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageEncoderControl *)cls)->setImageSettings (arg1); } @@ -142,8 +142,8 @@ static void _call_f_supportedResolutions_c4372 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImageEncoderSettings &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QImageEncoderSettings &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QImageEncoderControl *)cls)->supportedResolutions (arg1, arg2)); } @@ -166,9 +166,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QImageEncoderControl::tr (arg1, arg2, arg3)); } @@ -191,9 +191,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QImageEncoderControl::trUtf8 (arg1, arg2, arg3)); } @@ -523,7 +523,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QImageEncoderControl_Adaptor *)cls)->emitter_QImageEncoderControl_destroyed_1302 (arg1); } @@ -656,7 +656,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageEncoderControl_Adaptor *)cls)->fp_QImageEncoderControl_isSignalConnected_c2394 (arg1)); } @@ -674,7 +674,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QImageEncoderControl_Adaptor *)cls)->fp_QImageEncoderControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderSettings.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderSettings.cc index 7a69607e6..6edaa4835 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderSettings.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQImageEncoderSettings.cc @@ -66,7 +66,7 @@ static void _call_ctor_QImageEncoderSettings_3430 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImageEncoderSettings &arg1 = args.read (heap); + const QImageEncoderSettings &arg1 = gsi::arg_reader() (args, heap); ret.write (new QImageEncoderSettings (arg1)); } @@ -100,7 +100,7 @@ static void _call_f_encodingOption_c2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QImageEncoderSettings *)cls)->encodingOption (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_operator_excl__eq__c3430 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImageEncoderSettings &arg1 = args.read (heap); + const QImageEncoderSettings &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageEncoderSettings *)cls)->operator!= (arg1)); } @@ -168,7 +168,7 @@ static void _call_f_operator_eq__3430 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImageEncoderSettings &arg1 = args.read (heap); + const QImageEncoderSettings &arg1 = gsi::arg_reader() (args, heap); ret.write ((QImageEncoderSettings &)((QImageEncoderSettings *)cls)->operator= (arg1)); } @@ -187,7 +187,7 @@ static void _call_f_operator_eq__eq__c3430 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImageEncoderSettings &arg1 = args.read (heap); + const QImageEncoderSettings &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QImageEncoderSettings *)cls)->operator== (arg1)); } @@ -236,7 +236,7 @@ static void _call_f_setCodec_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageEncoderSettings *)cls)->setCodec (arg1); } @@ -258,8 +258,8 @@ static void _call_f_setEncodingOption_4036 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageEncoderSettings *)cls)->setEncodingOption (arg1, arg2); } @@ -279,7 +279,7 @@ static void _call_f_setEncodingOptions_3508 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMap &arg1 = args.read & > (heap); + const QMap &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageEncoderSettings *)cls)->setEncodingOptions (arg1); } @@ -299,7 +299,7 @@ static void _call_f_setQuality_3220 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageEncoderSettings *)cls)->setQuality (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -319,7 +319,7 @@ static void _call_f_setResolution_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageEncoderSettings *)cls)->setResolution (arg1); } @@ -341,8 +341,8 @@ static void _call_f_setResolution_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QImageEncoderSettings *)cls)->setResolution (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAudioProbeControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAudioProbeControl.cc index 32481003b..f2d6a54f2 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAudioProbeControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAudioProbeControl.cc @@ -74,9 +74,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaAudioProbeControl::tr (arg1, arg2, arg3)); } @@ -99,9 +99,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaAudioProbeControl::trUtf8 (arg1, arg2, arg3)); } @@ -288,7 +288,7 @@ static void _call_emitter_audioBufferProbed_2494 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioBuffer &arg1 = args.read (heap); + const QAudioBuffer &arg1 = gsi::arg_reader() (args, heap); ((QMediaAudioProbeControl_Adaptor *)cls)->emitter_QMediaAudioProbeControl_audioBufferProbed_2494 (arg1); } @@ -354,7 +354,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaAudioProbeControl_Adaptor *)cls)->emitter_QMediaAudioProbeControl_destroyed_1302 (arg1); } @@ -459,7 +459,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaAudioProbeControl_Adaptor *)cls)->fp_QMediaAudioProbeControl_isSignalConnected_c2394 (arg1)); } @@ -477,7 +477,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaAudioProbeControl_Adaptor *)cls)->fp_QMediaAudioProbeControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAvailabilityControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAvailabilityControl.cc index a32a9ffeb..ae0527af9 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAvailabilityControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaAvailabilityControl.cc @@ -88,9 +88,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaAvailabilityControl::tr (arg1, arg2, arg3)); } @@ -113,9 +113,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaAvailabilityControl::trUtf8 (arg1, arg2, arg3)); } @@ -351,7 +351,7 @@ static void _call_emitter_availabilityChanged_3555 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMediaAvailabilityControl_Adaptor *)cls)->emitter_QMediaAvailabilityControl_availabilityChanged_3555 (arg1); } @@ -417,7 +417,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaAvailabilityControl_Adaptor *)cls)->emitter_QMediaAvailabilityControl_destroyed_1302 (arg1); } @@ -508,7 +508,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaAvailabilityControl_Adaptor *)cls)->fp_QMediaAvailabilityControl_isSignalConnected_c2394 (arg1)); } @@ -526,7 +526,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaAvailabilityControl_Adaptor *)cls)->fp_QMediaAvailabilityControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContainerControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContainerControl.cc index afefad611..d0f6316e0 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContainerControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContainerControl.cc @@ -69,7 +69,7 @@ static void _call_f_containerDescription_c2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QMediaContainerControl *)cls)->containerDescription (arg1)); } @@ -103,7 +103,7 @@ static void _call_f_setContainerFormat_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaContainerControl *)cls)->setContainerFormat (arg1); } @@ -142,9 +142,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaContainerControl::tr (arg1, arg2, arg3)); } @@ -167,9 +167,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaContainerControl::trUtf8 (arg1, arg2, arg3)); } @@ -522,7 +522,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaContainerControl_Adaptor *)cls)->emitter_QMediaContainerControl_destroyed_1302 (arg1); } @@ -613,7 +613,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaContainerControl_Adaptor *)cls)->fp_QMediaContainerControl_isSignalConnected_c2394 (arg1)); } @@ -631,7 +631,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaContainerControl_Adaptor *)cls)->fp_QMediaContainerControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContent.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContent.cc index cd2d216f1..c01b1b184 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContent.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaContent.cc @@ -69,7 +69,7 @@ static void _call_ctor_QMediaContent_1701 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMediaContent (arg1)); } @@ -88,7 +88,7 @@ static void _call_ctor_QMediaContent_2885 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMediaContent (arg1)); } @@ -107,7 +107,7 @@ static void _call_ctor_QMediaContent_2714 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaResource &arg1 = args.read (heap); + const QMediaResource &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMediaContent (arg1)); } @@ -126,7 +126,7 @@ static void _call_ctor_QMediaContent_3329 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write (new QMediaContent (arg1)); } @@ -145,7 +145,7 @@ static void _call_ctor_QMediaContent_2605 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaContent &arg1 = args.read (heap); + const QMediaContent &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMediaContent (arg1)); } @@ -168,9 +168,9 @@ static void _call_ctor_QMediaContent_4382 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaPlaylist *arg1 = args.read (heap); - const QUrl &arg2 = args ? args.read (heap) : (const QUrl &)(QUrl()); - bool arg3 = args ? args.read (heap) : (bool)(false); + QMediaPlaylist *arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QUrl(), heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write (new QMediaContent (arg1, arg2, arg3)); } @@ -249,7 +249,7 @@ static void _call_f_operator_excl__eq__c2605 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaContent &arg1 = args.read (heap); + const QMediaContent &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaContent *)cls)->operator!= (arg1)); } @@ -268,7 +268,7 @@ static void _call_f_operator_eq__2605 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaContent &arg1 = args.read (heap); + const QMediaContent &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaContent &)((QMediaContent *)cls)->operator= (arg1)); } @@ -287,7 +287,7 @@ static void _call_f_operator_eq__eq__c2605 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaContent &arg1 = args.read (heap); + const QMediaContent &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaContent *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaControl.cc index f30df3005..ae26ee835 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaControl.cc @@ -73,9 +73,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaControl::tr (arg1, arg2, arg3)); } @@ -98,9 +98,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaControl::trUtf8 (arg1, arg2, arg3)); } @@ -321,7 +321,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaControl_Adaptor *)cls)->emitter_QMediaControl_destroyed_1302 (arg1); } @@ -412,7 +412,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaControl_Adaptor *)cls)->fp_QMediaControl_isSignalConnected_c2394 (arg1)); } @@ -430,7 +430,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaControl_Adaptor *)cls)->fp_QMediaControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaGaplessPlaybackControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaGaplessPlaybackControl.cc index 804861f53..37cee56e1 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaGaplessPlaybackControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaGaplessPlaybackControl.cc @@ -115,7 +115,7 @@ static void _call_f_setCrossfadeTime_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaGaplessPlaybackControl *)cls)->setCrossfadeTime (arg1); } @@ -135,7 +135,7 @@ static void _call_f_setNextMedia_2605 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaContent &arg1 = args.read (heap); + const QMediaContent &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaGaplessPlaybackControl *)cls)->setNextMedia (arg1); } @@ -159,9 +159,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaGaplessPlaybackControl::tr (arg1, arg2, arg3)); } @@ -184,9 +184,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaGaplessPlaybackControl::trUtf8 (arg1, arg2, arg3)); } @@ -544,7 +544,7 @@ static void _call_emitter_crossfadeTimeChanged_1071 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QMediaGaplessPlaybackControl_Adaptor *)cls)->emitter_QMediaGaplessPlaybackControl_crossfadeTimeChanged_1071 (arg1); } @@ -586,7 +586,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaGaplessPlaybackControl_Adaptor *)cls)->emitter_QMediaGaplessPlaybackControl_destroyed_1302 (arg1); } @@ -696,7 +696,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaGaplessPlaybackControl_Adaptor *)cls)->fp_QMediaGaplessPlaybackControl_isSignalConnected_c2394 (arg1)); } @@ -733,7 +733,7 @@ static void _call_emitter_nextMediaChanged_2605 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaContent &arg1 = args.read (heap); + const QMediaContent &arg1 = gsi::arg_reader() (args, heap); ((QMediaGaplessPlaybackControl_Adaptor *)cls)->emitter_QMediaGaplessPlaybackControl_nextMediaChanged_2605 (arg1); } @@ -751,7 +751,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaGaplessPlaybackControl_Adaptor *)cls)->fp_QMediaGaplessPlaybackControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaNetworkAccessControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaNetworkAccessControl.cc index 4dc093666..01533c40b 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaNetworkAccessControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaNetworkAccessControl.cc @@ -85,7 +85,7 @@ static void _call_f_setConfigurations_4123 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaNetworkAccessControl *)cls)->setConfigurations (arg1); } @@ -109,9 +109,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaNetworkAccessControl::tr (arg1, arg2, arg3)); } @@ -134,9 +134,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaNetworkAccessControl::trUtf8 (arg1, arg2, arg3)); } @@ -395,7 +395,7 @@ static void _call_emitter_configurationChanged_3508 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); ((QMediaNetworkAccessControl_Adaptor *)cls)->emitter_QMediaNetworkAccessControl_configurationChanged_3508 (arg1); } @@ -456,7 +456,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaNetworkAccessControl_Adaptor *)cls)->emitter_QMediaNetworkAccessControl_destroyed_1302 (arg1); } @@ -547,7 +547,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaNetworkAccessControl_Adaptor *)cls)->fp_QMediaNetworkAccessControl_isSignalConnected_c2394 (arg1)); } @@ -565,7 +565,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaNetworkAccessControl_Adaptor *)cls)->fp_QMediaNetworkAccessControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaObject.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaObject.cc index f5c52b8ea..0571b6324 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaObject.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaObject.cc @@ -100,7 +100,7 @@ static void _call_f_bind_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaObject *)cls)->bind (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_metaData_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QMediaObject *)cls)->metaData (arg1)); } @@ -198,7 +198,7 @@ static void _call_f_setNotifyInterval_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaObject *)cls)->setNotifyInterval (arg1); } @@ -218,7 +218,7 @@ static void _call_f_unbind_1302 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaObject *)cls)->unbind (arg1); } @@ -242,9 +242,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaObject::tr (arg1, arg2, arg3)); } @@ -267,9 +267,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaObject::trUtf8 (arg1, arg2, arg3)); } @@ -584,7 +584,7 @@ static void _call_fp_addPropertyWatch_2309 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray const &arg1 = args.read (heap); + QByteArray const &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaObject_Adaptor *)cls)->fp_QMediaObject_addPropertyWatch_2309 (arg1); } @@ -622,7 +622,7 @@ static void _call_emitter_availabilityChanged_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaObject_Adaptor *)cls)->emitter_QMediaObject_availabilityChanged_864 (arg1); } @@ -640,7 +640,7 @@ static void _call_emitter_availabilityChanged_3555 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMediaObject_Adaptor *)cls)->emitter_QMediaObject_availabilityChanged_3555 (arg1); } @@ -729,7 +729,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaObject_Adaptor *)cls)->emitter_QMediaObject_destroyed_1302 (arg1); } @@ -839,7 +839,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaObject_Adaptor *)cls)->fp_QMediaObject_isSignalConnected_c2394 (arg1)); } @@ -857,7 +857,7 @@ static void _call_emitter_metaDataAvailableChanged_864 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaObject_Adaptor *)cls)->emitter_QMediaObject_metaDataAvailableChanged_864 (arg1); } @@ -891,8 +891,8 @@ static void _call_emitter_metaDataChanged_4036 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ((QMediaObject_Adaptor *)cls)->emitter_QMediaObject_metaDataChanged_4036 (arg1, arg2); } @@ -910,7 +910,7 @@ static void _call_emitter_notifyIntervalChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QMediaObject_Adaptor *)cls)->emitter_QMediaObject_notifyIntervalChanged_767 (arg1); } @@ -928,7 +928,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaObject_Adaptor *)cls)->fp_QMediaObject_receivers_c1731 (arg1)); } @@ -946,7 +946,7 @@ static void _call_fp_removePropertyWatch_2309 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray const &arg1 = args.read (heap); + QByteArray const &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaObject_Adaptor *)cls)->fp_QMediaObject_removePropertyWatch_2309 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc index e44e61d77..25efbcfce 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayer.cc @@ -82,7 +82,7 @@ static void _call_f_bind_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlayer *)cls)->bind (arg1)); } @@ -375,8 +375,8 @@ static void _call_f_setMedia_3944 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaContent &arg1 = args.read (heap); - QIODevice *arg2 = args ? args.read (heap) : (QIODevice *)(0); + const QMediaContent &arg1 = gsi::arg_reader() (args, heap); + QIODevice *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer *)cls)->setMedia (arg1, arg2); } @@ -396,7 +396,7 @@ static void _call_f_setMuted_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer *)cls)->setMuted (arg1); } @@ -416,7 +416,7 @@ static void _call_f_setNetworkConfigurations_4123 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer *)cls)->setNetworkConfigurations (arg1); } @@ -436,7 +436,7 @@ static void _call_f_setPlaybackRate_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer *)cls)->setPlaybackRate (arg1); } @@ -456,7 +456,7 @@ static void _call_f_setPlaylist_2033 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaPlaylist *arg1 = args.read (heap); + QMediaPlaylist *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer *)cls)->setPlaylist (arg1); } @@ -476,7 +476,7 @@ static void _call_f_setPosition_986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer *)cls)->setPosition (arg1); } @@ -496,7 +496,7 @@ static void _call_f_setVideoOutput_1818 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QVideoWidget *arg1 = args.read (heap); + QVideoWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer *)cls)->setVideoOutput (arg1); } @@ -516,7 +516,7 @@ static void _call_f_setVideoOutput_2422 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsVideoItem *arg1 = args.read (heap); + QGraphicsVideoItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer *)cls)->setVideoOutput (arg1); } @@ -536,7 +536,7 @@ static void _call_f_setVideoOutput_2739 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractVideoSurface *arg1 = args.read (heap); + QAbstractVideoSurface *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer *)cls)->setVideoOutput (arg1); } @@ -556,7 +556,7 @@ static void _call_f_setVolume_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer *)cls)->setVolume (arg1); } @@ -607,7 +607,7 @@ static void _call_f_unbind_1302 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer *)cls)->unbind (arg1); } @@ -646,9 +646,9 @@ static void _call_f_hasSupport_7054 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args ? args.read (heap) : (const QStringList &)(QStringList()); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStringList(), heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QMediaPlayer::hasSupport (arg1, arg2, arg3))); } @@ -667,7 +667,7 @@ static void _call_f_supportedMimeTypes_2808 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(0); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QStringList)QMediaPlayer::supportedMimeTypes (arg1)); } @@ -690,9 +690,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaPlayer::tr (arg1, arg2, arg3)); } @@ -715,9 +715,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaPlayer::trUtf8 (arg1, arg2, arg3)); } @@ -1183,8 +1183,8 @@ static void _call_ctor_QMediaPlayer_Adaptor_4002 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QMediaPlayer_Adaptor (arg1, arg2)); } @@ -1202,7 +1202,7 @@ static void _call_fp_addPropertyWatch_2309 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray const &arg1 = args.read (heap); + QByteArray const &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer_Adaptor *)cls)->fp_QMediaPlayer_addPropertyWatch_2309 (arg1); } @@ -1221,7 +1221,7 @@ static void _call_emitter_audioAvailableChanged_864 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_audioAvailableChanged_864 (arg1); } @@ -1258,7 +1258,7 @@ static void _call_emitter_availabilityChanged_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_availabilityChanged_864 (arg1); } @@ -1276,7 +1276,7 @@ static void _call_emitter_availabilityChanged_3555 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_availabilityChanged_3555 (arg1); } @@ -1317,7 +1317,7 @@ static void _call_emitter_bufferStatusChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_bufferStatusChanged_767 (arg1); } @@ -1359,7 +1359,7 @@ static void _call_emitter_currentMediaChanged_2605 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaContent &arg1 = args.read (heap); + const QMediaContent &arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_currentMediaChanged_2605 (arg1); } @@ -1401,7 +1401,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_destroyed_1302 (arg1); } @@ -1443,7 +1443,7 @@ static void _call_emitter_durationChanged_986 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_durationChanged_986 (arg1); } @@ -1461,7 +1461,7 @@ static void _call_emitter_error_2256 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_error_2256 (arg1); } @@ -1547,7 +1547,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlayer_Adaptor *)cls)->fp_QMediaPlayer_isSignalConnected_c2394 (arg1)); } @@ -1565,7 +1565,7 @@ static void _call_emitter_mediaChanged_2605 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaContent &arg1 = args.read (heap); + const QMediaContent &arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_mediaChanged_2605 (arg1); } @@ -1583,7 +1583,7 @@ static void _call_emitter_mediaStatusChanged_2858 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_mediaStatusChanged_2858 (arg1); } @@ -1601,7 +1601,7 @@ static void _call_emitter_metaDataAvailableChanged_864 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_metaDataAvailableChanged_864 (arg1); } @@ -1635,8 +1635,8 @@ static void _call_emitter_metaDataChanged_4036 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_metaDataChanged_4036 (arg1, arg2); } @@ -1654,7 +1654,7 @@ static void _call_emitter_mutedChanged_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_mutedChanged_864 (arg1); } @@ -1672,7 +1672,7 @@ static void _call_emitter_networkConfigurationChanged_3508 (const qt_gsi::Generi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_networkConfigurationChanged_3508 (arg1); } @@ -1690,7 +1690,7 @@ static void _call_emitter_notifyIntervalChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_notifyIntervalChanged_767 (arg1); } @@ -1708,7 +1708,7 @@ static void _call_emitter_playbackRateChanged_1071 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_playbackRateChanged_1071 (arg1); } @@ -1726,7 +1726,7 @@ static void _call_emitter_positionChanged_986 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_positionChanged_986 (arg1); } @@ -1744,7 +1744,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaPlayer_Adaptor *)cls)->fp_QMediaPlayer_receivers_c1731 (arg1)); } @@ -1762,7 +1762,7 @@ static void _call_fp_removePropertyWatch_2309 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray const &arg1 = args.read (heap); + QByteArray const &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayer_Adaptor *)cls)->fp_QMediaPlayer_removePropertyWatch_2309 (arg1); } @@ -1781,7 +1781,7 @@ static void _call_emitter_seekableChanged_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_seekableChanged_864 (arg1); } @@ -1846,7 +1846,7 @@ static void _call_emitter_stateChanged_2247 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_stateChanged_2247 (arg1); } @@ -1912,7 +1912,7 @@ static void _call_emitter_videoAvailableChanged_864 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_videoAvailableChanged_864 (arg1); } @@ -1930,7 +1930,7 @@ static void _call_emitter_volumeChanged_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayer_Adaptor *)cls)->emitter_QMediaPlayer_volumeChanged_767 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayerControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayerControl.cc index 0f70642d6..1cbc07e29 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayerControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlayerControl.cc @@ -286,8 +286,8 @@ static void _call_f_setMedia_3944 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaContent &arg1 = args.read (heap); - QIODevice *arg2 = args.read (heap); + const QMediaContent &arg1 = gsi::arg_reader() (args, heap); + QIODevice *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayerControl *)cls)->setMedia (arg1, arg2); } @@ -307,7 +307,7 @@ static void _call_f_setMuted_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayerControl *)cls)->setMuted (arg1); } @@ -327,7 +327,7 @@ static void _call_f_setPlaybackRate_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayerControl *)cls)->setPlaybackRate (arg1); } @@ -347,7 +347,7 @@ static void _call_f_setPosition_986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayerControl *)cls)->setPosition (arg1); } @@ -367,7 +367,7 @@ static void _call_f_setVolume_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlayerControl *)cls)->setVolume (arg1); } @@ -437,9 +437,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaPlayerControl::tr (arg1, arg2, arg3)); } @@ -462,9 +462,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaPlayerControl::trUtf8 (arg1, arg2, arg3)); } @@ -1135,7 +1135,7 @@ static void _call_emitter_audioAvailableChanged_864 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayerControl_Adaptor *)cls)->emitter_QMediaPlayerControl_audioAvailableChanged_864 (arg1); } @@ -1172,7 +1172,7 @@ static void _call_emitter_availablePlaybackRangesChanged_2766 (const qt_gsi::Gen { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaTimeRange &arg1 = args.read (heap); + const QMediaTimeRange &arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayerControl_Adaptor *)cls)->emitter_QMediaPlayerControl_availablePlaybackRangesChanged_2766 (arg1); } @@ -1209,7 +1209,7 @@ static void _call_emitter_bufferStatusChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayerControl_Adaptor *)cls)->emitter_QMediaPlayerControl_bufferStatusChanged_767 (arg1); } @@ -1275,7 +1275,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaPlayerControl_Adaptor *)cls)->emitter_QMediaPlayerControl_destroyed_1302 (arg1); } @@ -1336,7 +1336,7 @@ static void _call_emitter_durationChanged_986 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayerControl_Adaptor *)cls)->emitter_QMediaPlayerControl_durationChanged_986 (arg1); } @@ -1356,8 +1356,8 @@ static void _call_emitter_error_2684 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ((QMediaPlayerControl_Adaptor *)cls)->emitter_QMediaPlayerControl_error_2684 (arg1, arg2); } @@ -1481,7 +1481,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlayerControl_Adaptor *)cls)->fp_QMediaPlayerControl_isSignalConnected_c2394 (arg1)); } @@ -1537,7 +1537,7 @@ static void _call_emitter_mediaChanged_2605 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaContent &arg1 = args.read (heap); + const QMediaContent &arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayerControl_Adaptor *)cls)->emitter_QMediaPlayerControl_mediaChanged_2605 (arg1); } @@ -1574,7 +1574,7 @@ static void _call_emitter_mediaStatusChanged_2858 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMediaPlayerControl_Adaptor *)cls)->emitter_QMediaPlayerControl_mediaStatusChanged_2858 (arg1); } @@ -1611,7 +1611,7 @@ static void _call_emitter_mutedChanged_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayerControl_Adaptor *)cls)->emitter_QMediaPlayerControl_mutedChanged_864 (arg1); } @@ -1688,7 +1688,7 @@ static void _call_emitter_playbackRateChanged_1071 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayerControl_Adaptor *)cls)->emitter_QMediaPlayerControl_playbackRateChanged_1071 (arg1); } @@ -1725,7 +1725,7 @@ static void _call_emitter_positionChanged_986 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayerControl_Adaptor *)cls)->emitter_QMediaPlayerControl_positionChanged_986 (arg1); } @@ -1743,7 +1743,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaPlayerControl_Adaptor *)cls)->fp_QMediaPlayerControl_receivers_c1731 (arg1)); } @@ -1761,7 +1761,7 @@ static void _call_emitter_seekableChanged_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayerControl_Adaptor *)cls)->emitter_QMediaPlayerControl_seekableChanged_864 (arg1); } @@ -1949,7 +1949,7 @@ static void _call_emitter_stateChanged_2247 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMediaPlayerControl_Adaptor *)cls)->emitter_QMediaPlayerControl_stateChanged_2247 (arg1); } @@ -2011,7 +2011,7 @@ static void _call_emitter_videoAvailableChanged_864 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayerControl_Adaptor *)cls)->emitter_QMediaPlayerControl_videoAvailableChanged_864 (arg1); } @@ -2048,7 +2048,7 @@ static void _call_emitter_volumeChanged_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QMediaPlayerControl_Adaptor *)cls)->emitter_QMediaPlayerControl_volumeChanged_767 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc index 44b421930..e24d9a3ab 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaPlaylist.cc @@ -74,7 +74,7 @@ static void _call_f_addMedia_2605 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaContent &arg1 = args.read (heap); + const QMediaContent &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlaylist *)cls)->addMedia (arg1)); } @@ -93,7 +93,7 @@ static void _call_f_addMedia_3220 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QMediaPlaylist *)cls)->addMedia (arg1)); } @@ -189,8 +189,8 @@ static void _call_f_insertMedia_3264 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QMediaContent &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QMediaContent &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlaylist *)cls)->insertMedia (arg1, arg2)); } @@ -211,8 +211,8 @@ static void _call_f_insertMedia_3879 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QMediaPlaylist *)cls)->insertMedia (arg1, arg2)); } @@ -263,8 +263,8 @@ static void _call_f_load_4508 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlaylist *)cls)->load (arg1, arg2); } @@ -286,8 +286,8 @@ static void _call_f_load_3324 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QUrl &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlaylist *)cls)->load (arg1, arg2); } @@ -309,8 +309,8 @@ static void _call_f_load_3070 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlaylist *)cls)->load (arg1, arg2); } @@ -330,7 +330,7 @@ static void _call_f_media_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaContent)((QMediaPlaylist *)cls)->media (arg1)); } @@ -395,7 +395,7 @@ static void _call_f_nextIndex_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write ((int)((QMediaPlaylist *)cls)->nextIndex (arg1)); } @@ -445,7 +445,7 @@ static void _call_f_previousIndex_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write ((int)((QMediaPlaylist *)cls)->previousIndex (arg1)); } @@ -464,7 +464,7 @@ static void _call_f_removeMedia_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlaylist *)cls)->removeMedia (arg1)); } @@ -485,8 +485,8 @@ static void _call_f_removeMedia_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlaylist *)cls)->removeMedia (arg1, arg2)); } @@ -507,8 +507,8 @@ static void _call_f_save_3324 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QUrl &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QMediaPlaylist *)cls)->save (arg1, arg2)); } @@ -529,8 +529,8 @@ static void _call_f_save_3070 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlaylist *)cls)->save (arg1, arg2)); } @@ -549,7 +549,7 @@ static void _call_f_setCurrentIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlaylist *)cls)->setCurrentIndex (arg1); } @@ -569,7 +569,7 @@ static void _call_f_setPlaybackMode_3159 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaPlaylist *)cls)->setPlaybackMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -609,9 +609,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaPlaylist::tr (arg1, arg2, arg3)); } @@ -634,9 +634,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaPlaylist::trUtf8 (arg1, arg2, arg3)); } @@ -1001,7 +1001,7 @@ static void _call_ctor_QMediaPlaylist_Adaptor_1302 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMediaPlaylist_Adaptor (arg1)); } @@ -1043,7 +1043,7 @@ static void _call_emitter_currentIndexChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QMediaPlaylist_Adaptor *)cls)->emitter_QMediaPlaylist_currentIndexChanged_767 (arg1); } @@ -1061,7 +1061,7 @@ static void _call_emitter_currentMediaChanged_2605 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaContent &arg1 = args.read (heap); + const QMediaContent &arg1 = gsi::arg_reader() (args, heap); ((QMediaPlaylist_Adaptor *)cls)->emitter_QMediaPlaylist_currentMediaChanged_2605 (arg1); } @@ -1103,7 +1103,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaPlaylist_Adaptor *)cls)->emitter_QMediaPlaylist_destroyed_1302 (arg1); } @@ -1194,7 +1194,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaPlaylist_Adaptor *)cls)->fp_QMediaPlaylist_isSignalConnected_c2394 (arg1)); } @@ -1242,8 +1242,8 @@ static void _call_emitter_mediaAboutToBeInserted_1426 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QMediaPlaylist_Adaptor *)cls)->emitter_QMediaPlaylist_mediaAboutToBeInserted_1426 (arg1, arg2); } @@ -1263,8 +1263,8 @@ static void _call_emitter_mediaAboutToBeRemoved_1426 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QMediaPlaylist_Adaptor *)cls)->emitter_QMediaPlaylist_mediaAboutToBeRemoved_1426 (arg1, arg2); } @@ -1284,8 +1284,8 @@ static void _call_emitter_mediaChanged_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QMediaPlaylist_Adaptor *)cls)->emitter_QMediaPlaylist_mediaChanged_1426 (arg1, arg2); } @@ -1305,8 +1305,8 @@ static void _call_emitter_mediaInserted_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QMediaPlaylist_Adaptor *)cls)->emitter_QMediaPlaylist_mediaInserted_1426 (arg1, arg2); } @@ -1345,8 +1345,8 @@ static void _call_emitter_mediaRemoved_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QMediaPlaylist_Adaptor *)cls)->emitter_QMediaPlaylist_mediaRemoved_1426 (arg1, arg2); } @@ -1364,7 +1364,7 @@ static void _call_emitter_playbackModeChanged_3159 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMediaPlaylist_Adaptor *)cls)->emitter_QMediaPlaylist_playbackModeChanged_3159 (arg1); } @@ -1382,7 +1382,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaPlaylist_Adaptor *)cls)->fp_QMediaPlaylist_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc index 570344144..190cf9cd2 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorder.cc @@ -89,7 +89,7 @@ static void _call_f_audioCodecDescription_c2025 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QMediaRecorder *)cls)->audioCodecDescription (arg1)); } @@ -153,7 +153,7 @@ static void _call_f_containerDescription_c2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QMediaRecorder *)cls)->containerDescription (arg1)); } @@ -307,7 +307,7 @@ static void _call_f_metaData_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QMediaRecorder *)cls)->metaData (arg1)); } @@ -373,7 +373,7 @@ static void _call_f_setAudioSettings_3445 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioEncoderSettings &arg1 = args.read (heap); + const QAudioEncoderSettings &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorder *)cls)->setAudioSettings (arg1); } @@ -393,7 +393,7 @@ static void _call_f_setContainerFormat_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorder *)cls)->setContainerFormat (arg1); } @@ -417,9 +417,9 @@ static void _call_f_setEncodingSettings_8704 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioEncoderSettings &arg1 = args.read (heap); - const QVideoEncoderSettings &arg2 = args ? args.read (heap) : (const QVideoEncoderSettings &)(QVideoEncoderSettings()); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); + const QAudioEncoderSettings &arg1 = gsi::arg_reader() (args, heap); + const QVideoEncoderSettings &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QVideoEncoderSettings(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorder *)cls)->setEncodingSettings (arg1, arg2, arg3); } @@ -441,8 +441,8 @@ static void _call_f_setMetaData_4036 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorder *)cls)->setMetaData (arg1, arg2); } @@ -462,7 +462,7 @@ static void _call_f_setMuted_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorder *)cls)->setMuted (arg1); } @@ -482,7 +482,7 @@ static void _call_f_setOutputLocation_1701 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaRecorder *)cls)->setOutputLocation (arg1)); } @@ -501,7 +501,7 @@ static void _call_f_setVideoSettings_3450 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoEncoderSettings &arg1 = args.read (heap); + const QVideoEncoderSettings &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorder *)cls)->setVideoSettings (arg1); } @@ -521,7 +521,7 @@ static void _call_f_setVolume_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorder *)cls)->setVolume (arg1); } @@ -604,8 +604,8 @@ static void _call_f_supportedAudioSampleRates_c4387 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAudioEncoderSettings &arg1 = args ? args.read (heap) : (const QAudioEncoderSettings &)(QAudioEncoderSettings()); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QAudioEncoderSettings &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QAudioEncoderSettings(), heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QMediaRecorder *)cls)->supportedAudioSampleRates (arg1, arg2)); } @@ -641,8 +641,8 @@ static void _call_f_supportedFrameRates_c4392 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoEncoderSettings &arg1 = args ? args.read (heap) : (const QVideoEncoderSettings &)(QVideoEncoderSettings()); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QVideoEncoderSettings &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QVideoEncoderSettings(), heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QMediaRecorder *)cls)->supportedFrameRates (arg1, arg2)); } @@ -663,8 +663,8 @@ static void _call_f_supportedResolutions_c4392 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoEncoderSettings &arg1 = args ? args.read (heap) : (const QVideoEncoderSettings &)(QVideoEncoderSettings()); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QVideoEncoderSettings &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QVideoEncoderSettings(), heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QMediaRecorder *)cls)->supportedResolutions (arg1, arg2)); } @@ -698,7 +698,7 @@ static void _call_f_videoCodecDescription_c2025 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QMediaRecorder *)cls)->videoCodecDescription (arg1)); } @@ -751,9 +751,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaRecorder::tr (arg1, arg2, arg3)); } @@ -776,9 +776,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaRecorder::trUtf8 (arg1, arg2, arg3)); } @@ -1176,8 +1176,8 @@ static void _call_ctor_QMediaRecorder_Adaptor_2976 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaObject *arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + QMediaObject *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMediaRecorder_Adaptor (arg1, arg2)); } @@ -1195,7 +1195,7 @@ static void _call_emitter_actualLocationChanged_1701 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ((QMediaRecorder_Adaptor *)cls)->emitter_QMediaRecorder_actualLocationChanged_1701 (arg1); } @@ -1213,7 +1213,7 @@ static void _call_emitter_availabilityChanged_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaRecorder_Adaptor *)cls)->emitter_QMediaRecorder_availabilityChanged_864 (arg1); } @@ -1231,7 +1231,7 @@ static void _call_emitter_availabilityChanged_3555 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMediaRecorder_Adaptor *)cls)->emitter_QMediaRecorder_availabilityChanged_3555 (arg1); } @@ -1297,7 +1297,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaRecorder_Adaptor *)cls)->emitter_QMediaRecorder_destroyed_1302 (arg1); } @@ -1339,7 +1339,7 @@ static void _call_emitter_durationChanged_986 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ((QMediaRecorder_Adaptor *)cls)->emitter_QMediaRecorder_durationChanged_986 (arg1); } @@ -1357,7 +1357,7 @@ static void _call_emitter_error_2457 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMediaRecorder_Adaptor *)cls)->emitter_QMediaRecorder_error_2457 (arg1); } @@ -1424,7 +1424,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaRecorder_Adaptor *)cls)->fp_QMediaRecorder_isSignalConnected_c2394 (arg1)); } @@ -1461,7 +1461,7 @@ static void _call_emitter_metaDataAvailableChanged_864 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaRecorder_Adaptor *)cls)->emitter_QMediaRecorder_metaDataAvailableChanged_864 (arg1); } @@ -1495,8 +1495,8 @@ static void _call_emitter_metaDataChanged_4036 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ((QMediaRecorder_Adaptor *)cls)->emitter_QMediaRecorder_metaDataChanged_4036 (arg1, arg2); } @@ -1514,7 +1514,7 @@ static void _call_emitter_metaDataWritableChanged_864 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaRecorder_Adaptor *)cls)->emitter_QMediaRecorder_metaDataWritableChanged_864 (arg1); } @@ -1532,7 +1532,7 @@ static void _call_emitter_mutedChanged_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaRecorder_Adaptor *)cls)->emitter_QMediaRecorder_mutedChanged_864 (arg1); } @@ -1550,7 +1550,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaRecorder_Adaptor *)cls)->fp_QMediaRecorder_receivers_c1731 (arg1)); } @@ -1619,7 +1619,7 @@ static void _call_emitter_stateChanged_2448 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMediaRecorder_Adaptor *)cls)->emitter_QMediaRecorder_stateChanged_2448 (arg1); } @@ -1637,7 +1637,7 @@ static void _call_emitter_statusChanged_2579 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMediaRecorder_Adaptor *)cls)->emitter_QMediaRecorder_statusChanged_2579 (arg1); } @@ -1679,7 +1679,7 @@ static void _call_emitter_volumeChanged_1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QMediaRecorder_Adaptor *)cls)->emitter_QMediaRecorder_volumeChanged_1071 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorderControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorderControl.cc index e5c71af24..539cf8cbc 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorderControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaRecorderControl.cc @@ -131,7 +131,7 @@ static void _call_f_setMuted_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorderControl *)cls)->setMuted (arg1); } @@ -151,7 +151,7 @@ static void _call_f_setOutputLocation_1701 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaRecorderControl *)cls)->setOutputLocation (arg1)); } @@ -170,7 +170,7 @@ static void _call_f_setState_2448 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorderControl *)cls)->setState (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -190,7 +190,7 @@ static void _call_f_setVolume_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaRecorderControl *)cls)->setVolume (arg1); } @@ -259,9 +259,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaRecorderControl::tr (arg1, arg2, arg3)); } @@ -284,9 +284,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaRecorderControl::trUtf8 (arg1, arg2, arg3)); } @@ -719,7 +719,7 @@ static void _call_emitter_actualLocationChanged_1701 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ((QMediaRecorderControl_Adaptor *)cls)->emitter_QMediaRecorderControl_actualLocationChanged_1701 (arg1); } @@ -805,7 +805,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaRecorderControl_Adaptor *)cls)->emitter_QMediaRecorderControl_destroyed_1302 (arg1); } @@ -866,7 +866,7 @@ static void _call_emitter_durationChanged_986 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ((QMediaRecorderControl_Adaptor *)cls)->emitter_QMediaRecorderControl_durationChanged_986 (arg1); } @@ -886,8 +886,8 @@ static void _call_emitter_error_2684 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ((QMediaRecorderControl_Adaptor *)cls)->emitter_QMediaRecorderControl_error_2684 (arg1, arg2); } @@ -973,7 +973,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaRecorderControl_Adaptor *)cls)->fp_QMediaRecorderControl_isSignalConnected_c2394 (arg1)); } @@ -991,7 +991,7 @@ static void _call_emitter_mutedChanged_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMediaRecorderControl_Adaptor *)cls)->emitter_QMediaRecorderControl_mutedChanged_864 (arg1); } @@ -1028,7 +1028,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaRecorderControl_Adaptor *)cls)->fp_QMediaRecorderControl_receivers_c1731 (arg1)); } @@ -1188,7 +1188,7 @@ static void _call_emitter_stateChanged_2448 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMediaRecorderControl_Adaptor *)cls)->emitter_QMediaRecorderControl_stateChanged_2448 (arg1); } @@ -1225,7 +1225,7 @@ static void _call_emitter_statusChanged_2579 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMediaRecorderControl_Adaptor *)cls)->emitter_QMediaRecorderControl_statusChanged_2579 (arg1); } @@ -1286,7 +1286,7 @@ static void _call_emitter_volumeChanged_1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QMediaRecorderControl_Adaptor *)cls)->emitter_QMediaRecorderControl_volumeChanged_1071 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaResource.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaResource.cc index 031dc1f25..3069f7617 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaResource.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaResource.cc @@ -70,8 +70,8 @@ static void _call_ctor_QMediaResource_3618 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QUrl &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QMediaResource (arg1, arg2)); } @@ -92,8 +92,8 @@ static void _call_ctor_QMediaResource_4802 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QMediaResource (arg1, arg2)); } @@ -112,7 +112,7 @@ static void _call_ctor_QMediaResource_2714 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaResource &arg1 = args.read (heap); + const QMediaResource &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMediaResource (arg1)); } @@ -236,7 +236,7 @@ static void _call_f_operator_excl__eq__c2714 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaResource &arg1 = args.read (heap); + const QMediaResource &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaResource *)cls)->operator != (arg1)); } @@ -255,7 +255,7 @@ static void _call_f_operator_eq__2714 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaResource &arg1 = args.read (heap); + const QMediaResource &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaResource &)((QMediaResource *)cls)->operator = (arg1)); } @@ -274,7 +274,7 @@ static void _call_f_operator_eq__eq__c2714 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaResource &arg1 = args.read (heap); + const QMediaResource &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaResource *)cls)->operator == (arg1)); } @@ -338,7 +338,7 @@ static void _call_f_setAudioBitRate_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaResource *)cls)->setAudioBitRate (arg1); } @@ -358,7 +358,7 @@ static void _call_f_setAudioCodec_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaResource *)cls)->setAudioCodec (arg1); } @@ -378,7 +378,7 @@ static void _call_f_setChannelCount_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaResource *)cls)->setChannelCount (arg1); } @@ -398,7 +398,7 @@ static void _call_f_setDataSize_1681 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qint64 arg1 = args.read (heap); + const qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaResource *)cls)->setDataSize (arg1); } @@ -418,7 +418,7 @@ static void _call_f_setLanguage_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaResource *)cls)->setLanguage (arg1); } @@ -438,7 +438,7 @@ static void _call_f_setResolution_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaResource *)cls)->setResolution (arg1); } @@ -460,8 +460,8 @@ static void _call_f_setResolution_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaResource *)cls)->setResolution (arg1, arg2); } @@ -481,7 +481,7 @@ static void _call_f_setSampleRate_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaResource *)cls)->setSampleRate (arg1); } @@ -501,7 +501,7 @@ static void _call_f_setVideoBitRate_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaResource *)cls)->setVideoBitRate (arg1); } @@ -521,7 +521,7 @@ static void _call_f_setVideoCodec_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaResource *)cls)->setVideoCodec (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaService.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaService.cc index af42cdc71..6b847d919 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaService.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaService.cc @@ -70,7 +70,7 @@ static void _call_f_releaseControl_1920 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaControl *arg1 = args.read (heap); + QMediaControl *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaService *)cls)->releaseControl (arg1); } @@ -90,7 +90,7 @@ static void _call_f_requestControl_1731 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaControl *)((QMediaService *)cls)->requestControl (arg1)); } @@ -113,9 +113,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaService::tr (arg1, arg2, arg3)); } @@ -138,9 +138,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaService::trUtf8 (arg1, arg2, arg3)); } @@ -397,7 +397,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaService_Adaptor *)cls)->emitter_QMediaService_destroyed_1302 (arg1); } @@ -488,7 +488,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaService_Adaptor *)cls)->fp_QMediaService_isSignalConnected_c2394 (arg1)); } @@ -506,7 +506,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaService_Adaptor *)cls)->fp_QMediaService_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceCameraInfoInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceCameraInfoInterface.cc index 13588eaa5..8da08dde0 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceCameraInfoInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceCameraInfoInterface.cc @@ -50,7 +50,7 @@ static void _call_f_cameraOrientation_c2309 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaServiceCameraInfoInterface *)cls)->cameraOrientation (arg1)); } @@ -69,7 +69,7 @@ static void _call_f_cameraPosition_c2309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QMediaServiceCameraInfoInterface *)cls)->cameraPosition (arg1))); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceDefaultDeviceInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceDefaultDeviceInterface.cc index 9f43006b0..1638479e6 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceDefaultDeviceInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceDefaultDeviceInterface.cc @@ -50,7 +50,7 @@ static void _call_f_defaultDevice_c2309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QMediaServiceDefaultDeviceInterface *)cls)->defaultDevice (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceFeaturesInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceFeaturesInterface.cc index ba20ff5a1..27ab46e6f 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceFeaturesInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceFeaturesInterface.cc @@ -50,7 +50,7 @@ static void _call_f_supportedFeatures_c2309 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QMediaServiceFeaturesInterface *)cls)->supportedFeatures (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderFactoryInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderFactoryInterface.cc index 5e0c30612..61645a0f2 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderFactoryInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderFactoryInterface.cc @@ -51,7 +51,7 @@ static void _call_f_create_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString const &arg1 = args.read (heap); + QString const &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaService *)((QMediaServiceProviderFactoryInterface *)cls)->create (arg1)); } @@ -70,7 +70,7 @@ static void _call_f_release_1904 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaService *arg1 = args.read (heap); + QMediaService *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaServiceProviderFactoryInterface *)cls)->release (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderHint.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderHint.cc index 3d3618c16..08011cc4f 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderHint.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderHint.cc @@ -67,8 +67,8 @@ static void _call_ctor_QMediaServiceProviderHint_4354 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); ret.write (new QMediaServiceProviderHint (arg1, arg2)); } @@ -87,7 +87,7 @@ static void _call_ctor_QMediaServiceProviderHint_2309 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMediaServiceProviderHint (arg1)); } @@ -106,7 +106,7 @@ static void _call_ctor_QMediaServiceProviderHint_2071 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QMediaServiceProviderHint (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -125,7 +125,7 @@ static void _call_ctor_QMediaServiceProviderHint_4492 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write (new QMediaServiceProviderHint (arg1)); } @@ -144,7 +144,7 @@ static void _call_ctor_QMediaServiceProviderHint_3841 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaServiceProviderHint &arg1 = args.read (heap); + const QMediaServiceProviderHint &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMediaServiceProviderHint (arg1)); } @@ -253,7 +253,7 @@ static void _call_f_operator_excl__eq__c3841 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaServiceProviderHint &arg1 = args.read (heap); + const QMediaServiceProviderHint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaServiceProviderHint *)cls)->operator != (arg1)); } @@ -272,7 +272,7 @@ static void _call_f_operator_eq__eq__c3841 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaServiceProviderHint &arg1 = args.read (heap); + const QMediaServiceProviderHint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaServiceProviderHint *)cls)->operator == (arg1)); } @@ -291,7 +291,7 @@ static void _call_f_operator_eq__3841 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaServiceProviderHint &arg1 = args.read (heap); + const QMediaServiceProviderHint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaServiceProviderHint &)((QMediaServiceProviderHint *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc index 7d743d664..be05a8bc1 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceProviderPlugin.cc @@ -70,7 +70,7 @@ static void _call_f_create_2025u1 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaService *)((QMediaServiceProviderPlugin *)cls)->create (arg1)); } @@ -89,7 +89,7 @@ static void _call_f_release_1904 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaService *arg1 = args.read (heap); + QMediaService *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaServiceProviderPlugin *)cls)->release (arg1); } @@ -113,9 +113,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaServiceProviderPlugin::tr (arg1, arg2, arg3)); } @@ -138,9 +138,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaServiceProviderPlugin::trUtf8 (arg1, arg2, arg3)); } @@ -489,7 +489,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaServiceProviderPlugin_Adaptor *)cls)->emitter_QMediaServiceProviderPlugin_destroyed_1302 (arg1); } @@ -580,7 +580,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaServiceProviderPlugin_Adaptor *)cls)->fp_QMediaServiceProviderPlugin_isSignalConnected_c2394 (arg1)); } @@ -598,7 +598,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaServiceProviderPlugin_Adaptor *)cls)->fp_QMediaServiceProviderPlugin_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedDevicesInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedDevicesInterface.cc index 955b5bf96..e9f6dd138 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedDevicesInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedDevicesInterface.cc @@ -52,8 +52,8 @@ static void _call_f_deviceDescription_4510 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QMediaServiceSupportedDevicesInterface *)cls)->deviceDescription (arg1, arg2)); } @@ -72,7 +72,7 @@ static void _call_f_devices_c2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QMediaServiceSupportedDevicesInterface *)cls)->devices (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedFormatsInterface.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedFormatsInterface.cc index 367cad4af..54b44252d 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedFormatsInterface.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaServiceSupportedFormatsInterface.cc @@ -52,8 +52,8 @@ static void _call_f_hasSupport_c4354 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QMediaServiceSupportedFormatsInterface *)cls)->hasSupport (arg1, arg2))); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaStreamsControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaStreamsControl.cc index 409818499..c16404635 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaStreamsControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaStreamsControl.cc @@ -69,7 +69,7 @@ static void _call_f_isActive_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaStreamsControl *)cls)->isActive (arg1)); } @@ -90,8 +90,8 @@ static void _call_f_metaData_2684 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QMediaStreamsControl *)cls)->metaData (arg1, arg2)); } @@ -112,8 +112,8 @@ static void _call_f_setActive_1523 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaStreamsControl *)cls)->setActive (arg1, arg2); } @@ -148,7 +148,7 @@ static void _call_f_streamType_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QMediaStreamsControl *)cls)->streamType (arg1))); } @@ -171,9 +171,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaStreamsControl::tr (arg1, arg2, arg3)); } @@ -196,9 +196,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaStreamsControl::trUtf8 (arg1, arg2, arg3)); } @@ -558,7 +558,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaStreamsControl_Adaptor *)cls)->emitter_QMediaStreamsControl_destroyed_1302 (arg1); } @@ -672,7 +672,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaStreamsControl_Adaptor *)cls)->fp_QMediaStreamsControl_isSignalConnected_c2394 (arg1)); } @@ -716,7 +716,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaStreamsControl_Adaptor *)cls)->fp_QMediaStreamsControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeInterval.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeInterval.cc index 4bad2659b..176090fba 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeInterval.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeInterval.cc @@ -67,8 +67,8 @@ static void _call_ctor_QMediaTimeInterval_1864 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); - qint64 arg2 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); ret.write (new QMediaTimeInterval (arg1, arg2)); } @@ -87,7 +87,7 @@ static void _call_ctor_QMediaTimeInterval_3110 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaTimeInterval &arg1 = args.read (heap); + const QMediaTimeInterval &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMediaTimeInterval (arg1)); } @@ -106,7 +106,7 @@ static void _call_f_contains_c986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaTimeInterval *)cls)->contains (arg1)); } @@ -185,7 +185,7 @@ static void _call_f_translated_c986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaTimeInterval)((QMediaTimeInterval *)cls)->translated (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeRange.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeRange.cc index b6739b2d4..4508be3c5 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeRange.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaTimeRange.cc @@ -68,8 +68,8 @@ static void _call_ctor_QMediaTimeRange_1864 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); - qint64 arg2 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); ret.write (new QMediaTimeRange (arg1, arg2)); } @@ -88,7 +88,7 @@ static void _call_ctor_QMediaTimeRange_3110 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaTimeInterval &arg1 = args.read (heap); + const QMediaTimeInterval &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMediaTimeRange (arg1)); } @@ -107,7 +107,7 @@ static void _call_ctor_QMediaTimeRange_2766 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaTimeRange &arg1 = args.read (heap); + const QMediaTimeRange &arg1 = gsi::arg_reader() (args, heap); ret.write (new QMediaTimeRange (arg1)); } @@ -128,8 +128,8 @@ static void _call_f_addInterval_1864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); - qint64 arg2 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaTimeRange *)cls)->addInterval (arg1, arg2); } @@ -149,7 +149,7 @@ static void _call_f_addInterval_3110 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaTimeInterval &arg1 = args.read (heap); + const QMediaTimeInterval &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaTimeRange *)cls)->addInterval (arg1); } @@ -169,7 +169,7 @@ static void _call_f_addTimeRange_2766 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaTimeRange &arg1 = args.read (heap); + const QMediaTimeRange &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaTimeRange *)cls)->addTimeRange (arg1); } @@ -205,7 +205,7 @@ static void _call_f_contains_c986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaTimeRange *)cls)->contains (arg1)); } @@ -299,7 +299,7 @@ static void _call_f_operator_plus__eq__2766 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaTimeRange &arg1 = args.read (heap); + const QMediaTimeRange &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaTimeRange &)((QMediaTimeRange *)cls)->operator+= (arg1)); } @@ -318,7 +318,7 @@ static void _call_f_operator_plus__eq__3110 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaTimeInterval &arg1 = args.read (heap); + const QMediaTimeInterval &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaTimeRange &)((QMediaTimeRange *)cls)->operator+= (arg1)); } @@ -337,7 +337,7 @@ static void _call_f_operator_minus__eq__2766 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaTimeRange &arg1 = args.read (heap); + const QMediaTimeRange &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaTimeRange &)((QMediaTimeRange *)cls)->operator-= (arg1)); } @@ -356,7 +356,7 @@ static void _call_f_operator_minus__eq__3110 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaTimeInterval &arg1 = args.read (heap); + const QMediaTimeInterval &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaTimeRange &)((QMediaTimeRange *)cls)->operator-= (arg1)); } @@ -375,7 +375,7 @@ static void _call_f_operator_eq__2766 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaTimeRange &arg1 = args.read (heap); + const QMediaTimeRange &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaTimeRange &)((QMediaTimeRange *)cls)->operator= (arg1)); } @@ -394,7 +394,7 @@ static void _call_f_operator_eq__3110 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaTimeInterval &arg1 = args.read (heap); + const QMediaTimeInterval &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMediaTimeRange &)((QMediaTimeRange *)cls)->operator= (arg1)); } @@ -415,8 +415,8 @@ static void _call_f_removeInterval_1864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); - qint64 arg2 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaTimeRange *)cls)->removeInterval (arg1, arg2); } @@ -436,7 +436,7 @@ static void _call_f_removeInterval_3110 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaTimeInterval &arg1 = args.read (heap); + const QMediaTimeInterval &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaTimeRange *)cls)->removeInterval (arg1); } @@ -456,7 +456,7 @@ static void _call_f_removeTimeRange_2766 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMediaTimeRange &arg1 = args.read (heap); + const QMediaTimeRange &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMediaTimeRange *)cls)->removeTimeRange (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaVideoProbeControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaVideoProbeControl.cc index 5d6db9232..054ef3aea 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaVideoProbeControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMediaVideoProbeControl.cc @@ -74,9 +74,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaVideoProbeControl::tr (arg1, arg2, arg3)); } @@ -99,9 +99,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMediaVideoProbeControl::trUtf8 (arg1, arg2, arg3)); } @@ -336,7 +336,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMediaVideoProbeControl_Adaptor *)cls)->emitter_QMediaVideoProbeControl_destroyed_1302 (arg1); } @@ -441,7 +441,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMediaVideoProbeControl_Adaptor *)cls)->fp_QMediaVideoProbeControl_isSignalConnected_c2394 (arg1)); } @@ -459,7 +459,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMediaVideoProbeControl_Adaptor *)cls)->fp_QMediaVideoProbeControl_receivers_c1731 (arg1)); } @@ -529,7 +529,7 @@ static void _call_emitter_videoFrameProbed_2388 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoFrame &arg1 = args.read (heap); + const QVideoFrame &arg1 = gsi::arg_reader() (args, heap); ((QMediaVideoProbeControl_Adaptor *)cls)->emitter_QMediaVideoProbeControl_videoFrameProbed_2388 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataReaderControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataReaderControl.cc index aa6144820..d54857e4d 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataReaderControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataReaderControl.cc @@ -99,7 +99,7 @@ static void _call_f_metaData_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QMetaDataReaderControl *)cls)->metaData (arg1)); } @@ -122,9 +122,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMetaDataReaderControl::tr (arg1, arg2, arg3)); } @@ -147,9 +147,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMetaDataReaderControl::trUtf8 (arg1, arg2, arg3)); } @@ -482,7 +482,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMetaDataReaderControl_Adaptor *)cls)->emitter_QMetaDataReaderControl_destroyed_1302 (arg1); } @@ -592,7 +592,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMetaDataReaderControl_Adaptor *)cls)->fp_QMetaDataReaderControl_isSignalConnected_c2394 (arg1)); } @@ -633,7 +633,7 @@ static void _call_emitter_metaDataAvailableChanged_864 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMetaDataReaderControl_Adaptor *)cls)->emitter_QMetaDataReaderControl_metaDataAvailableChanged_864 (arg1); } @@ -667,8 +667,8 @@ static void _call_emitter_metaDataChanged_4036 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ((QMetaDataReaderControl_Adaptor *)cls)->emitter_QMetaDataReaderControl_metaDataChanged_4036 (arg1, arg2); } @@ -686,7 +686,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaDataReaderControl_Adaptor *)cls)->fp_QMetaDataReaderControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataWriterControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataWriterControl.cc index be8a08cdf..f94a4eba4 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataWriterControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQMetaDataWriterControl.cc @@ -114,7 +114,7 @@ static void _call_f_metaData_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QMetaDataWriterControl *)cls)->metaData (arg1)); } @@ -135,8 +135,8 @@ static void _call_f_setMetaData_4036 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMetaDataWriterControl *)cls)->setMetaData (arg1, arg2); } @@ -160,9 +160,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMetaDataWriterControl::tr (arg1, arg2, arg3)); } @@ -185,9 +185,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMetaDataWriterControl::trUtf8 (arg1, arg2, arg3)); } @@ -563,7 +563,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMetaDataWriterControl_Adaptor *)cls)->emitter_QMetaDataWriterControl_destroyed_1302 (arg1); } @@ -673,7 +673,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMetaDataWriterControl_Adaptor *)cls)->fp_QMetaDataWriterControl_isSignalConnected_c2394 (arg1)); } @@ -733,7 +733,7 @@ static void _call_emitter_metaDataAvailableChanged_864 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMetaDataWriterControl_Adaptor *)cls)->emitter_QMetaDataWriterControl_metaDataAvailableChanged_864 (arg1); } @@ -767,8 +767,8 @@ static void _call_emitter_metaDataChanged_4036 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ((QMetaDataWriterControl_Adaptor *)cls)->emitter_QMetaDataWriterControl_metaDataChanged_4036 (arg1, arg2); } @@ -786,7 +786,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMetaDataWriterControl_Adaptor *)cls)->fp_QMetaDataWriterControl_receivers_c1731 (arg1)); } @@ -883,7 +883,7 @@ static void _call_emitter_writableChanged_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QMetaDataWriterControl_Adaptor *)cls)->emitter_QMetaDataWriterControl_writableChanged_864 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc index caf762fe7..05cc9eda8 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioData.cc @@ -190,7 +190,7 @@ static void _call_f_setAlternativeFrequenciesEnabled_864 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioData *)cls)->setAlternativeFrequenciesEnabled (arg1); } @@ -244,9 +244,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRadioData::tr (arg1, arg2, arg3)); } @@ -269,9 +269,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRadioData::trUtf8 (arg1, arg2, arg3)); } @@ -599,8 +599,8 @@ static void _call_ctor_QRadioData_Adaptor_2976 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaObject *arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + QMediaObject *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QRadioData_Adaptor (arg1, arg2)); } @@ -618,7 +618,7 @@ static void _call_emitter_alternativeFrequenciesEnabledChanged_864 (const qt_gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QRadioData_Adaptor *)cls)->emitter_QRadioData_alternativeFrequenciesEnabledChanged_864 (arg1); } @@ -684,7 +684,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QRadioData_Adaptor *)cls)->emitter_QRadioData_destroyed_1302 (arg1); } @@ -726,7 +726,7 @@ static void _call_emitter_error_2028 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QRadioData_Adaptor *)cls)->emitter_QRadioData_error_2028 (arg1); } @@ -793,7 +793,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioData_Adaptor *)cls)->fp_QRadioData_isSignalConnected_c2394 (arg1)); } @@ -830,7 +830,7 @@ static void _call_emitter_programTypeChanged_2652 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QRadioData_Adaptor *)cls)->emitter_QRadioData_programTypeChanged_2652 (arg1); } @@ -848,7 +848,7 @@ static void _call_emitter_programTypeNameChanged_1148 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString arg1 = args.read (heap); + QString arg1 = gsi::arg_reader() (args, heap); ((QRadioData_Adaptor *)cls)->emitter_QRadioData_programTypeNameChanged_1148 (arg1); } @@ -866,7 +866,7 @@ static void _call_emitter_radioTextChanged_1148 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString arg1 = args.read (heap); + QString arg1 = gsi::arg_reader() (args, heap); ((QRadioData_Adaptor *)cls)->emitter_QRadioData_radioTextChanged_1148 (arg1); } @@ -884,7 +884,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRadioData_Adaptor *)cls)->fp_QRadioData_receivers_c1731 (arg1)); } @@ -953,7 +953,7 @@ static void _call_emitter_stationIdChanged_1148 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString arg1 = args.read (heap); + QString arg1 = gsi::arg_reader() (args, heap); ((QRadioData_Adaptor *)cls)->emitter_QRadioData_stationIdChanged_1148 (arg1); } @@ -971,7 +971,7 @@ static void _call_emitter_stationNameChanged_1148 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString arg1 = args.read (heap); + QString arg1 = gsi::arg_reader() (args, heap); ((QRadioData_Adaptor *)cls)->emitter_QRadioData_stationNameChanged_1148 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioDataControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioDataControl.cc index 3e0c841d7..82de34ce8 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioDataControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioDataControl.cc @@ -159,7 +159,7 @@ static void _call_f_setAlternativeFrequenciesEnabled_864 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioDataControl *)cls)->setAlternativeFrequenciesEnabled (arg1); } @@ -213,9 +213,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRadioDataControl::tr (arg1, arg2, arg3)); } @@ -238,9 +238,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRadioDataControl::trUtf8 (arg1, arg2, arg3)); } @@ -616,7 +616,7 @@ static void _call_emitter_alternativeFrequenciesEnabledChanged_864 (const qt_gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QRadioDataControl_Adaptor *)cls)->emitter_QRadioDataControl_alternativeFrequenciesEnabledChanged_864 (arg1); } @@ -682,7 +682,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QRadioDataControl_Adaptor *)cls)->emitter_QRadioDataControl_destroyed_1302 (arg1); } @@ -743,7 +743,7 @@ static void _call_emitter_error_2028 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QRadioDataControl_Adaptor *)cls)->emitter_QRadioDataControl_error_2028 (arg1); } @@ -848,7 +848,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioDataControl_Adaptor *)cls)->fp_QRadioDataControl_isSignalConnected_c2394 (arg1)); } @@ -885,7 +885,7 @@ static void _call_emitter_programTypeChanged_2652 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QRadioDataControl_Adaptor *)cls)->emitter_QRadioDataControl_programTypeChanged_2652 (arg1); } @@ -922,7 +922,7 @@ static void _call_emitter_programTypeNameChanged_1148 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString arg1 = args.read (heap); + QString arg1 = gsi::arg_reader() (args, heap); ((QRadioDataControl_Adaptor *)cls)->emitter_QRadioDataControl_programTypeNameChanged_1148 (arg1); } @@ -959,7 +959,7 @@ static void _call_emitter_radioTextChanged_1148 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString arg1 = args.read (heap); + QString arg1 = gsi::arg_reader() (args, heap); ((QRadioDataControl_Adaptor *)cls)->emitter_QRadioDataControl_radioTextChanged_1148 (arg1); } @@ -977,7 +977,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRadioDataControl_Adaptor *)cls)->fp_QRadioDataControl_receivers_c1731 (arg1)); } @@ -1066,7 +1066,7 @@ static void _call_emitter_stationIdChanged_1148 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString arg1 = args.read (heap); + QString arg1 = gsi::arg_reader() (args, heap); ((QRadioDataControl_Adaptor *)cls)->emitter_QRadioDataControl_stationIdChanged_1148 (arg1); } @@ -1103,7 +1103,7 @@ static void _call_emitter_stationNameChanged_1148 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString arg1 = args.read (heap); + QString arg1 = gsi::arg_reader() (args, heap); ((QRadioDataControl_Adaptor *)cls)->emitter_QRadioDataControl_stationNameChanged_1148 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc index eb766ca3b..fe37b0359 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTuner.cc @@ -162,7 +162,7 @@ static void _call_f_frequencyRange_c2027 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QPair)((QRadioTuner *)cls)->frequencyRange (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -181,7 +181,7 @@ static void _call_f_frequencyStep_c2027 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QRadioTuner *)cls)->frequencyStep (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -215,7 +215,7 @@ static void _call_f_isBandSupported_c2027 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QRadioTuner *)cls)->isBandSupported (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -294,7 +294,7 @@ static void _call_f_searchAllStations_2641 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRadioTuner::SearchFast)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRadioTuner::SearchFast), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTuner *)cls)->searchAllStations (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -346,7 +346,7 @@ static void _call_f_setBand_2027 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTuner *)cls)->setBand (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -366,7 +366,7 @@ static void _call_f_setFrequency_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTuner *)cls)->setFrequency (arg1); } @@ -386,7 +386,7 @@ static void _call_f_setMuted_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTuner *)cls)->setMuted (arg1); } @@ -406,7 +406,7 @@ static void _call_f_setStereoMode_2669 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTuner *)cls)->setStereoMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -426,7 +426,7 @@ static void _call_f_setVolume_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTuner *)cls)->setVolume (arg1); } @@ -542,9 +542,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRadioTuner::tr (arg1, arg2, arg3)); } @@ -567,9 +567,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRadioTuner::trUtf8 (arg1, arg2, arg3)); } @@ -991,7 +991,7 @@ static void _call_ctor_QRadioTuner_Adaptor_1302 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QRadioTuner_Adaptor (arg1)); } @@ -1009,7 +1009,7 @@ static void _call_fp_addPropertyWatch_2309 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray const &arg1 = args.read (heap); + QByteArray const &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTuner_Adaptor *)cls)->fp_QRadioTuner_addPropertyWatch_2309 (arg1); } @@ -1028,7 +1028,7 @@ static void _call_emitter_antennaConnectedChanged_864 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_antennaConnectedChanged_864 (arg1); } @@ -1065,7 +1065,7 @@ static void _call_emitter_availabilityChanged_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_availabilityChanged_864 (arg1); } @@ -1083,7 +1083,7 @@ static void _call_emitter_availabilityChanged_3555 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_availabilityChanged_3555 (arg1); } @@ -1101,7 +1101,7 @@ static void _call_emitter_bandChanged_2027 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_bandChanged_2027 (arg1); } @@ -1190,7 +1190,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_destroyed_1302 (arg1); } @@ -1232,7 +1232,7 @@ static void _call_emitter_error_2176 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_error_2176 (arg1); } @@ -1299,7 +1299,7 @@ static void _call_emitter_frequencyChanged_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_frequencyChanged_767 (arg1); } @@ -1336,7 +1336,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioTuner_Adaptor *)cls)->fp_QRadioTuner_isSignalConnected_c2394 (arg1)); } @@ -1354,7 +1354,7 @@ static void _call_emitter_metaDataAvailableChanged_864 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_metaDataAvailableChanged_864 (arg1); } @@ -1388,8 +1388,8 @@ static void _call_emitter_metaDataChanged_4036 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_metaDataChanged_4036 (arg1, arg2); } @@ -1407,7 +1407,7 @@ static void _call_emitter_mutedChanged_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_mutedChanged_864 (arg1); } @@ -1425,7 +1425,7 @@ static void _call_emitter_notifyIntervalChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_notifyIntervalChanged_767 (arg1); } @@ -1443,7 +1443,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRadioTuner_Adaptor *)cls)->fp_QRadioTuner_receivers_c1731 (arg1)); } @@ -1461,7 +1461,7 @@ static void _call_fp_removePropertyWatch_2309 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QByteArray const &arg1 = args.read (heap); + QByteArray const &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTuner_Adaptor *)cls)->fp_QRadioTuner_removePropertyWatch_2309 (arg1); } @@ -1480,7 +1480,7 @@ static void _call_emitter_searchingChanged_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_searchingChanged_864 (arg1); } @@ -1545,7 +1545,7 @@ static void _call_emitter_signalStrengthChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_signalStrengthChanged_767 (arg1); } @@ -1563,7 +1563,7 @@ static void _call_emitter_stateChanged_2167 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_stateChanged_2167 (arg1); } @@ -1583,8 +1583,8 @@ static void _call_emitter_stationFound_1807 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QString arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QString arg2 = gsi::arg_reader() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_stationFound_1807 (arg1, arg2); } @@ -1602,7 +1602,7 @@ static void _call_emitter_stereoStatusChanged_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_stereoStatusChanged_864 (arg1); } @@ -1668,7 +1668,7 @@ static void _call_emitter_volumeChanged_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QRadioTuner_Adaptor *)cls)->emitter_QRadioTuner_volumeChanged_767 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTunerControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTunerControl.cc index 3316cc722..b4f3b505f 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTunerControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQRadioTunerControl.cc @@ -145,7 +145,7 @@ static void _call_f_frequencyRange_c2027 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write > ((QPair)((QRadioTunerControl *)cls)->frequencyRange (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -164,7 +164,7 @@ static void _call_f_frequencyStep_c2027 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QRadioTunerControl *)cls)->frequencyStep (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -198,7 +198,7 @@ static void _call_f_isBandSupported_c2027 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QRadioTunerControl *)cls)->isBandSupported (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -262,7 +262,7 @@ static void _call_f_searchAllStations_2641 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRadioTuner::SearchFast)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRadioTuner::SearchFast), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl *)cls)->searchAllStations (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -314,7 +314,7 @@ static void _call_f_setBand_2027 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl *)cls)->setBand (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -334,7 +334,7 @@ static void _call_f_setFrequency_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl *)cls)->setFrequency (arg1); } @@ -354,7 +354,7 @@ static void _call_f_setMuted_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl *)cls)->setMuted (arg1); } @@ -374,7 +374,7 @@ static void _call_f_setStereoMode_2669 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl *)cls)->setStereoMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -394,7 +394,7 @@ static void _call_f_setVolume_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioTunerControl *)cls)->setVolume (arg1); } @@ -510,9 +510,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRadioTunerControl::tr (arg1, arg2, arg3)); } @@ -535,9 +535,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRadioTunerControl::trUtf8 (arg1, arg2, arg3)); } @@ -1238,7 +1238,7 @@ static void _call_emitter_antennaConnectedChanged_864 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QRadioTunerControl_Adaptor *)cls)->emitter_QRadioTunerControl_antennaConnectedChanged_864 (arg1); } @@ -1275,7 +1275,7 @@ static void _call_emitter_bandChanged_2027 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QRadioTunerControl_Adaptor *)cls)->emitter_QRadioTunerControl_bandChanged_2027 (arg1); } @@ -1361,7 +1361,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QRadioTunerControl_Adaptor *)cls)->emitter_QRadioTunerControl_destroyed_1302 (arg1); } @@ -1422,7 +1422,7 @@ static void _call_emitter_error_2176 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QRadioTunerControl_Adaptor *)cls)->emitter_QRadioTunerControl_error_2176 (arg1); } @@ -1527,7 +1527,7 @@ static void _call_emitter_frequencyChanged_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QRadioTunerControl_Adaptor *)cls)->emitter_QRadioTunerControl_frequencyChanged_767 (arg1); } @@ -1671,7 +1671,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioTunerControl_Adaptor *)cls)->fp_QRadioTunerControl_isSignalConnected_c2394 (arg1)); } @@ -1708,7 +1708,7 @@ static void _call_emitter_mutedChanged_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QRadioTunerControl_Adaptor *)cls)->emitter_QRadioTunerControl_mutedChanged_864 (arg1); } @@ -1726,7 +1726,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRadioTunerControl_Adaptor *)cls)->fp_QRadioTunerControl_receivers_c1731 (arg1)); } @@ -1808,7 +1808,7 @@ static void _call_emitter_searchingChanged_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QRadioTunerControl_Adaptor *)cls)->emitter_QRadioTunerControl_searchingChanged_864 (arg1); } @@ -1993,7 +1993,7 @@ static void _call_emitter_signalStrengthChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QRadioTunerControl_Adaptor *)cls)->emitter_QRadioTunerControl_signalStrengthChanged_767 (arg1); } @@ -2050,7 +2050,7 @@ static void _call_emitter_stateChanged_2167 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QRadioTunerControl_Adaptor *)cls)->emitter_QRadioTunerControl_stateChanged_2167 (arg1); } @@ -2070,8 +2070,8 @@ static void _call_emitter_stationFound_1807 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QString arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QString arg2 = gsi::arg_reader() (args, heap); ((QRadioTunerControl_Adaptor *)cls)->emitter_QRadioTunerControl_stationFound_1807 (arg1, arg2); } @@ -2108,7 +2108,7 @@ static void _call_emitter_stereoStatusChanged_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QRadioTunerControl_Adaptor *)cls)->emitter_QRadioTunerControl_stereoStatusChanged_864 (arg1); } @@ -2189,7 +2189,7 @@ static void _call_emitter_volumeChanged_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QRadioTunerControl_Adaptor *)cls)->emitter_QRadioTunerControl_volumeChanged_767 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSound.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSound.cc index 75edb9532..53e387287 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSound.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSound.cc @@ -145,7 +145,7 @@ static void _call_f_setLoops_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSound *)cls)->setLoops (arg1); } @@ -181,7 +181,7 @@ static void _call_f_play_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSound::play (arg1); } @@ -205,9 +205,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSound::tr (arg1, arg2, arg3)); } @@ -230,9 +230,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSound::trUtf8 (arg1, arg2, arg3)); } @@ -427,8 +427,8 @@ static void _call_ctor_QSound_Adaptor_3219 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSound_Adaptor (arg1, arg2)); } @@ -494,7 +494,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSound_Adaptor *)cls)->emitter_QSound_destroyed_1302 (arg1); } @@ -585,7 +585,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSound_Adaptor *)cls)->fp_QSound_isSignalConnected_c2394 (arg1)); } @@ -603,7 +603,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSound_Adaptor *)cls)->fp_QSound_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSoundEffect.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSoundEffect.cc index 323e10a50..61b592d89 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQSoundEffect.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQSoundEffect.cc @@ -176,7 +176,7 @@ static void _call_f_setCategory_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSoundEffect *)cls)->setCategory (arg1); } @@ -196,7 +196,7 @@ static void _call_f_setLoopCount_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSoundEffect *)cls)->setLoopCount (arg1); } @@ -216,7 +216,7 @@ static void _call_f_setMuted_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSoundEffect *)cls)->setMuted (arg1); } @@ -236,7 +236,7 @@ static void _call_f_setSource_1701 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSoundEffect *)cls)->setSource (arg1); } @@ -256,7 +256,7 @@ static void _call_f_setVolume_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSoundEffect *)cls)->setVolume (arg1); } @@ -356,9 +356,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSoundEffect::tr (arg1, arg2, arg3)); } @@ -381,9 +381,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSoundEffect::trUtf8 (arg1, arg2, arg3)); } @@ -648,7 +648,7 @@ static void _call_ctor_QSoundEffect_Adaptor_1302 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSoundEffect_Adaptor (arg1)); } @@ -728,7 +728,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSoundEffect_Adaptor *)cls)->emitter_QSoundEffect_destroyed_1302 (arg1); } @@ -819,7 +819,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSoundEffect_Adaptor *)cls)->fp_QSoundEffect_isSignalConnected_c2394 (arg1)); } @@ -907,7 +907,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSoundEffect_Adaptor *)cls)->fp_QSoundEffect_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoDeviceSelectorControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoDeviceSelectorControl.cc index 534e58855..125fce101 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoDeviceSelectorControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoDeviceSelectorControl.cc @@ -99,7 +99,7 @@ static void _call_f_deviceDescription_c767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QVideoDeviceSelectorControl *)cls)->deviceDescription (arg1)); } @@ -118,7 +118,7 @@ static void _call_f_deviceName_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QVideoDeviceSelectorControl *)cls)->deviceName (arg1)); } @@ -152,7 +152,7 @@ static void _call_f_setSelectedDevice_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoDeviceSelectorControl *)cls)->setSelectedDevice (arg1); } @@ -176,9 +176,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVideoDeviceSelectorControl::tr (arg1, arg2, arg3)); } @@ -201,9 +201,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVideoDeviceSelectorControl::trUtf8 (arg1, arg2, arg3)); } @@ -589,7 +589,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QVideoDeviceSelectorControl_Adaptor *)cls)->emitter_QVideoDeviceSelectorControl_destroyed_1302 (arg1); } @@ -759,7 +759,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoDeviceSelectorControl_Adaptor *)cls)->fp_QVideoDeviceSelectorControl_isSignalConnected_c2394 (arg1)); } @@ -777,7 +777,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVideoDeviceSelectorControl_Adaptor *)cls)->fp_QVideoDeviceSelectorControl_receivers_c1731 (arg1)); } @@ -814,7 +814,7 @@ static void _call_emitter_selectedDeviceChanged_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QVideoDeviceSelectorControl_Adaptor *)cls)->emitter_QVideoDeviceSelectorControl_selectedDeviceChanged_767 (arg1); } @@ -832,7 +832,7 @@ static void _call_emitter_selectedDeviceChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QVideoDeviceSelectorControl_Adaptor *)cls)->emitter_QVideoDeviceSelectorControl_selectedDeviceChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettings.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettings.cc index 1b5ca68fc..d1f525d03 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettings.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettings.cc @@ -66,7 +66,7 @@ static void _call_ctor_QVideoEncoderSettings_3450 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoEncoderSettings &arg1 = args.read (heap); + const QVideoEncoderSettings &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVideoEncoderSettings (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_encodingOption_c2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QVideoEncoderSettings *)cls)->encodingOption (arg1)); } @@ -194,7 +194,7 @@ static void _call_f_operator_excl__eq__c3450 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoEncoderSettings &arg1 = args.read (heap); + const QVideoEncoderSettings &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoEncoderSettings *)cls)->operator!= (arg1)); } @@ -213,7 +213,7 @@ static void _call_f_operator_eq__3450 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoEncoderSettings &arg1 = args.read (heap); + const QVideoEncoderSettings &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVideoEncoderSettings &)((QVideoEncoderSettings *)cls)->operator= (arg1)); } @@ -232,7 +232,7 @@ static void _call_f_operator_eq__eq__c3450 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoEncoderSettings &arg1 = args.read (heap); + const QVideoEncoderSettings &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoEncoderSettings *)cls)->operator== (arg1)); } @@ -281,7 +281,7 @@ static void _call_f_setBitRate_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoEncoderSettings *)cls)->setBitRate (arg1); } @@ -301,7 +301,7 @@ static void _call_f_setCodec_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoEncoderSettings *)cls)->setCodec (arg1); } @@ -321,7 +321,7 @@ static void _call_f_setEncodingMode_2864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoEncoderSettings *)cls)->setEncodingMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -343,8 +343,8 @@ static void _call_f_setEncodingOption_4036 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoEncoderSettings *)cls)->setEncodingOption (arg1, arg2); } @@ -364,7 +364,7 @@ static void _call_f_setEncodingOptions_3508 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMap &arg1 = args.read & > (heap); + const QMap &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoEncoderSettings *)cls)->setEncodingOptions (arg1); } @@ -384,7 +384,7 @@ static void _call_f_setFrameRate_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoEncoderSettings *)cls)->setFrameRate (arg1); } @@ -404,7 +404,7 @@ static void _call_f_setQuality_3220 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoEncoderSettings *)cls)->setQuality (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -424,7 +424,7 @@ static void _call_f_setResolution_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoEncoderSettings *)cls)->setResolution (arg1); } @@ -446,8 +446,8 @@ static void _call_f_setResolution_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoEncoderSettings *)cls)->setResolution (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettingsControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettingsControl.cc index 9831fe416..cfd4dd32c 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettingsControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoEncoderSettingsControl.cc @@ -71,7 +71,7 @@ static void _call_f_setVideoSettings_3450 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoEncoderSettings &arg1 = args.read (heap); + const QVideoEncoderSettings &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoEncoderSettingsControl *)cls)->setVideoSettings (arg1); } @@ -93,8 +93,8 @@ static void _call_f_supportedFrameRates_c4392 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoEncoderSettings &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QVideoEncoderSettings &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QVideoEncoderSettingsControl *)cls)->supportedFrameRates (arg1, arg2)); } @@ -115,8 +115,8 @@ static void _call_f_supportedResolutions_c4392 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoEncoderSettings &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QVideoEncoderSettings &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QVideoEncoderSettingsControl *)cls)->supportedResolutions (arg1, arg2)); } @@ -150,7 +150,7 @@ static void _call_f_videoCodecDescription_c2025 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QVideoEncoderSettingsControl *)cls)->videoCodecDescription (arg1)); } @@ -188,9 +188,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVideoEncoderSettingsControl::tr (arg1, arg2, arg3)); } @@ -213,9 +213,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVideoEncoderSettingsControl::trUtf8 (arg1, arg2, arg3)); } @@ -564,7 +564,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QVideoEncoderSettingsControl_Adaptor *)cls)->emitter_QVideoEncoderSettingsControl_destroyed_1302 (arg1); } @@ -655,7 +655,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoEncoderSettingsControl_Adaptor *)cls)->fp_QVideoEncoderSettingsControl_isSignalConnected_c2394 (arg1)); } @@ -673,7 +673,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVideoEncoderSettingsControl_Adaptor *)cls)->fp_QVideoEncoderSettingsControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFilterRunnable.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFilterRunnable.cc index 506ed080b..cf3d8a488 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFilterRunnable.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFilterRunnable.cc @@ -56,9 +56,9 @@ static void _call_f_run_8664 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QVideoFrame *arg1 = args.read (heap); - const QVideoSurfaceFormat &arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + QVideoFrame *arg1 = gsi::arg_reader() (args, heap); + const QVideoSurfaceFormat &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); ret.write ((QVideoFrame)((QVideoFilterRunnable *)cls)->run (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFrame.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFrame.cc index a004feddc..2eaf77974 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFrame.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoFrame.cc @@ -72,9 +72,9 @@ static void _call_ctor_QVideoFrame_6975 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractVideoBuffer *arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + QAbstractVideoBuffer *arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QVideoFrame (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -99,10 +99,10 @@ static void _call_ctor_QVideoFrame_5773 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); - int arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QVideoFrame (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -121,7 +121,7 @@ static void _call_ctor_QVideoFrame_1877 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QImage &arg1 = args.read (heap); + const QImage &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVideoFrame (arg1)); } @@ -140,7 +140,7 @@ static void _call_ctor_QVideoFrame_2388 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoFrame &arg1 = args.read (heap); + const QVideoFrame &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVideoFrame (arg1)); } @@ -189,7 +189,7 @@ static void _call_f_bits_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const unsigned char *)((QVideoFrame *)cls)->bits (arg1)); } @@ -223,7 +223,7 @@ static void _call_f_bytesPerLine_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVideoFrame *)cls)->bytesPerLine (arg1)); } @@ -377,7 +377,7 @@ static void _call_f_map_3233 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QVideoFrame *)cls)->map (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -426,7 +426,7 @@ static void _call_f_metaData_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QVideoFrame *)cls)->metaData (arg1)); } @@ -445,7 +445,7 @@ static void _call_f_operator_eq__2388 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoFrame &arg1 = args.read (heap); + const QVideoFrame &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVideoFrame &)((QVideoFrame *)cls)->operator = (arg1)); } @@ -464,7 +464,7 @@ static void _call_f_operator_excl__eq__c2388 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoFrame &arg1 = args.read (heap); + const QVideoFrame &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoFrame *)cls)->operator!= (arg1)); } @@ -483,7 +483,7 @@ static void _call_f_operator_eq__eq__c2388 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoFrame &arg1 = args.read (heap); + const QVideoFrame &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoFrame *)cls)->operator== (arg1)); } @@ -532,7 +532,7 @@ static void _call_f_setEndTime_986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoFrame *)cls)->setEndTime (arg1); } @@ -552,7 +552,7 @@ static void _call_f_setFieldType_2529 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoFrame *)cls)->setFieldType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -574,8 +574,8 @@ static void _call_f_setMetaData_4036 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoFrame *)cls)->setMetaData (arg1, arg2); } @@ -595,7 +595,7 @@ static void _call_f_setStartTime_986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoFrame *)cls)->setStartTime (arg1); } @@ -676,7 +676,7 @@ static void _call_f_imageFormatFromPixelFormat_2758 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QVideoFrame::imageFormatFromPixelFormat (qt_gsi::QtToCppAdaptor(arg1).cref()))); } @@ -695,7 +695,7 @@ static void _call_f_pixelFormatFromImageFormat_1733 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QVideoFrame::pixelFormatFromImageFormat (qt_gsi::QtToCppAdaptor(arg1).cref()))); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoProbe.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoProbe.cc index 44f72a920..73d9b51a0 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoProbe.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoProbe.cc @@ -87,7 +87,7 @@ static void _call_f_setSource_1782 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaObject *arg1 = args.read (heap); + QMediaObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoProbe *)cls)->setSource (arg1)); } @@ -106,7 +106,7 @@ static void _call_f_setSource_2005 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMediaRecorder *arg1 = args.read (heap); + QMediaRecorder *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoProbe *)cls)->setSource (arg1)); } @@ -129,9 +129,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVideoProbe::tr (arg1, arg2, arg3)); } @@ -154,9 +154,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVideoProbe::trUtf8 (arg1, arg2, arg3)); } @@ -358,7 +358,7 @@ static void _call_ctor_QVideoProbe_Adaptor_1302 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QVideoProbe_Adaptor (arg1)); } @@ -424,7 +424,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QVideoProbe_Adaptor *)cls)->emitter_QVideoProbe_destroyed_1302 (arg1); } @@ -529,7 +529,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoProbe_Adaptor *)cls)->fp_QVideoProbe_isSignalConnected_c2394 (arg1)); } @@ -547,7 +547,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVideoProbe_Adaptor *)cls)->fp_QVideoProbe_receivers_c1731 (arg1)); } @@ -617,7 +617,7 @@ static void _call_emitter_videoFrameProbed_2388 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoFrame &arg1 = args.read (heap); + const QVideoFrame &arg1 = gsi::arg_reader() (args, heap); ((QVideoProbe_Adaptor *)cls)->emitter_QVideoProbe_videoFrameProbed_2388 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoRendererControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoRendererControl.cc index bb23ab853..457622193 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoRendererControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoRendererControl.cc @@ -70,7 +70,7 @@ static void _call_f_setSurface_2739 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractVideoSurface *arg1 = args.read (heap); + QAbstractVideoSurface *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoRendererControl *)cls)->setSurface (arg1); } @@ -109,9 +109,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVideoRendererControl::tr (arg1, arg2, arg3)); } @@ -134,9 +134,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVideoRendererControl::trUtf8 (arg1, arg2, arg3)); } @@ -412,7 +412,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QVideoRendererControl_Adaptor *)cls)->emitter_QVideoRendererControl_destroyed_1302 (arg1); } @@ -503,7 +503,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoRendererControl_Adaptor *)cls)->fp_QVideoRendererControl_isSignalConnected_c2394 (arg1)); } @@ -521,7 +521,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVideoRendererControl_Adaptor *)cls)->fp_QVideoRendererControl_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoSurfaceFormat.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoSurfaceFormat.cc index fe535bf2a..8c7102e2a 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoSurfaceFormat.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoSurfaceFormat.cc @@ -71,9 +71,9 @@ static void _call_ctor_QVideoSurfaceFormat_7911 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractVideoBuffer::NoHandle)); + const QSize &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractVideoBuffer::NoHandle), heap); ret.write (new QVideoSurfaceFormat (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -92,7 +92,7 @@ static void _call_ctor_QVideoSurfaceFormat_3227 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoSurfaceFormat &arg1 = args.read (heap); + const QVideoSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); ret.write (new QVideoSurfaceFormat (arg1)); } @@ -201,7 +201,7 @@ static void _call_f_operator_excl__eq__c3227 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoSurfaceFormat &arg1 = args.read (heap); + const QVideoSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoSurfaceFormat *)cls)->operator != (arg1)); } @@ -220,7 +220,7 @@ static void _call_f_operator_eq__3227 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoSurfaceFormat &arg1 = args.read (heap); + const QVideoSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVideoSurfaceFormat &)((QVideoSurfaceFormat *)cls)->operator = (arg1)); } @@ -239,7 +239,7 @@ static void _call_f_operator_eq__eq__c3227 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVideoSurfaceFormat &arg1 = args.read (heap); + const QVideoSurfaceFormat &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoSurfaceFormat *)cls)->operator == (arg1)); } @@ -288,7 +288,7 @@ static void _call_f_property_c1731 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QVideoSurfaceFormat *)cls)->property (arg1)); } @@ -337,7 +337,7 @@ static void _call_f_setFrameRate_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoSurfaceFormat *)cls)->setFrameRate (arg1); } @@ -357,7 +357,7 @@ static void _call_f_setFrameSize_1805 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoSurfaceFormat *)cls)->setFrameSize (arg1); } @@ -379,8 +379,8 @@ static void _call_f_setFrameSize_1426 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoSurfaceFormat *)cls)->setFrameSize (arg1, arg2); } @@ -400,7 +400,7 @@ static void _call_f_setPixelAspectRatio_1805 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoSurfaceFormat *)cls)->setPixelAspectRatio (arg1); } @@ -422,8 +422,8 @@ static void _call_f_setPixelAspectRatio_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoSurfaceFormat *)cls)->setPixelAspectRatio (arg1, arg2); } @@ -445,8 +445,8 @@ static void _call_f_setProperty_3742 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoSurfaceFormat *)cls)->setProperty (arg1, arg2); } @@ -466,7 +466,7 @@ static void _call_f_setScanLineDirection_3395 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoSurfaceFormat *)cls)->setScanLineDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -486,7 +486,7 @@ static void _call_f_setViewport_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoSurfaceFormat *)cls)->setViewport (arg1); } @@ -506,7 +506,7 @@ static void _call_f_setYCbCrColorSpace_3904 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoSurfaceFormat *)cls)->setYCbCrColorSpace (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc index 9e63f4bf1..6faa0ce42 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWidget.cc @@ -205,7 +205,7 @@ static void _call_f_setAspectRatioMode_2257 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget *)cls)->setAspectRatioMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -225,7 +225,7 @@ static void _call_f_setBrightness_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget *)cls)->setBrightness (arg1); } @@ -245,7 +245,7 @@ static void _call_f_setContrast_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget *)cls)->setContrast (arg1); } @@ -265,7 +265,7 @@ static void _call_f_setFullScreen_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget *)cls)->setFullScreen (arg1); } @@ -285,7 +285,7 @@ static void _call_f_setHue_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget *)cls)->setHue (arg1); } @@ -305,7 +305,7 @@ static void _call_f_setSaturation_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget *)cls)->setSaturation (arg1); } @@ -344,9 +344,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVideoWidget::tr (arg1, arg2, arg3)); } @@ -369,9 +369,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVideoWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1362,7 +1362,7 @@ static void _call_ctor_QVideoWidget_Adaptor_1315 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QVideoWidget_Adaptor (arg1)); } @@ -1404,7 +1404,7 @@ static void _call_emitter_brightnessChanged_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QVideoWidget_Adaptor *)cls)->emitter_QVideoWidget_brightnessChanged_767 (arg1); } @@ -1518,7 +1518,7 @@ static void _call_emitter_contrastChanged_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QVideoWidget_Adaptor *)cls)->emitter_QVideoWidget_contrastChanged_767 (arg1); } @@ -1540,9 +1540,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->fp_QVideoWidget_create_2208 (arg1, arg2, arg3); } @@ -1561,7 +1561,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QVideoWidget_Adaptor *)cls)->emitter_QVideoWidget_customContextMenuRequested_1916 (arg1); } @@ -1605,8 +1605,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWidget_Adaptor *)cls)->fp_QVideoWidget_destroy_1620 (arg1, arg2); } @@ -1625,7 +1625,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QVideoWidget_Adaptor *)cls)->emitter_QVideoWidget_destroyed_1302 (arg1); } @@ -1935,7 +1935,7 @@ static void _call_emitter_fullScreenChanged_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QVideoWidget_Adaptor *)cls)->emitter_QVideoWidget_fullScreenChanged_864 (arg1); } @@ -2019,7 +2019,7 @@ static void _call_emitter_hueChanged_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QVideoWidget_Adaptor *)cls)->emitter_QVideoWidget_hueChanged_767 (arg1); } @@ -2108,7 +2108,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoWidget_Adaptor *)cls)->fp_QVideoWidget_isSignalConnected_c2394 (arg1)); } @@ -2451,7 +2451,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVideoWidget_Adaptor *)cls)->fp_QVideoWidget_receivers_c1731 (arg1)); } @@ -2516,7 +2516,7 @@ static void _call_emitter_saturationChanged_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QVideoWidget_Adaptor *)cls)->emitter_QVideoWidget_saturationChanged_767 (arg1); } @@ -2758,7 +2758,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QVideoWidget_Adaptor *)cls)->emitter_QVideoWidget_windowIconChanged_1787 (arg1); } @@ -2776,7 +2776,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QVideoWidget_Adaptor *)cls)->emitter_QVideoWidget_windowIconTextChanged_2025 (arg1); } @@ -2794,7 +2794,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QVideoWidget_Adaptor *)cls)->emitter_QVideoWidget_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWindowControl.cc b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWindowControl.cc index 3c970faa6..89e7cf2cb 100644 --- a/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWindowControl.cc +++ b/src/gsiqt/qt5/QtMultimedia/gsiDeclQVideoWindowControl.cc @@ -207,7 +207,7 @@ static void _call_f_setAspectRatioMode_2257 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl *)cls)->setAspectRatioMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -227,7 +227,7 @@ static void _call_f_setBrightness_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl *)cls)->setBrightness (arg1); } @@ -247,7 +247,7 @@ static void _call_f_setContrast_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl *)cls)->setContrast (arg1); } @@ -267,7 +267,7 @@ static void _call_f_setDisplayRect_1792 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl *)cls)->setDisplayRect (arg1); } @@ -287,7 +287,7 @@ static void _call_f_setFullScreen_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl *)cls)->setFullScreen (arg1); } @@ -307,7 +307,7 @@ static void _call_f_setHue_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl *)cls)->setHue (arg1); } @@ -327,7 +327,7 @@ static void _call_f_setSaturation_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl *)cls)->setSaturation (arg1); } @@ -347,7 +347,7 @@ static void _call_f_setWinId_696 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVideoWindowControl *)cls)->setWinId (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -386,9 +386,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVideoWindowControl::tr (arg1, arg2, arg3)); } @@ -411,9 +411,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVideoWindowControl::trUtf8 (arg1, arg2, arg3)); } @@ -1000,7 +1000,7 @@ static void _call_emitter_brightnessChanged_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QVideoWindowControl_Adaptor *)cls)->emitter_QVideoWindowControl_brightnessChanged_767 (arg1); } @@ -1061,7 +1061,7 @@ static void _call_emitter_contrastChanged_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QVideoWindowControl_Adaptor *)cls)->emitter_QVideoWindowControl_contrastChanged_767 (arg1); } @@ -1103,7 +1103,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QVideoWindowControl_Adaptor *)cls)->emitter_QVideoWindowControl_destroyed_1302 (arg1); } @@ -1213,7 +1213,7 @@ static void _call_emitter_fullScreenChanged_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QVideoWindowControl_Adaptor *)cls)->emitter_QVideoWindowControl_fullScreenChanged_864 (arg1); } @@ -1250,7 +1250,7 @@ static void _call_emitter_hueChanged_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QVideoWindowControl_Adaptor *)cls)->emitter_QVideoWindowControl_hueChanged_767 (arg1); } @@ -1287,7 +1287,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVideoWindowControl_Adaptor *)cls)->fp_QVideoWindowControl_isSignalConnected_c2394 (arg1)); } @@ -1338,7 +1338,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVideoWindowControl_Adaptor *)cls)->fp_QVideoWindowControl_receivers_c1731 (arg1)); } @@ -1395,7 +1395,7 @@ static void _call_emitter_saturationChanged_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QVideoWindowControl_Adaptor *)cls)->emitter_QVideoWindowControl_saturationChanged_767 (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractNetworkCache.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractNetworkCache.cc index 2f6df49f4..0dc2cec62 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractNetworkCache.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractNetworkCache.cc @@ -103,7 +103,7 @@ static void _call_f_data_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QAbstractNetworkCache *)cls)->data (arg1)); } @@ -122,7 +122,7 @@ static void _call_f_insert_1447 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache *)cls)->insert (arg1); } @@ -142,7 +142,7 @@ static void _call_f_metaData_1701 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCacheMetaData)((QAbstractNetworkCache *)cls)->metaData (arg1)); } @@ -161,7 +161,7 @@ static void _call_f_prepare_3377 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QAbstractNetworkCache *)cls)->prepare (arg1)); } @@ -180,7 +180,7 @@ static void _call_f_remove_1701 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractNetworkCache *)cls)->remove (arg1)); } @@ -199,7 +199,7 @@ static void _call_f_updateMetaData_3377 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractNetworkCache *)cls)->updateMetaData (arg1); } @@ -223,9 +223,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractNetworkCache::tr (arg1, arg2, arg3)); } @@ -248,9 +248,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractNetworkCache::trUtf8 (arg1, arg2, arg3)); } @@ -695,7 +695,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractNetworkCache_Adaptor *)cls)->emitter_QAbstractNetworkCache_destroyed_1302 (arg1); } @@ -810,7 +810,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractNetworkCache_Adaptor *)cls)->fp_QAbstractNetworkCache_isSignalConnected_c2394 (arg1)); } @@ -874,7 +874,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractNetworkCache_Adaptor *)cls)->fp_QAbstractNetworkCache_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractSocket.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractSocket.cc index 1410bce9a..a41dcf8ce 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractSocket.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQAbstractSocket.cc @@ -72,8 +72,8 @@ static void _call_ctor_QAbstractSocket_4299 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QObject *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); ret.write (new QAbstractSocket (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -127,9 +127,9 @@ static void _call_f_bind_6927 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); - quint16 arg2 = args ? args.read (heap) : (quint16)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QAbstractSocket::DefaultForPlatform); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QAbstractSocket::DefaultForPlatform, heap); ret.write ((bool)((QAbstractSocket *)cls)->bind (arg1, arg2, arg3)); } @@ -150,8 +150,8 @@ static void _call_f_bind_4517 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint16 arg1 = args ? args.read (heap) : (quint16)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QAbstractSocket::DefaultForPlatform); + quint16 arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QAbstractSocket::DefaultForPlatform, heap); ret.write ((bool)((QAbstractSocket *)cls)->bind (arg1, arg2)); } @@ -237,10 +237,10 @@ static void _call_f_connectToHost_10218 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::AnyIPProtocol)); + const QString &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::AnyIPProtocol), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSocket *)cls)->connectToHost (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -264,9 +264,9 @@ static void _call_f_connectToHost_6644 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSocket *)cls)->connectToHost (arg1, arg2, arg3); } @@ -498,7 +498,7 @@ static void _call_f_setPauseMode_3665 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSocket *)cls)->setPauseMode (arg1); } @@ -518,7 +518,7 @@ static void _call_f_setProxy_2686 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSocket *)cls)->setProxy (arg1); } @@ -538,7 +538,7 @@ static void _call_f_setReadBufferSize_986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSocket *)cls)->setReadBufferSize (arg1); } @@ -562,9 +562,9 @@ static void _call_f_setSocketDescriptor_9696 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIntegerForSizeof::Signed arg1 = args.read::Signed > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::ConnectedState)); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + QIntegerForSizeof::Signed arg1 = gsi::arg_reader::Signed >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::ConnectedState), heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); ret.write ((bool)((QAbstractSocket *)cls)->setSocketDescriptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -585,8 +585,8 @@ static void _call_f_setSocketOption_5331 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSocket *)cls)->setSocketOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -621,7 +621,7 @@ static void _call_f_socketOption_3320 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractSocket *)cls)->socketOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -670,7 +670,7 @@ static void _call_f_waitForBytesWritten_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QAbstractSocket *)cls)->waitForBytesWritten (arg1)); } @@ -689,7 +689,7 @@ static void _call_f_waitForConnected_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QAbstractSocket *)cls)->waitForConnected (arg1)); } @@ -708,7 +708,7 @@ static void _call_f_waitForDisconnected_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QAbstractSocket *)cls)->waitForDisconnected (arg1)); } @@ -727,7 +727,7 @@ static void _call_f_waitForReadyRead_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QAbstractSocket *)cls)->waitForReadyRead (arg1)); } @@ -750,9 +750,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractSocket::tr (arg1, arg2, arg3)); } @@ -775,9 +775,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractSocket::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQAuthenticator.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQAuthenticator.cc index 6a3f37d45..13ba9c7b8 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQAuthenticator.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQAuthenticator.cc @@ -65,7 +65,7 @@ static void _call_ctor_QAuthenticator_2765 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAuthenticator &arg1 = args.read (heap); + const QAuthenticator &arg1 = gsi::arg_reader() (args, heap); ret.write (new QAuthenticator (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_excl__eq__c2765 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAuthenticator &arg1 = args.read (heap); + const QAuthenticator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAuthenticator *)cls)->operator!= (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_operator_eq__2765 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAuthenticator &arg1 = args.read (heap); + const QAuthenticator &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAuthenticator &)((QAuthenticator *)cls)->operator= (arg1)); } @@ -153,7 +153,7 @@ static void _call_f_operator_eq__eq__c2765 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAuthenticator &arg1 = args.read (heap); + const QAuthenticator &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAuthenticator *)cls)->operator== (arg1)); } @@ -172,7 +172,7 @@ static void _call_f_option_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QAuthenticator *)cls)->option (arg1)); } @@ -238,8 +238,8 @@ static void _call_f_setOption_4036 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAuthenticator *)cls)->setOption (arg1, arg2); } @@ -259,7 +259,7 @@ static void _call_f_setPassword_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAuthenticator *)cls)->setPassword (arg1); } @@ -279,7 +279,7 @@ static void _call_f_setRealm_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAuthenticator *)cls)->setRealm (arg1); } @@ -299,7 +299,7 @@ static void _call_f_setUser_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAuthenticator *)cls)->setUser (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsDomainNameRecord.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsDomainNameRecord.cc index b8c02f170..70345c208 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsDomainNameRecord.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsDomainNameRecord.cc @@ -65,7 +65,7 @@ static void _call_ctor_QDnsDomainNameRecord_3279 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDnsDomainNameRecord &arg1 = args.read (heap); + const QDnsDomainNameRecord &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDnsDomainNameRecord (arg1)); } @@ -99,7 +99,7 @@ static void _call_f_operator_eq__3279 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDnsDomainNameRecord &arg1 = args.read (heap); + const QDnsDomainNameRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDnsDomainNameRecord &)((QDnsDomainNameRecord *)cls)->operator= (arg1)); } @@ -118,7 +118,7 @@ static void _call_f_swap_2584 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDnsDomainNameRecord &arg1 = args.read (heap); + QDnsDomainNameRecord &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsDomainNameRecord *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsHostAddressRecord.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsHostAddressRecord.cc index aa81e3be9..7112e07c4 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsHostAddressRecord.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsHostAddressRecord.cc @@ -66,7 +66,7 @@ static void _call_ctor_QDnsHostAddressRecord_3418 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDnsHostAddressRecord &arg1 = args.read (heap); + const QDnsHostAddressRecord &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDnsHostAddressRecord (arg1)); } @@ -100,7 +100,7 @@ static void _call_f_operator_eq__3418 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDnsHostAddressRecord &arg1 = args.read (heap); + const QDnsHostAddressRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDnsHostAddressRecord &)((QDnsHostAddressRecord *)cls)->operator= (arg1)); } @@ -119,7 +119,7 @@ static void _call_f_swap_2723 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDnsHostAddressRecord &arg1 = args.read (heap); + QDnsHostAddressRecord &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsHostAddressRecord *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsLookup.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsLookup.cc index 41ad8aef1..815242308 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsLookup.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsLookup.cc @@ -272,7 +272,7 @@ static void _call_f_setName_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsLookup *)cls)->setName (arg1); } @@ -292,7 +292,7 @@ static void _call_f_setNameserver_2518 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsLookup *)cls)->setNameserver (arg1); } @@ -312,7 +312,7 @@ static void _call_f_setType_1978 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsLookup *)cls)->setType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -366,9 +366,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDnsLookup::tr (arg1, arg2, arg3)); } @@ -391,9 +391,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDnsLookup::trUtf8 (arg1, arg2, arg3)); } @@ -648,7 +648,7 @@ static void _call_ctor_QDnsLookup_Adaptor_1302 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDnsLookup_Adaptor (arg1)); } @@ -670,9 +670,9 @@ static void _call_ctor_QDnsLookup_Adaptor_5089 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - QObject *arg3 = args ? args.read (heap) : (QObject *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QObject *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDnsLookup_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -696,10 +696,10 @@ static void _call_ctor_QDnsLookup_Adaptor_7499 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - const QHostAddress &arg3 = args.read (heap); - QObject *arg4 = args ? args.read (heap) : (QObject *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QHostAddress &arg3 = gsi::arg_reader() (args, heap); + QObject *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDnsLookup_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -765,7 +765,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDnsLookup_Adaptor *)cls)->emitter_QDnsLookup_destroyed_1302 (arg1); } @@ -870,7 +870,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDnsLookup_Adaptor *)cls)->fp_QDnsLookup_isSignalConnected_c2394 (arg1)); } @@ -888,7 +888,7 @@ static void _call_emitter_nameChanged_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDnsLookup_Adaptor *)cls)->emitter_QDnsLookup_nameChanged_2025 (arg1); } @@ -906,7 +906,7 @@ static void _call_emitter_nameserverChanged_2518 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); ((QDnsLookup_Adaptor *)cls)->emitter_QDnsLookup_nameserverChanged_2518 (arg1); } @@ -924,7 +924,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDnsLookup_Adaptor *)cls)->fp_QDnsLookup_receivers_c1731 (arg1)); } @@ -994,7 +994,7 @@ static void _call_emitter_typeChanged_1978 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QDnsLookup_Adaptor *)cls)->emitter_QDnsLookup_typeChanged_1978 (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsMailExchangeRecord.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsMailExchangeRecord.cc index fa0c07476..0ae0d5636 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsMailExchangeRecord.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsMailExchangeRecord.cc @@ -65,7 +65,7 @@ static void _call_ctor_QDnsMailExchangeRecord_3484 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDnsMailExchangeRecord &arg1 = args.read (heap); + const QDnsMailExchangeRecord &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDnsMailExchangeRecord (arg1)); } @@ -114,7 +114,7 @@ static void _call_f_operator_eq__3484 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDnsMailExchangeRecord &arg1 = args.read (heap); + const QDnsMailExchangeRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDnsMailExchangeRecord &)((QDnsMailExchangeRecord *)cls)->operator= (arg1)); } @@ -148,7 +148,7 @@ static void _call_f_swap_2789 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDnsMailExchangeRecord &arg1 = args.read (heap); + QDnsMailExchangeRecord &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsMailExchangeRecord *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsServiceRecord.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsServiceRecord.cc index f67813b2f..4b2aa6e6b 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsServiceRecord.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsServiceRecord.cc @@ -65,7 +65,7 @@ static void _call_ctor_QDnsServiceRecord_3015 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDnsServiceRecord &arg1 = args.read (heap); + const QDnsServiceRecord &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDnsServiceRecord (arg1)); } @@ -99,7 +99,7 @@ static void _call_f_operator_eq__3015 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDnsServiceRecord &arg1 = args.read (heap); + const QDnsServiceRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDnsServiceRecord &)((QDnsServiceRecord *)cls)->operator= (arg1)); } @@ -148,7 +148,7 @@ static void _call_f_swap_2320 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDnsServiceRecord &arg1 = args.read (heap); + QDnsServiceRecord &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsServiceRecord *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsTextRecord.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsTextRecord.cc index f82cb835f..329f4c798 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsTextRecord.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQDnsTextRecord.cc @@ -65,7 +65,7 @@ static void _call_ctor_QDnsTextRecord_2715 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDnsTextRecord &arg1 = args.read (heap); + const QDnsTextRecord &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDnsTextRecord (arg1)); } @@ -99,7 +99,7 @@ static void _call_f_operator_eq__2715 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDnsTextRecord &arg1 = args.read (heap); + const QDnsTextRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDnsTextRecord &)((QDnsTextRecord *)cls)->operator= (arg1)); } @@ -118,7 +118,7 @@ static void _call_f_swap_2020 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDnsTextRecord &arg1 = args.read (heap); + QDnsTextRecord &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDnsTextRecord *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQHostAddress.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQHostAddress.cc index 1dd14d853..5879604c1 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQHostAddress.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQHostAddress.cc @@ -65,7 +65,7 @@ static void _call_ctor_QHostAddress_1098 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint32 arg1 = args.read (heap); + quint32 arg1 = gsi::arg_reader() (args, heap); ret.write (new QHostAddress (arg1)); } @@ -84,7 +84,7 @@ static void _call_ctor_QHostAddress_2025 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QHostAddress (arg1)); } @@ -103,7 +103,7 @@ static void _call_ctor_QHostAddress_2518 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); ret.write (new QHostAddress (arg1)); } @@ -122,7 +122,7 @@ static void _call_ctor_QHostAddress_3172 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QHostAddress (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -159,8 +159,8 @@ static void _call_f_isInSubnet_c3177 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHostAddress *)cls)->isInSubnet (arg1, arg2)); } @@ -179,7 +179,7 @@ static void _call_f_isInSubnet_c3636 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPair &arg1 = args.read & > (heap); + const QPair &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((bool)((QHostAddress *)cls)->isInSubnet (arg1)); } @@ -228,7 +228,7 @@ static void _call_f_operator_excl__eq__c2518 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHostAddress *)cls)->operator != (arg1)); } @@ -247,7 +247,7 @@ static void _call_f_operator_excl__eq__c3172 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QHostAddress *)cls)->operator != (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -266,7 +266,7 @@ static void _call_f_operator_eq__eq__c2518 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHostAddress *)cls)->operator == (arg1)); } @@ -285,7 +285,7 @@ static void _call_f_operator_eq__eq__c3172 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QHostAddress *)cls)->operator == (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -304,7 +304,7 @@ static void _call_f_operator_eq__2518 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); ret.write ((QHostAddress &)((QHostAddress *)cls)->operator= (arg1)); } @@ -323,7 +323,7 @@ static void _call_f_operator_eq__2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QHostAddress &)((QHostAddress *)cls)->operator= (arg1)); } @@ -372,7 +372,7 @@ static void _call_f_setAddress_1098 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint32 arg1 = args.read (heap); + quint32 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHostAddress *)cls)->setAddress (arg1); } @@ -392,7 +392,7 @@ static void _call_f_setAddress_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHostAddress *)cls)->setAddress (arg1)); } @@ -411,7 +411,7 @@ static void _call_f_setScopeId_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHostAddress *)cls)->setScopeId (arg1); } @@ -446,7 +446,7 @@ static void _call_f_toIPv4Address_c1050 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args.read (heap); + bool *arg1 = gsi::arg_reader() (args, heap); ret.write ((quint32)((QHostAddress *)cls)->toIPv4Address (arg1)); } @@ -480,7 +480,7 @@ static void _call_f_parseSubnet_2025 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QPair)QHostAddress::parseSubnet (arg1)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQHostInfo.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQHostInfo.cc index ce30c91a7..7eb9cb78b 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQHostInfo.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQHostInfo.cc @@ -52,7 +52,7 @@ static void _call_ctor_QHostInfo_767 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write (new QHostInfo (arg1)); } @@ -71,7 +71,7 @@ static void _call_ctor_QHostInfo_2204 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostInfo &arg1 = args.read (heap); + const QHostInfo &arg1 = gsi::arg_reader() (args, heap); ret.write (new QHostInfo (arg1)); } @@ -165,7 +165,7 @@ static void _call_f_operator_eq__2204 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostInfo &arg1 = args.read (heap); + const QHostInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QHostInfo &)((QHostInfo *)cls)->operator= (arg1)); } @@ -184,7 +184,7 @@ static void _call_f_setAddresses_3133 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHostInfo *)cls)->setAddresses (arg1); } @@ -204,7 +204,7 @@ static void _call_f_setError_2775 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHostInfo *)cls)->setError (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -224,7 +224,7 @@ static void _call_f_setErrorString_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHostInfo *)cls)->setErrorString (arg1); } @@ -244,7 +244,7 @@ static void _call_f_setHostName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHostInfo *)cls)->setHostName (arg1); } @@ -264,7 +264,7 @@ static void _call_f_setLookupId_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHostInfo *)cls)->setLookupId (arg1); } @@ -284,7 +284,7 @@ static void _call_f_abortHostLookup_767 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QHostInfo::abortHostLookup (arg1); } @@ -304,7 +304,7 @@ static void _call_f_fromName_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QHostInfo)QHostInfo::fromName (arg1)); } @@ -357,9 +357,9 @@ static void _call_f_lookupHost_4842 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); - const char *arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); ret.write ((int)QHostInfo::lookupHost (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpMultiPart.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpMultiPart.cc index 3d66009d1..b7e83cdd5 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpMultiPart.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpMultiPart.cc @@ -70,7 +70,7 @@ static void _call_f_append_2217 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHttpPart &arg1 = args.read (heap); + const QHttpPart &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpMultiPart *)cls)->append (arg1); } @@ -105,7 +105,7 @@ static void _call_f_setBoundary_2309 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpMultiPart *)cls)->setBoundary (arg1); } @@ -125,7 +125,7 @@ static void _call_f_setContentType_3128 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpMultiPart *)cls)->setContentType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -149,9 +149,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QHttpMultiPart::tr (arg1, arg2, arg3)); } @@ -174,9 +174,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QHttpMultiPart::trUtf8 (arg1, arg2, arg3)); } @@ -377,7 +377,7 @@ static void _call_ctor_QHttpMultiPart_Adaptor_1302 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QHttpMultiPart_Adaptor (arg1)); } @@ -397,8 +397,8 @@ static void _call_ctor_QHttpMultiPart_Adaptor_4322 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QHttpMultiPart_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -464,7 +464,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QHttpMultiPart_Adaptor *)cls)->emitter_QHttpMultiPart_destroyed_1302 (arg1); } @@ -555,7 +555,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHttpMultiPart_Adaptor *)cls)->fp_QHttpMultiPart_isSignalConnected_c2394 (arg1)); } @@ -573,7 +573,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHttpMultiPart_Adaptor *)cls)->fp_QHttpMultiPart_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpPart.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpPart.cc index 1bdcb0621..d111c10e6 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpPart.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQHttpPart.cc @@ -66,7 +66,7 @@ static void _call_ctor_QHttpPart_2217 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHttpPart &arg1 = args.read (heap); + const QHttpPart &arg1 = gsi::arg_reader() (args, heap); ret.write (new QHttpPart (arg1)); } @@ -85,7 +85,7 @@ static void _call_f_operator_excl__eq__c2217 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHttpPart &arg1 = args.read (heap); + const QHttpPart &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHttpPart *)cls)->operator!= (arg1)); } @@ -104,7 +104,7 @@ static void _call_f_operator_eq__2217 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHttpPart &arg1 = args.read (heap); + const QHttpPart &arg1 = gsi::arg_reader() (args, heap); ret.write ((QHttpPart &)((QHttpPart *)cls)->operator= (arg1)); } @@ -123,7 +123,7 @@ static void _call_f_operator_eq__eq__c2217 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHttpPart &arg1 = args.read (heap); + const QHttpPart &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHttpPart *)cls)->operator== (arg1)); } @@ -142,7 +142,7 @@ static void _call_f_setBody_2309 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpPart *)cls)->setBody (arg1); } @@ -162,7 +162,7 @@ static void _call_f_setBodyDevice_1447 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpPart *)cls)->setBodyDevice (arg1); } @@ -184,8 +184,8 @@ static void _call_f_setHeader_5360 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpPart *)cls)->setHeader (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -207,8 +207,8 @@ static void _call_f_setRawHeader_4510 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpPart *)cls)->setRawHeader (arg1, arg2); } @@ -228,7 +228,7 @@ static void _call_f_swap_1522 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHttpPart &arg1 = args.read (heap); + QHttpPart &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHttpPart *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQIPv6Address.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQIPv6Address.cc index ae71e4a56..c9ed8e1a3 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQIPv6Address.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQIPv6Address.cc @@ -65,7 +65,7 @@ static void _call_f_operator_index__767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((quint8 &)((QIPv6Address *)cls)->operator [] (arg1)); } @@ -84,7 +84,7 @@ static void _call_f_operator_index__c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((quint8)((QIPv6Address *)cls)->operator [] (arg1)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalServer.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalServer.cc index f8eb701ef..4c8d3b176 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalServer.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalServer.cc @@ -146,7 +146,7 @@ static void _call_f_listen_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLocalServer *)cls)->listen (arg1)); } @@ -165,7 +165,7 @@ static void _call_f_listen_3470 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIntegerForSizeof::Signed arg1 = args.read::Signed > (heap); + QIntegerForSizeof::Signed arg1 = gsi::arg_reader::Signed >() (args, heap); ret.write ((bool)((QLocalServer *)cls)->listen (arg1)); } @@ -244,7 +244,7 @@ static void _call_f_setMaxPendingConnections_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer *)cls)->setMaxPendingConnections (arg1); } @@ -264,7 +264,7 @@ static void _call_f_setSocketOptions_3701 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalServer *)cls)->setSocketOptions (arg1); } @@ -301,8 +301,8 @@ static void _call_f_waitForNewConnection_1709 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QLocalServer *)cls)->waitForNewConnection (arg1, arg2)); } @@ -321,7 +321,7 @@ static void _call_f_removeServer_2025 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QLocalServer::removeServer (arg1)); } @@ -344,9 +344,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QLocalServer::tr (arg1, arg2, arg3)); } @@ -369,9 +369,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QLocalServer::trUtf8 (arg1, arg2, arg3)); } @@ -627,7 +627,7 @@ static void _call_ctor_QLocalServer_Adaptor_1302 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLocalServer_Adaptor (arg1)); } @@ -693,7 +693,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QLocalServer_Adaptor *)cls)->emitter_QLocalServer_destroyed_1302 (arg1); } @@ -827,7 +827,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLocalServer_Adaptor *)cls)->fp_QLocalServer_isSignalConnected_c2394 (arg1)); } @@ -878,7 +878,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLocalServer_Adaptor *)cls)->fp_QLocalServer_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalSocket.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalSocket.cc index 164e1d299..b13d3ea66 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalSocket.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQLocalSocket.cc @@ -67,7 +67,7 @@ static void _call_ctor_QLocalSocket_1302 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLocalSocket (arg1)); } @@ -163,7 +163,7 @@ static void _call_f_connectToServer_3242 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalSocket *)cls)->connectToServer (arg1); } @@ -185,8 +185,8 @@ static void _call_f_connectToServer_5159 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalSocket *)cls)->connectToServer (arg1, arg2); } @@ -297,7 +297,7 @@ static void _call_f_open_3242 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); ret.write ((bool)((QLocalSocket *)cls)->open (arg1)); } @@ -346,7 +346,7 @@ static void _call_f_setReadBufferSize_986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalSocket *)cls)->setReadBufferSize (arg1); } @@ -366,7 +366,7 @@ static void _call_f_setServerName_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLocalSocket *)cls)->setServerName (arg1); } @@ -390,9 +390,9 @@ static void _call_f_setSocketDescriptor_9858 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIntegerForSizeof::Signed arg1 = args.read::Signed > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLocalSocket::ConnectedState)); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + QIntegerForSizeof::Signed arg1 = gsi::arg_reader::Signed >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLocalSocket::ConnectedState), heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); ret.write ((bool)((QLocalSocket *)cls)->setSocketDescriptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -441,7 +441,7 @@ static void _call_f_waitForBytesWritten_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QLocalSocket *)cls)->waitForBytesWritten (arg1)); } @@ -460,7 +460,7 @@ static void _call_f_waitForConnected_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QLocalSocket *)cls)->waitForConnected (arg1)); } @@ -479,7 +479,7 @@ static void _call_f_waitForDisconnected_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QLocalSocket *)cls)->waitForDisconnected (arg1)); } @@ -498,7 +498,7 @@ static void _call_f_waitForReadyRead_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QLocalSocket *)cls)->waitForReadyRead (arg1)); } @@ -521,9 +521,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QLocalSocket::tr (arg1, arg2, arg3)); } @@ -546,9 +546,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QLocalSocket::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAccessManager.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAccessManager.cc index e8f147aed..7da7d4eb8 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAccessManager.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAccessManager.cc @@ -145,8 +145,8 @@ static void _call_f_connectToHost_3017 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args ? args.read (heap) : (quint16)(80); + const QString &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (80, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager *)cls)->connectToHost (arg1, arg2); } @@ -170,9 +170,9 @@ static void _call_f_connectToHostEncrypted_5977 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args ? args.read (heap) : (quint16)(443); - const QSslConfiguration &arg3 = args ? args.read (heap) : (const QSslConfiguration &)(QSslConfiguration::defaultConfiguration()); + const QString &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (443, heap); + const QSslConfiguration &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSslConfiguration::defaultConfiguration(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager *)cls)->connectToHostEncrypted (arg1, arg2, arg3); } @@ -207,7 +207,7 @@ static void _call_f_deleteResource_2885 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->deleteResource (arg1)); } @@ -226,7 +226,7 @@ static void _call_f_get_2885 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->get (arg1)); } @@ -245,7 +245,7 @@ static void _call_f_head_2885 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->head (arg1)); } @@ -281,8 +281,8 @@ static void _call_f_post_4224 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - QIODevice *arg2 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); + QIODevice *arg2 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->post (arg1, arg2)); } @@ -303,8 +303,8 @@ static void _call_f_post_5086 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->post (arg1, arg2)); } @@ -325,8 +325,8 @@ static void _call_f_post_4826 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - QHttpMultiPart *arg2 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); + QHttpMultiPart *arg2 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->post (arg1, arg2)); } @@ -377,8 +377,8 @@ static void _call_f_put_4224 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - QIODevice *arg2 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); + QIODevice *arg2 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->put (arg1, arg2)); } @@ -399,8 +399,8 @@ static void _call_f_put_5086 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->put (arg1, arg2)); } @@ -421,8 +421,8 @@ static void _call_f_put_4826 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - QHttpMultiPart *arg2 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); + QHttpMultiPart *arg2 = gsi::arg_reader() (args, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->put (arg1, arg2)); } @@ -445,9 +445,9 @@ static void _call_f_sendCustomRequest_6425 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); - QIODevice *arg3 = args ? args.read (heap) : (QIODevice *)(0); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); + QIODevice *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QNetworkReply *)((QNetworkAccessManager *)cls)->sendCustomRequest (arg1, arg2, arg3)); } @@ -466,7 +466,7 @@ static void _call_f_setCache_2737 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractNetworkCache *arg1 = args.read (heap); + QAbstractNetworkCache *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager *)cls)->setCache (arg1); } @@ -486,7 +486,7 @@ static void _call_f_setConfiguration_3508 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager *)cls)->setConfiguration (arg1); } @@ -506,7 +506,7 @@ static void _call_f_setCookieJar_2336 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkCookieJar *arg1 = args.read (heap); + QNetworkCookieJar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager *)cls)->setCookieJar (arg1); } @@ -526,7 +526,7 @@ static void _call_f_setNetworkAccessible_4770 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager *)cls)->setNetworkAccessible (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -546,7 +546,7 @@ static void _call_f_setProxy_2686 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager *)cls)->setProxy (arg1); } @@ -566,7 +566,7 @@ static void _call_f_setProxyFactory_2723 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkProxyFactory *arg1 = args.read (heap); + QNetworkProxyFactory *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAccessManager *)cls)->setProxyFactory (arg1); } @@ -605,9 +605,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QNetworkAccessManager::tr (arg1, arg2, arg3)); } @@ -630,9 +630,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QNetworkAccessManager::trUtf8 (arg1, arg2, arg3)); } @@ -921,7 +921,7 @@ static void _call_ctor_QNetworkAccessManager_Adaptor_1302 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QNetworkAccessManager_Adaptor (arg1)); } @@ -941,8 +941,8 @@ static void _call_emitter_authenticationRequired_3939 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkReply *arg1 = args.read (heap); - QAuthenticator *arg2 = args.read (heap); + QNetworkReply *arg1 = gsi::arg_reader() (args, heap); + QAuthenticator *arg2 = gsi::arg_reader() (args, heap); ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_authenticationRequired_3939 (arg1, arg2); } @@ -1037,7 +1037,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_destroyed_1302 (arg1); } @@ -1079,7 +1079,7 @@ static void _call_emitter_encrypted_1973 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkReply *arg1 = args.read (heap); + QNetworkReply *arg1 = gsi::arg_reader() (args, heap); ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_encrypted_1973 (arg1); } @@ -1146,7 +1146,7 @@ static void _call_emitter_finished_1973 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkReply *arg1 = args.read (heap); + QNetworkReply *arg1 = gsi::arg_reader() (args, heap); ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_finished_1973 (arg1); } @@ -1164,7 +1164,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkAccessManager_Adaptor *)cls)->fp_QNetworkAccessManager_isSignalConnected_c2394 (arg1)); } @@ -1182,7 +1182,7 @@ static void _call_emitter_networkAccessibleChanged_4770 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_networkAccessibleChanged_4770 (arg1); } @@ -1216,8 +1216,8 @@ static void _call_emitter_preSharedKeyAuthenticationRequired_5436 (const qt_gsi: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkReply *arg1 = args.read (heap); - QSslPreSharedKeyAuthenticator *arg2 = args.read (heap); + QNetworkReply *arg1 = gsi::arg_reader() (args, heap); + QSslPreSharedKeyAuthenticator *arg2 = gsi::arg_reader() (args, heap); ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_preSharedKeyAuthenticationRequired_5436 (arg1, arg2); } @@ -1237,8 +1237,8 @@ static void _call_emitter_proxyAuthenticationRequired_4652 (const qt_gsi::Generi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); - QAuthenticator *arg2 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); + QAuthenticator *arg2 = gsi::arg_reader() (args, heap); ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_proxyAuthenticationRequired_4652 (arg1, arg2); } @@ -1256,7 +1256,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QNetworkAccessManager_Adaptor *)cls)->fp_QNetworkAccessManager_receivers_c1731 (arg1)); } @@ -1304,8 +1304,8 @@ static void _call_emitter_sslErrors_4702 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkReply *arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + QNetworkReply *arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); ((QNetworkAccessManager_Adaptor *)cls)->emitter_QNetworkAccessManager_sslErrors_4702 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAddressEntry.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAddressEntry.cc index 3e4a58b0f..0556f282e 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAddressEntry.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkAddressEntry.cc @@ -66,7 +66,7 @@ static void _call_ctor_QNetworkAddressEntry_3380 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkAddressEntry &arg1 = args.read (heap); + const QNetworkAddressEntry &arg1 = gsi::arg_reader() (args, heap); ret.write (new QNetworkAddressEntry (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_operator_excl__eq__c3380 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkAddressEntry &arg1 = args.read (heap); + const QNetworkAddressEntry &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkAddressEntry *)cls)->operator!= (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_operator_eq__3380 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkAddressEntry &arg1 = args.read (heap); + const QNetworkAddressEntry &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkAddressEntry &)((QNetworkAddressEntry *)cls)->operator= (arg1)); } @@ -168,7 +168,7 @@ static void _call_f_operator_eq__eq__c3380 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkAddressEntry &arg1 = args.read (heap); + const QNetworkAddressEntry &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkAddressEntry *)cls)->operator== (arg1)); } @@ -202,7 +202,7 @@ static void _call_f_setBroadcast_2518 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAddressEntry *)cls)->setBroadcast (arg1); } @@ -222,7 +222,7 @@ static void _call_f_setIp_2518 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAddressEntry *)cls)->setIp (arg1); } @@ -242,7 +242,7 @@ static void _call_f_setNetmask_2518 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAddressEntry *)cls)->setNetmask (arg1); } @@ -262,7 +262,7 @@ static void _call_f_setPrefixLength_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAddressEntry *)cls)->setPrefixLength (arg1); } @@ -282,7 +282,7 @@ static void _call_f_swap_2685 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkAddressEntry &arg1 = args.read (heap); + QNetworkAddressEntry &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkAddressEntry *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCacheMetaData.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCacheMetaData.cc index 768e17a29..9c13bfc02 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCacheMetaData.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCacheMetaData.cc @@ -67,7 +67,7 @@ static void _call_ctor_QNetworkCacheMetaData_3377 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write (new QNetworkCacheMetaData (arg1)); } @@ -131,7 +131,7 @@ static void _call_f_operator_excl__eq__c3377 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCacheMetaData *)cls)->operator!= (arg1)); } @@ -150,7 +150,7 @@ static void _call_f_operator_eq__3377 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCacheMetaData &)((QNetworkCacheMetaData *)cls)->operator= (arg1)); } @@ -169,7 +169,7 @@ static void _call_f_operator_eq__eq__c3377 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCacheMetaData *)cls)->operator== (arg1)); } @@ -218,7 +218,7 @@ static void _call_f_setExpirationDate_2175 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCacheMetaData *)cls)->setExpirationDate (arg1); } @@ -238,7 +238,7 @@ static void _call_f_setLastModified_2175 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCacheMetaData *)cls)->setLastModified (arg1); } @@ -258,7 +258,7 @@ static void _call_f_setRawHeaders_4991 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCacheMetaData *)cls)->setRawHeaders (arg1); } @@ -278,7 +278,7 @@ static void _call_f_setSaveToDisk_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCacheMetaData *)cls)->setSaveToDisk (arg1); } @@ -298,7 +298,7 @@ static void _call_f_setUrl_1701 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCacheMetaData *)cls)->setUrl (arg1); } @@ -318,7 +318,7 @@ static void _call_f_swap_2682 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkCacheMetaData &arg1 = args.read (heap); + QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCacheMetaData *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfiguration.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfiguration.cc index c11bdd81e..133e57ca3 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfiguration.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfiguration.cc @@ -65,7 +65,7 @@ static void _call_ctor_QNetworkConfiguration_3508 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); ret.write (new QNetworkConfiguration (arg1)); } @@ -204,7 +204,7 @@ static void _call_f_operator_excl__eq__c3508 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkConfiguration *)cls)->operator!= (arg1)); } @@ -223,7 +223,7 @@ static void _call_f_operator_eq__3508 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkConfiguration &)((QNetworkConfiguration *)cls)->operator= (arg1)); } @@ -242,7 +242,7 @@ static void _call_f_operator_eq__eq__c3508 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkConfiguration *)cls)->operator== (arg1)); } @@ -291,7 +291,7 @@ static void _call_f_swap_2813 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkConfiguration &arg1 = args.read (heap); + QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkConfiguration *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfigurationManager.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfigurationManager.cc index 5584dbf54..2b1e709a4 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfigurationManager.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkConfigurationManager.cc @@ -70,7 +70,7 @@ static void _call_f_allConfigurations_c4334 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(0); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write > ((QList)((QNetworkConfigurationManager *)cls)->allConfigurations (arg1)); } @@ -104,7 +104,7 @@ static void _call_f_configurationFromIdentifier_c2025 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkConfiguration)((QNetworkConfigurationManager *)cls)->configurationFromIdentifier (arg1)); } @@ -173,9 +173,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QNetworkConfigurationManager::tr (arg1, arg2, arg3)); } @@ -198,9 +198,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QNetworkConfigurationManager::trUtf8 (arg1, arg2, arg3)); } @@ -426,7 +426,7 @@ static void _call_ctor_QNetworkConfigurationManager_Adaptor_1302 (const qt_gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QNetworkConfigurationManager_Adaptor (arg1)); } @@ -468,7 +468,7 @@ static void _call_emitter_configurationAdded_3508 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); ((QNetworkConfigurationManager_Adaptor *)cls)->emitter_QNetworkConfigurationManager_configurationAdded_3508 (arg1); } @@ -486,7 +486,7 @@ static void _call_emitter_configurationChanged_3508 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); ((QNetworkConfigurationManager_Adaptor *)cls)->emitter_QNetworkConfigurationManager_configurationChanged_3508 (arg1); } @@ -504,7 +504,7 @@ static void _call_emitter_configurationRemoved_3508 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); ((QNetworkConfigurationManager_Adaptor *)cls)->emitter_QNetworkConfigurationManager_configurationRemoved_3508 (arg1); } @@ -546,7 +546,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QNetworkConfigurationManager_Adaptor *)cls)->emitter_QNetworkConfigurationManager_destroyed_1302 (arg1); } @@ -637,7 +637,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkConfigurationManager_Adaptor *)cls)->fp_QNetworkConfigurationManager_isSignalConnected_c2394 (arg1)); } @@ -655,7 +655,7 @@ static void _call_emitter_onlineStateChanged_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QNetworkConfigurationManager_Adaptor *)cls)->emitter_QNetworkConfigurationManager_onlineStateChanged_864 (arg1); } @@ -673,7 +673,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QNetworkConfigurationManager_Adaptor *)cls)->fp_QNetworkConfigurationManager_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookie.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookie.cc index 7c2924f4e..9f07a3187 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookie.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookie.cc @@ -54,8 +54,8 @@ static void _call_ctor_QNetworkCookie_4510 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - const QByteArray &arg2 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QByteArray &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); + const QByteArray &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QNetworkCookie (arg1, arg2)); } @@ -74,7 +74,7 @@ static void _call_ctor_QNetworkCookie_2742 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write (new QNetworkCookie (arg1)); } @@ -123,7 +123,7 @@ static void _call_f_hasSameIdentifier_c2742 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookie *)cls)->hasSameIdentifier (arg1)); } @@ -202,7 +202,7 @@ static void _call_f_normalize_1701 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->normalize (arg1); } @@ -222,7 +222,7 @@ static void _call_f_operator_excl__eq__c2742 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookie *)cls)->operator!= (arg1)); } @@ -241,7 +241,7 @@ static void _call_f_operator_eq__2742 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCookie &)((QNetworkCookie *)cls)->operator= (arg1)); } @@ -260,7 +260,7 @@ static void _call_f_operator_eq__eq__c2742 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookie *)cls)->operator== (arg1)); } @@ -294,7 +294,7 @@ static void _call_f_setDomain_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->setDomain (arg1); } @@ -314,7 +314,7 @@ static void _call_f_setExpirationDate_2175 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->setExpirationDate (arg1); } @@ -334,7 +334,7 @@ static void _call_f_setHttpOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->setHttpOnly (arg1); } @@ -354,7 +354,7 @@ static void _call_f_setName_2309 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->setName (arg1); } @@ -374,7 +374,7 @@ static void _call_f_setPath_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->setPath (arg1); } @@ -394,7 +394,7 @@ static void _call_f_setSecure_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->setSecure (arg1); } @@ -414,7 +414,7 @@ static void _call_f_setValue_2309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->setValue (arg1); } @@ -434,7 +434,7 @@ static void _call_f_swap_2047 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkCookie &arg1 = args.read (heap); + QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookie *)cls)->swap (arg1); } @@ -454,7 +454,7 @@ static void _call_f_toRawForm_c2683 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkCookie::Full)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QNetworkCookie::Full), heap); ret.write ((QByteArray)((QNetworkCookie *)cls)->toRawForm (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -488,7 +488,7 @@ static void _call_f_parseCookies_2309 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)QNetworkCookie::parseCookies (arg1)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookieJar.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookieJar.cc index 6d2e34fe5..cf3c390a4 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookieJar.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkCookieJar.cc @@ -71,7 +71,7 @@ static void _call_f_cookiesForUrl_c1701 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QNetworkCookieJar *)cls)->cookiesForUrl (arg1)); } @@ -90,7 +90,7 @@ static void _call_f_deleteCookie_2742 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar *)cls)->deleteCookie (arg1)); } @@ -109,7 +109,7 @@ static void _call_f_insertCookie_2742 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar *)cls)->insertCookie (arg1)); } @@ -130,8 +130,8 @@ static void _call_f_setCookiesFromUrl_4950 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QUrl &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar *)cls)->setCookiesFromUrl (arg1, arg2)); } @@ -150,7 +150,7 @@ static void _call_f_updateCookie_2742 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCookie &arg1 = args.read (heap); + const QNetworkCookie &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar *)cls)->updateCookie (arg1)); } @@ -173,9 +173,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QNetworkCookieJar::tr (arg1, arg2, arg3)); } @@ -198,9 +198,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QNetworkCookieJar::trUtf8 (arg1, arg2, arg3)); } @@ -496,7 +496,7 @@ static void _call_ctor_QNetworkCookieJar_Adaptor_1302 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QNetworkCookieJar_Adaptor (arg1)); } @@ -622,7 +622,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QNetworkCookieJar_Adaptor *)cls)->emitter_QNetworkCookieJar_destroyed_1302 (arg1); } @@ -736,7 +736,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkCookieJar_Adaptor *)cls)->fp_QNetworkCookieJar_isSignalConnected_c2394 (arg1)); } @@ -754,7 +754,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QNetworkCookieJar_Adaptor *)cls)->fp_QNetworkCookieJar_receivers_c1731 (arg1)); } @@ -800,7 +800,7 @@ static void _call_fp_setAllCookies_3357 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkCookieJar_Adaptor *)cls)->fp_QNetworkCookieJar_setAllCookies_3357 (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc index bc227b8a1..b7d062be0 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkDiskCache.cc @@ -118,7 +118,7 @@ static void _call_f_data_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QNetworkDiskCache *)cls)->data (arg1)); } @@ -137,7 +137,7 @@ static void _call_f_fileMetaData_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCacheMetaData)((QNetworkDiskCache *)cls)->fileMetaData (arg1)); } @@ -156,7 +156,7 @@ static void _call_f_insert_1447 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache *)cls)->insert (arg1); } @@ -191,7 +191,7 @@ static void _call_f_metaData_1701 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkCacheMetaData)((QNetworkDiskCache *)cls)->metaData (arg1)); } @@ -210,7 +210,7 @@ static void _call_f_prepare_3377 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIODevice *)((QNetworkDiskCache *)cls)->prepare (arg1)); } @@ -229,7 +229,7 @@ static void _call_f_remove_1701 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkDiskCache *)cls)->remove (arg1)); } @@ -248,7 +248,7 @@ static void _call_f_setCacheDirectory_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache *)cls)->setCacheDirectory (arg1); } @@ -268,7 +268,7 @@ static void _call_f_setMaximumCacheSize_986 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache *)cls)->setMaximumCacheSize (arg1); } @@ -288,7 +288,7 @@ static void _call_f_updateMetaData_3377 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkCacheMetaData &arg1 = args.read (heap); + const QNetworkCacheMetaData &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkDiskCache *)cls)->updateMetaData (arg1); } @@ -312,9 +312,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QNetworkDiskCache::tr (arg1, arg2, arg3)); } @@ -337,9 +337,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QNetworkDiskCache::trUtf8 (arg1, arg2, arg3)); } @@ -681,7 +681,7 @@ static void _call_ctor_QNetworkDiskCache_Adaptor_1302 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QNetworkDiskCache_Adaptor (arg1)); } @@ -809,7 +809,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QNetworkDiskCache_Adaptor *)cls)->emitter_QNetworkDiskCache_destroyed_1302 (arg1); } @@ -943,7 +943,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkDiskCache_Adaptor *)cls)->fp_QNetworkDiskCache_isSignalConnected_c2394 (arg1)); } @@ -1007,7 +1007,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QNetworkDiskCache_Adaptor *)cls)->fp_QNetworkDiskCache_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkInterface.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkInterface.cc index 6531ad7b0..1e112303b 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkInterface.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkInterface.cc @@ -67,7 +67,7 @@ static void _call_ctor_QNetworkInterface_3053 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkInterface &arg1 = args.read (heap); + const QNetworkInterface &arg1 = gsi::arg_reader() (args, heap); ret.write (new QNetworkInterface (arg1)); } @@ -191,7 +191,7 @@ static void _call_f_operator_eq__3053 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkInterface &arg1 = args.read (heap); + const QNetworkInterface &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkInterface &)((QNetworkInterface *)cls)->operator= (arg1)); } @@ -210,7 +210,7 @@ static void _call_f_swap_2358 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkInterface &arg1 = args.read (heap); + QNetworkInterface &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkInterface *)cls)->swap (arg1); } @@ -260,7 +260,7 @@ static void _call_f_interfaceFromIndex_767 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkInterface)QNetworkInterface::interfaceFromIndex (arg1)); } @@ -279,7 +279,7 @@ static void _call_f_interfaceFromName_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkInterface)QNetworkInterface::interfaceFromName (arg1)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxy.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxy.cc index 1d7b7d748..e5447d5ba 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxy.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxy.cc @@ -73,11 +73,11 @@ static void _call_ctor_QNetworkProxy_9632 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - quint16 arg3 = args ? args.read (heap) : (quint16)(0); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg5 = args ? args.read (heap) : (const QString &)(QString()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + quint16 arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QNetworkProxy (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5)); } @@ -96,7 +96,7 @@ static void _call_ctor_QNetworkProxy_2686 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); ret.write (new QNetworkProxy (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_hasRawHeader_c2309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkProxy *)cls)->hasRawHeader (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_header_c3349 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QNetworkProxy *)cls)->header (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -213,7 +213,7 @@ static void _call_f_operator_excl__eq__c2686 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkProxy *)cls)->operator!= (arg1)); } @@ -232,7 +232,7 @@ static void _call_f_operator_eq__2686 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkProxy &)((QNetworkProxy *)cls)->operator= (arg1)); } @@ -251,7 +251,7 @@ static void _call_f_operator_eq__eq__c2686 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkProxy *)cls)->operator== (arg1)); } @@ -300,7 +300,7 @@ static void _call_f_rawHeader_c2309 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QNetworkProxy *)cls)->rawHeader (arg1)); } @@ -334,7 +334,7 @@ static void _call_f_setCapabilities_3647 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxy *)cls)->setCapabilities (arg1); } @@ -356,8 +356,8 @@ static void _call_f_setHeader_5360 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxy *)cls)->setHeader (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -377,7 +377,7 @@ static void _call_f_setHostName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxy *)cls)->setHostName (arg1); } @@ -397,7 +397,7 @@ static void _call_f_setPassword_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxy *)cls)->setPassword (arg1); } @@ -417,7 +417,7 @@ static void _call_f_setPort_1100 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint16 arg1 = args.read (heap); + quint16 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxy *)cls)->setPort (arg1); } @@ -439,8 +439,8 @@ static void _call_f_setRawHeader_4510 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxy *)cls)->setRawHeader (arg1, arg2); } @@ -460,7 +460,7 @@ static void _call_f_setType_2889 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxy *)cls)->setType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -480,7 +480,7 @@ static void _call_f_setUser_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxy *)cls)->setUser (arg1); } @@ -500,7 +500,7 @@ static void _call_f_swap_1991 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkProxy &arg1 = args.read (heap); + QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxy *)cls)->swap (arg1); } @@ -565,7 +565,7 @@ static void _call_f_setApplicationProxy_2686 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QNetworkProxy::setApplicationProxy (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyFactory.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyFactory.cc index f9da09601..6c6b27869 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyFactory.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyFactory.cc @@ -52,7 +52,7 @@ static void _call_f_queryProxy_3220 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args ? args.read (heap) : (const QNetworkProxyQuery &)(QNetworkProxyQuery()); + const QNetworkProxyQuery &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QNetworkProxyQuery(), heap); ret.write > ((QList)((QNetworkProxyFactory *)cls)->queryProxy (arg1)); } @@ -71,7 +71,7 @@ static void _call_f_proxyForQuery_3220 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); + const QNetworkProxyQuery &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)QNetworkProxyFactory::proxyForQuery (arg1)); } @@ -90,7 +90,7 @@ static void _call_f_setApplicationProxyFactory_2723 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkProxyFactory *arg1 = args.read (heap); + QNetworkProxyFactory *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QNetworkProxyFactory::setApplicationProxyFactory (arg1); } @@ -110,7 +110,7 @@ static void _call_f_setUseSystemConfiguration_864 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QNetworkProxyFactory::setUseSystemConfiguration (arg1); } @@ -130,7 +130,7 @@ static void _call_f_systemProxyForQuery_3220 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args ? args.read (heap) : (const QNetworkProxyQuery &)(QNetworkProxyQuery()); + const QNetworkProxyQuery &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QNetworkProxyQuery(), heap); ret.write > ((QList)QNetworkProxyFactory::systemProxyForQuery (arg1)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyQuery.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyQuery.cc index 150848eba..369bff040 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyQuery.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkProxyQuery.cc @@ -69,8 +69,8 @@ static void _call_ctor_QNetworkProxyQuery_5004 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::UrlRequest)); + const QUrl &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::UrlRequest), heap); ret.write (new QNetworkProxyQuery (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -95,10 +95,10 @@ static void _call_ctor_QNetworkProxyQuery_7904 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpSocket)); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpSocket), heap); ret.write (new QNetworkProxyQuery (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -121,9 +121,9 @@ static void _call_ctor_QNetworkProxyQuery_6320 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - quint16 arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpServer)); + quint16 arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpServer), heap); ret.write (new QNetworkProxyQuery (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -142,7 +142,7 @@ static void _call_ctor_QNetworkProxyQuery_3220 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); + const QNetworkProxyQuery &arg1 = gsi::arg_reader() (args, heap); ret.write (new QNetworkProxyQuery (arg1)); } @@ -165,9 +165,9 @@ static void _call_ctor_QNetworkProxyQuery_8404 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::UrlRequest)); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::UrlRequest), heap); ret.write (new QNetworkProxyQuery (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -194,11 +194,11 @@ static void _call_ctor_QNetworkProxyQuery_11304 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpSocket)); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpSocket), heap); ret.write (new QNetworkProxyQuery (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -223,10 +223,10 @@ static void _call_ctor_QNetworkProxyQuery_9720 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpServer)); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QNetworkProxyQuery::TcpServer), heap); ret.write (new QNetworkProxyQuery (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -275,7 +275,7 @@ static void _call_f_operator_excl__eq__c3220 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); + const QNetworkProxyQuery &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkProxyQuery *)cls)->operator!= (arg1)); } @@ -294,7 +294,7 @@ static void _call_f_operator_eq__3220 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); + const QNetworkProxyQuery &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkProxyQuery &)((QNetworkProxyQuery *)cls)->operator= (arg1)); } @@ -313,7 +313,7 @@ static void _call_f_operator_eq__eq__c3220 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxyQuery &arg1 = args.read (heap); + const QNetworkProxyQuery &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkProxyQuery *)cls)->operator== (arg1)); } @@ -392,7 +392,7 @@ static void _call_f_setLocalPort_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxyQuery *)cls)->setLocalPort (arg1); } @@ -412,7 +412,7 @@ static void _call_f_setNetworkConfiguration_3508 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxyQuery *)cls)->setNetworkConfiguration (arg1); } @@ -432,7 +432,7 @@ static void _call_f_setPeerHostName_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxyQuery *)cls)->setPeerHostName (arg1); } @@ -452,7 +452,7 @@ static void _call_f_setPeerPort_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxyQuery *)cls)->setPeerPort (arg1); } @@ -472,7 +472,7 @@ static void _call_f_setProtocolTag_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxyQuery *)cls)->setProtocolTag (arg1); } @@ -492,7 +492,7 @@ static void _call_f_setQueryType_3411 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxyQuery *)cls)->setQueryType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -512,7 +512,7 @@ static void _call_f_setUrl_1701 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxyQuery *)cls)->setUrl (arg1); } @@ -532,7 +532,7 @@ static void _call_f_swap_2525 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkProxyQuery &arg1 = args.read (heap); + QNetworkProxyQuery &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkProxyQuery *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkReply.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkReply.cc index 85ae3142d..c09c25f25 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkReply.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkReply.cc @@ -89,7 +89,7 @@ static void _call_f_attribute_c3072 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QNetworkReply *)cls)->attribute (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -139,7 +139,7 @@ static void _call_f_hasRawHeader_c2309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkReply *)cls)->hasRawHeader (arg1)); } @@ -158,7 +158,7 @@ static void _call_f_header_c3349 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QNetworkReply *)cls)->header (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -177,7 +177,7 @@ static void _call_f_ignoreSslErrors_2837 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkReply *)cls)->ignoreSslErrors (arg1); } @@ -288,7 +288,7 @@ static void _call_f_rawHeader_c2309 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QNetworkReply *)cls)->rawHeader (arg1)); } @@ -367,7 +367,7 @@ static void _call_f_setReadBufferSize_986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkReply *)cls)->setReadBufferSize (arg1); } @@ -387,7 +387,7 @@ static void _call_f_setSslConfiguration_3068 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkReply *)cls)->setSslConfiguration (arg1); } @@ -441,9 +441,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QNetworkReply::tr (arg1, arg2, arg3)); } @@ -466,9 +466,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QNetworkReply::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkRequest.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkRequest.cc index f328a6742..b6b272fd2 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkRequest.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkRequest.cc @@ -53,7 +53,7 @@ static void _call_ctor_QNetworkRequest_1701 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args ? args.read (heap) : (const QUrl &)(QUrl()); + const QUrl &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QUrl(), heap); ret.write (new QNetworkRequest (arg1)); } @@ -72,7 +72,7 @@ static void _call_ctor_QNetworkRequest_2885 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); ret.write (new QNetworkRequest (arg1)); } @@ -93,8 +93,8 @@ static void _call_f_attribute_c5083 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args ? args.read (heap) : (const QVariant &)(QVariant()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QVariant(), heap); ret.write ((QVariant)((QNetworkRequest *)cls)->attribute (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -113,7 +113,7 @@ static void _call_f_hasRawHeader_c2309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkRequest *)cls)->hasRawHeader (arg1)); } @@ -132,7 +132,7 @@ static void _call_f_header_c3349 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QNetworkRequest *)cls)->header (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -151,7 +151,7 @@ static void _call_f_operator_excl__eq__c2885 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkRequest *)cls)->operator!= (arg1)); } @@ -170,7 +170,7 @@ static void _call_f_operator_eq__2885 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); ret.write ((QNetworkRequest &)((QNetworkRequest *)cls)->operator= (arg1)); } @@ -189,7 +189,7 @@ static void _call_f_operator_eq__eq__c2885 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkRequest &arg1 = args.read (heap); + const QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkRequest *)cls)->operator== (arg1)); } @@ -238,7 +238,7 @@ static void _call_f_rawHeader_c2309 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QNetworkRequest *)cls)->rawHeader (arg1)); } @@ -274,8 +274,8 @@ static void _call_f_setAttribute_5083 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkRequest *)cls)->setAttribute (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -297,8 +297,8 @@ static void _call_f_setHeader_5360 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkRequest *)cls)->setHeader (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -318,7 +318,7 @@ static void _call_f_setOriginatingObject_1302 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkRequest *)cls)->setOriginatingObject (arg1); } @@ -338,7 +338,7 @@ static void _call_f_setPriority_2990 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkRequest *)cls)->setPriority (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -360,8 +360,8 @@ static void _call_f_setRawHeader_4510 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const QByteArray &arg2 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const QByteArray &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkRequest *)cls)->setRawHeader (arg1, arg2); } @@ -381,7 +381,7 @@ static void _call_f_setSslConfiguration_3068 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkRequest *)cls)->setSslConfiguration (arg1); } @@ -401,7 +401,7 @@ static void _call_f_setUrl_1701 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkRequest *)cls)->setUrl (arg1); } @@ -436,7 +436,7 @@ static void _call_f_swap_2190 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkRequest &arg1 = args.read (heap); + QNetworkRequest &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkRequest *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkSession.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkSession.cc index f0d69ac99..ebaa68b25 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkSession.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQNetworkSession.cc @@ -287,7 +287,7 @@ static void _call_f_sessionProperty_c2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QNetworkSession *)cls)->sessionProperty (arg1)); } @@ -308,8 +308,8 @@ static void _call_f_setSessionProperty_4036 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QNetworkSession *)cls)->setSessionProperty (arg1, arg2); } @@ -375,7 +375,7 @@ static void _call_f_waitForOpened_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QNetworkSession *)cls)->waitForOpened (arg1)); } @@ -398,9 +398,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QNetworkSession::tr (arg1, arg2, arg3)); } @@ -423,9 +423,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QNetworkSession::trUtf8 (arg1, arg2, arg3)); } @@ -681,8 +681,8 @@ static void _call_ctor_QNetworkSession_Adaptor_4702 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QNetworkSession_Adaptor (arg1, arg2)); } @@ -762,7 +762,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QNetworkSession_Adaptor *)cls)->emitter_QNetworkSession_destroyed_1302 (arg1); } @@ -804,7 +804,7 @@ static void _call_emitter_error_3381 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QNetworkSession_Adaptor *)cls)->emitter_QNetworkSession_error_3381 (arg1); } @@ -871,7 +871,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QNetworkSession_Adaptor *)cls)->fp_QNetworkSession_isSignalConnected_c2394 (arg1)); } @@ -919,8 +919,8 @@ static void _call_emitter_preferredConfigurationChanged_4264 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkConfiguration &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QNetworkConfiguration &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); ((QNetworkSession_Adaptor *)cls)->emitter_QNetworkSession_preferredConfigurationChanged_4264 (arg1, arg2); } @@ -938,7 +938,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QNetworkSession_Adaptor *)cls)->fp_QNetworkSession_receivers_c1731 (arg1)); } @@ -984,7 +984,7 @@ static void _call_emitter_stateChanged_2632 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QNetworkSession_Adaptor *)cls)->emitter_QNetworkSession_stateChanged_2632 (arg1); } @@ -1026,7 +1026,7 @@ static void _call_emitter_usagePoliciesChanged_3940 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ((QNetworkSession_Adaptor *)cls)->emitter_QNetworkSession_usagePoliciesChanged_3940 (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificate.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificate.cc index c27482fdb..4a9d519e4 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificate.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificate.cc @@ -57,8 +57,8 @@ static void _call_ctor_QSslCertificate_3702 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); ret.write (new QSslCertificate (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -79,8 +79,8 @@ static void _call_ctor_QSslCertificate_4564 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); + const QByteArray &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); ret.write (new QSslCertificate (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -99,7 +99,7 @@ static void _call_ctor_QSslCertificate_2823 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSslCertificate (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_digest_c3331 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QCryptographicHash::Md5)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QCryptographicHash::Md5), heap); ret.write ((QByteArray)((QSslCertificate *)cls)->digest (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -258,7 +258,7 @@ static void _call_f_issuerInfo_c3178 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QStringList)((QSslCertificate *)cls)->issuerInfo (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -277,7 +277,7 @@ static void _call_f_issuerInfo_c2309 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QSslCertificate *)cls)->issuerInfo (arg1)); } @@ -311,7 +311,7 @@ static void _call_f_operator_excl__eq__c2823 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslCertificate *)cls)->operator!= (arg1)); } @@ -330,7 +330,7 @@ static void _call_f_operator_eq__2823 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSslCertificate &)((QSslCertificate *)cls)->operator= (arg1)); } @@ -349,7 +349,7 @@ static void _call_f_operator_eq__eq__c2823 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslCertificate *)cls)->operator== (arg1)); } @@ -398,7 +398,7 @@ static void _call_f_subjectInfo_c3178 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QStringList)((QSslCertificate *)cls)->subjectInfo (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -417,7 +417,7 @@ static void _call_f_subjectInfo_c2309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QSslCertificate *)cls)->subjectInfo (arg1)); } @@ -451,7 +451,7 @@ static void _call_f_swap_2128 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSslCertificate &arg1 = args.read (heap); + QSslCertificate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslCertificate *)cls)->swap (arg1); } @@ -533,8 +533,8 @@ static void _call_f_fromData_4564 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); ret.write > ((QList)QSslCertificate::fromData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -555,8 +555,8 @@ static void _call_f_fromDevice_3702 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); ret.write > ((QList)QSslCertificate::fromDevice (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -579,9 +579,9 @@ static void _call_f_fromPath_6773 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegExp::FixedString)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegExp::FixedString), heap); ret.write > ((QList)QSslCertificate::fromPath (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -608,11 +608,11 @@ static void _call_f_importPkcs12_9509 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - QSslKey *arg2 = args.read (heap); - QSslCertificate *arg3 = args.read (heap); - QList *arg4 = args ? args.read * > (heap) : (QList *)(0); - const QByteArray &arg5 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + QSslKey *arg2 = gsi::arg_reader() (args, heap); + QSslCertificate *arg3 = gsi::arg_reader() (args, heap); + QList *arg4 = args ? gsi::arg_reader * >() (args, heap) : gsi::arg_maker * >() (0, heap); + const QByteArray &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write ((bool)QSslCertificate::importPkcs12 (arg1, arg2, arg3, arg4, arg5)); } @@ -633,8 +633,8 @@ static void _call_f_verify_4478 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QList arg1 = args.read > (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + QList arg1 = gsi::arg_reader >() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write > ((QList)QSslCertificate::verify (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificateExtension.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificateExtension.cc index c447c9afa..9a68c4c43 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificateExtension.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCertificateExtension.cc @@ -65,7 +65,7 @@ static void _call_ctor_QSslCertificateExtension_3780 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificateExtension &arg1 = args.read (heap); + const QSslCertificateExtension &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSslCertificateExtension (arg1)); } @@ -144,7 +144,7 @@ static void _call_f_operator_eq__3780 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificateExtension &arg1 = args.read (heap); + const QSslCertificateExtension &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSslCertificateExtension &)((QSslCertificateExtension *)cls)->operator= (arg1)); } @@ -163,7 +163,7 @@ static void _call_f_swap_3085 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSslCertificateExtension &arg1 = args.read (heap); + QSslCertificateExtension &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslCertificateExtension *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCipher.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCipher.cc index 0c7164123..a0c524fa9 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCipher.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslCipher.cc @@ -65,7 +65,7 @@ static void _call_ctor_QSslCipher_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSslCipher (arg1)); } @@ -86,8 +86,8 @@ static void _call_ctor_QSslCipher_4012 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QSslCipher (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -106,7 +106,7 @@ static void _call_ctor_QSslCipher_2303 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCipher &arg1 = args.read (heap); + const QSslCipher &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSslCipher (arg1)); } @@ -200,7 +200,7 @@ static void _call_f_operator_excl__eq__c2303 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCipher &arg1 = args.read (heap); + const QSslCipher &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslCipher *)cls)->operator!= (arg1)); } @@ -219,7 +219,7 @@ static void _call_f_operator_eq__2303 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCipher &arg1 = args.read (heap); + const QSslCipher &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSslCipher &)((QSslCipher *)cls)->operator= (arg1)); } @@ -238,7 +238,7 @@ static void _call_f_operator_eq__eq__c2303 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCipher &arg1 = args.read (heap); + const QSslCipher &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslCipher *)cls)->operator== (arg1)); } @@ -302,7 +302,7 @@ static void _call_f_swap_1608 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSslCipher &arg1 = args.read (heap); + QSslCipher &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslCipher *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslConfiguration.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslConfiguration.cc index a7cd6ef45..9923a7112 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslConfiguration.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslConfiguration.cc @@ -69,7 +69,7 @@ static void _call_ctor_QSslConfiguration_3068 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSslConfiguration (arg1)); } @@ -223,7 +223,7 @@ static void _call_f_operator_excl__eq__c3068 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslConfiguration *)cls)->operator!= (arg1)); } @@ -242,7 +242,7 @@ static void _call_f_operator_eq__3068 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSslConfiguration &)((QSslConfiguration *)cls)->operator= (arg1)); } @@ -261,7 +261,7 @@ static void _call_f_operator_eq__eq__c3068 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslConfiguration *)cls)->operator== (arg1)); } @@ -430,7 +430,7 @@ static void _call_f_setAllowedNextProtocols_2047 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QList arg1 = args.read > (heap); + QList arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setAllowedNextProtocols (arg1); } @@ -450,7 +450,7 @@ static void _call_f_setCaCertificates_3438 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setCaCertificates (arg1); } @@ -470,7 +470,7 @@ static void _call_f_setCiphers_2918 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setCiphers (arg1); } @@ -490,7 +490,7 @@ static void _call_f_setEllipticCurves_3869 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector &arg1 = args.read & > (heap); + const QVector &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setEllipticCurves (arg1); } @@ -510,7 +510,7 @@ static void _call_f_setLocalCertificate_2823 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setLocalCertificate (arg1); } @@ -530,7 +530,7 @@ static void _call_f_setLocalCertificateChain_3438 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setLocalCertificateChain (arg1); } @@ -550,7 +550,7 @@ static void _call_f_setPeerVerifyDepth_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setPeerVerifyDepth (arg1); } @@ -570,7 +570,7 @@ static void _call_f_setPeerVerifyMode_2970 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setPeerVerifyMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -590,7 +590,7 @@ static void _call_f_setPrivateKey_1997 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslKey &arg1 = args.read (heap); + const QSslKey &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setPrivateKey (arg1); } @@ -610,7 +610,7 @@ static void _call_f_setProtocol_2095 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setProtocol (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -630,7 +630,7 @@ static void _call_f_setSessionTicket_2309 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setSessionTicket (arg1); } @@ -652,8 +652,8 @@ static void _call_f_setSslOption_2634 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->setSslOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -673,7 +673,7 @@ static void _call_f_swap_2373 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSslConfiguration &arg1 = args.read (heap); + QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslConfiguration *)cls)->swap (arg1); } @@ -693,7 +693,7 @@ static void _call_f_testSslOption_c1878 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QSslConfiguration *)cls)->testSslOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -727,7 +727,7 @@ static void _call_f_setDefaultConfiguration_3068 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSslConfiguration::setDefaultConfiguration (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslEllipticCurve.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslEllipticCurve.cc index e59425848..f99bd5754 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslEllipticCurve.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslEllipticCurve.cc @@ -125,7 +125,7 @@ static void _call_f_fromLongName_2025 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSslEllipticCurve)QSslEllipticCurve::fromLongName (arg1)); } @@ -144,7 +144,7 @@ static void _call_f_fromShortName_2025 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSslEllipticCurve)QSslEllipticCurve::fromShortName (arg1)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslError.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslError.cc index 6857207b3..a33690a78 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslError.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslError.cc @@ -66,7 +66,7 @@ static void _call_ctor_QSslError_2289 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QSslError (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -87,8 +87,8 @@ static void _call_ctor_QSslError_5004 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSslCertificate &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSslCertificate &arg2 = gsi::arg_reader() (args, heap); ret.write (new QSslError (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -107,7 +107,7 @@ static void _call_ctor_QSslError_2222 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslError &arg1 = args.read (heap); + const QSslError &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSslError (arg1)); } @@ -171,7 +171,7 @@ static void _call_f_operator_excl__eq__c2222 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslError &arg1 = args.read (heap); + const QSslError &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslError *)cls)->operator!= (arg1)); } @@ -190,7 +190,7 @@ static void _call_f_operator_eq__2222 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslError &arg1 = args.read (heap); + const QSslError &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSslError &)((QSslError *)cls)->operator= (arg1)); } @@ -209,7 +209,7 @@ static void _call_f_operator_eq__eq__c2222 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslError &arg1 = args.read (heap); + const QSslError &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslError *)cls)->operator== (arg1)); } @@ -228,7 +228,7 @@ static void _call_f_swap_1527 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSslError &arg1 = args.read (heap); + QSslError &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslError *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslKey.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslKey.cc index 184c5af26..e8b386ea4 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslKey.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslKey.cc @@ -74,11 +74,11 @@ static void _call_ctor_QSslKey_10374 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::PrivateKey)); - const QByteArray &arg5 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::PrivateKey), heap); + const QByteArray &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QSslKey (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref(), arg5)); } @@ -105,11 +105,11 @@ static void _call_ctor_QSslKey_9512 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::PrivateKey)); - const QByteArray &arg5 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::PrivateKey), heap); + const QByteArray &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write (new QSslKey (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref(), arg5)); } @@ -130,8 +130,8 @@ static void _call_ctor_QSslKey_2723 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - Qt::HANDLE arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::PrivateKey)); + Qt::HANDLE arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::PrivateKey), heap); ret.write (new QSslKey (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -150,7 +150,7 @@ static void _call_ctor_QSslKey_1997 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslKey &arg1 = args.read (heap); + const QSslKey &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSslKey (arg1)); } @@ -245,7 +245,7 @@ static void _call_f_operator_excl__eq__c1997 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslKey &arg1 = args.read (heap); + const QSslKey &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslKey *)cls)->operator!= (arg1)); } @@ -264,7 +264,7 @@ static void _call_f_operator_eq__1997 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslKey &arg1 = args.read (heap); + const QSslKey &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSslKey &)((QSslKey *)cls)->operator= (arg1)); } @@ -283,7 +283,7 @@ static void _call_f_operator_eq__eq__c1997 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslKey &arg1 = args.read (heap); + const QSslKey &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSslKey *)cls)->operator== (arg1)); } @@ -302,7 +302,7 @@ static void _call_f_swap_1302 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSslKey &arg1 = args.read (heap); + QSslKey &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslKey *)cls)->swap (arg1); } @@ -322,7 +322,7 @@ static void _call_f_toDer_c2309 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QByteArray &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write ((QByteArray)((QSslKey *)cls)->toDer (arg1)); } @@ -341,7 +341,7 @@ static void _call_f_toPem_c2309 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QByteArray &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); ret.write ((QByteArray)((QSslKey *)cls)->toPem (arg1)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslPreSharedKeyAuthenticator.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslPreSharedKeyAuthenticator.cc index edf390684..8f0905afb 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslPreSharedKeyAuthenticator.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslPreSharedKeyAuthenticator.cc @@ -65,7 +65,7 @@ static void _call_ctor_QSslPreSharedKeyAuthenticator_4262 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslPreSharedKeyAuthenticator &arg1 = args.read (heap); + const QSslPreSharedKeyAuthenticator &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSslPreSharedKeyAuthenticator (arg1)); } @@ -144,7 +144,7 @@ static void _call_f_operator_eq__4262 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslPreSharedKeyAuthenticator &arg1 = args.read (heap); + const QSslPreSharedKeyAuthenticator &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSslPreSharedKeyAuthenticator &)((QSslPreSharedKeyAuthenticator *)cls)->operator= (arg1)); } @@ -178,7 +178,7 @@ static void _call_f_setIdentity_2309 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslPreSharedKeyAuthenticator *)cls)->setIdentity (arg1); } @@ -198,7 +198,7 @@ static void _call_f_setPreSharedKey_2309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslPreSharedKeyAuthenticator *)cls)->setPreSharedKey (arg1); } @@ -218,7 +218,7 @@ static void _call_f_swap_3567 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSslPreSharedKeyAuthenticator &arg1 = args.read (heap); + QSslPreSharedKeyAuthenticator &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslPreSharedKeyAuthenticator *)cls)->swap (arg1); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslSocket.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslSocket.cc index 2c44280a0..075b060c1 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQSslSocket.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQSslSocket.cc @@ -76,7 +76,7 @@ static void _call_ctor_QSslSocket_1302 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSslSocket (arg1)); } @@ -111,7 +111,7 @@ static void _call_f_addCaCertificate_2823 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->addCaCertificate (arg1); } @@ -135,9 +135,9 @@ static void _call_f_addCaCertificates_6773 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegExp::FixedString)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegExp::FixedString), heap); ret.write ((bool)((QSslSocket *)cls)->addCaCertificates (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -156,7 +156,7 @@ static void _call_f_addCaCertificates_3438 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->addCaCertificates (arg1); } @@ -286,9 +286,9 @@ static void _call_f_connectToHost_6644 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->connectToHost (arg1, arg2, arg3); } @@ -314,10 +314,10 @@ static void _call_f_connectToHost_10218 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::AnyIPProtocol)); + const QString &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::AnyIPProtocol), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->connectToHost (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -343,10 +343,10 @@ static void _call_f_connectToHostEncrypted_10218 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::AnyIPProtocol)); + const QString &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::AnyIPProtocol), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->connectToHostEncrypted (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -374,11 +374,11 @@ static void _call_f_connectToHostEncrypted_12135 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - quint16 arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::AnyIPProtocol)); + const QString &arg1 = gsi::arg_reader() (args, heap); + quint16 arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::AnyIPProtocol), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->connectToHostEncrypted (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()); } @@ -459,7 +459,7 @@ static void _call_f_ignoreSslErrors_2837 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->ignoreSslErrors (arg1); } @@ -706,7 +706,7 @@ static void _call_f_setCaCertificates_3438 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setCaCertificates (arg1); } @@ -726,7 +726,7 @@ static void _call_f_setCiphers_2918 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setCiphers (arg1); } @@ -746,7 +746,7 @@ static void _call_f_setCiphers_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setCiphers (arg1); } @@ -766,7 +766,7 @@ static void _call_f_setLocalCertificate_2823 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setLocalCertificate (arg1); } @@ -788,8 +788,8 @@ static void _call_f_setLocalCertificate_4280 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setLocalCertificate (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -809,7 +809,7 @@ static void _call_f_setLocalCertificateChain_3438 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setLocalCertificateChain (arg1); } @@ -829,7 +829,7 @@ static void _call_f_setPeerVerifyDepth_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setPeerVerifyDepth (arg1); } @@ -849,7 +849,7 @@ static void _call_f_setPeerVerifyMode_2970 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setPeerVerifyMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -869,7 +869,7 @@ static void _call_f_setPeerVerifyName_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setPeerVerifyName (arg1); } @@ -889,7 +889,7 @@ static void _call_f_setPrivateKey_1997 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslKey &arg1 = args.read (heap); + const QSslKey &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setPrivateKey (arg1); } @@ -915,10 +915,10 @@ static void _call_f_setPrivateKey_8544 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Rsa)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const QByteArray &arg4 = args ? args.read (heap) : (const QByteArray &)(QByteArray()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Rsa), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); + const QByteArray &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QByteArray(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setPrivateKey (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), arg4); } @@ -938,7 +938,7 @@ static void _call_f_setProtocol_2095 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setProtocol (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -958,7 +958,7 @@ static void _call_f_setReadBufferSize_986 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setReadBufferSize (arg1); } @@ -982,9 +982,9 @@ static void _call_f_setSocketDescriptor_9696 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIntegerForSizeof::Signed arg1 = args.read::Signed > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::ConnectedState)); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QIODevice::ReadWrite); + QIntegerForSizeof::Signed arg1 = gsi::arg_reader::Signed >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractSocket::ConnectedState), heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QIODevice::ReadWrite, heap); ret.write ((bool)((QSslSocket *)cls)->setSocketDescriptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -1005,8 +1005,8 @@ static void _call_f_setSocketOption_5331 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setSocketOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -1026,7 +1026,7 @@ static void _call_f_setSslConfiguration_3068 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslConfiguration &arg1 = args.read (heap); + const QSslConfiguration &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSslSocket *)cls)->setSslConfiguration (arg1); } @@ -1046,7 +1046,7 @@ static void _call_f_socketOption_3320 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QSslSocket *)cls)->socketOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1127,7 +1127,7 @@ static void _call_f_waitForBytesWritten_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QSslSocket *)cls)->waitForBytesWritten (arg1)); } @@ -1146,7 +1146,7 @@ static void _call_f_waitForConnected_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QSslSocket *)cls)->waitForConnected (arg1)); } @@ -1165,7 +1165,7 @@ static void _call_f_waitForDisconnected_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QSslSocket *)cls)->waitForDisconnected (arg1)); } @@ -1184,7 +1184,7 @@ static void _call_f_waitForEncrypted_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QSslSocket *)cls)->waitForEncrypted (arg1)); } @@ -1203,7 +1203,7 @@ static void _call_f_waitForReadyRead_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(30000); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (30000, heap); ret.write ((bool)((QSslSocket *)cls)->waitForReadyRead (arg1)); } @@ -1222,7 +1222,7 @@ static void _call_f_addDefaultCaCertificate_2823 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSslCertificate &arg1 = args.read (heap); + const QSslCertificate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSslSocket::addDefaultCaCertificate (arg1); } @@ -1246,9 +1246,9 @@ static void _call_f_addDefaultCaCertificates_6773 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QRegExp::FixedString)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSsl::Pem), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QRegExp::FixedString), heap); ret.write ((bool)QSslSocket::addDefaultCaCertificates (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -1267,7 +1267,7 @@ static void _call_f_addDefaultCaCertificates_3438 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSslSocket::addDefaultCaCertificates (arg1); } @@ -1317,7 +1317,7 @@ static void _call_f_setDefaultCaCertificates_3438 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSslSocket::setDefaultCaCertificates (arg1); } @@ -1337,7 +1337,7 @@ static void _call_f_setDefaultCiphers_2918 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSslSocket::setDefaultCiphers (arg1); } @@ -1466,9 +1466,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSslSocket::tr (arg1, arg2, arg3)); } @@ -1491,9 +1491,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSslSocket::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpServer.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpServer.cc index ddf33ee2a..73dfc2ee9 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpServer.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpServer.cc @@ -135,8 +135,8 @@ static void _call_f_listen_3510 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args ? args.read (heap) : (const QHostAddress &)(QHostAddress::Any); - quint16 arg2 = args ? args.read (heap) : (quint16)(0); + const QHostAddress &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QHostAddress::Any, heap); + quint16 arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QTcpServer *)cls)->listen (arg1, arg2)); } @@ -277,7 +277,7 @@ static void _call_f_setMaxPendingConnections_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer *)cls)->setMaxPendingConnections (arg1); } @@ -297,7 +297,7 @@ static void _call_f_setProxy_2686 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkProxy &arg1 = args.read (heap); + const QNetworkProxy &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer *)cls)->setProxy (arg1); } @@ -317,7 +317,7 @@ static void _call_f_setSocketDescriptor_3470 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIntegerForSizeof::Signed arg1 = args.read::Signed > (heap); + QIntegerForSizeof::Signed arg1 = gsi::arg_reader::Signed >() (args, heap); ret.write ((bool)((QTcpServer *)cls)->setSocketDescriptor (arg1)); } @@ -353,8 +353,8 @@ static void _call_f_waitForNewConnection_1709 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QTcpServer *)cls)->waitForNewConnection (arg1, arg2)); } @@ -377,9 +377,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTcpServer::tr (arg1, arg2, arg3)); } @@ -402,9 +402,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTcpServer::trUtf8 (arg1, arg2, arg3)); } @@ -674,7 +674,7 @@ static void _call_ctor_QTcpServer_Adaptor_1302 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTcpServer_Adaptor (arg1)); } @@ -692,7 +692,7 @@ static void _call_emitter_acceptError_3209 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QTcpServer_Adaptor *)cls)->emitter_QTcpServer_acceptError_3209 (arg1); } @@ -710,7 +710,7 @@ static void _call_fp_addPendingConnection_1615 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTcpSocket *arg1 = args.read (heap); + QTcpSocket *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTcpServer_Adaptor *)cls)->fp_QTcpServer_addPendingConnection_1615 (arg1); } @@ -777,7 +777,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTcpServer_Adaptor *)cls)->emitter_QTcpServer_destroyed_1302 (arg1); } @@ -911,7 +911,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTcpServer_Adaptor *)cls)->fp_QTcpServer_isSignalConnected_c2394 (arg1)); } @@ -962,7 +962,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTcpServer_Adaptor *)cls)->fp_QTcpServer_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpSocket.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpSocket.cc index d0d2f4659..d739c2aea 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpSocket.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQTcpSocket.cc @@ -70,7 +70,7 @@ static void _call_ctor_QTcpSocket_1302 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTcpSocket (arg1)); } @@ -93,9 +93,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTcpSocket::tr (arg1, arg2, arg3)); } @@ -118,9 +118,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTcpSocket::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtNetwork/gsiDeclQUdpSocket.cc b/src/gsiqt/qt5/QtNetwork/gsiDeclQUdpSocket.cc index d7257f09c..ffeef90b1 100644 --- a/src/gsiqt/qt5/QtNetwork/gsiDeclQUdpSocket.cc +++ b/src/gsiqt/qt5/QtNetwork/gsiDeclQUdpSocket.cc @@ -71,7 +71,7 @@ static void _call_ctor_QUdpSocket_1302 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUdpSocket (arg1)); } @@ -105,7 +105,7 @@ static void _call_f_joinMulticastGroup_2518 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUdpSocket *)cls)->joinMulticastGroup (arg1)); } @@ -126,8 +126,8 @@ static void _call_f_joinMulticastGroup_5463 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); - const QNetworkInterface &arg2 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); + const QNetworkInterface &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUdpSocket *)cls)->joinMulticastGroup (arg1, arg2)); } @@ -146,7 +146,7 @@ static void _call_f_leaveMulticastGroup_2518 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUdpSocket *)cls)->leaveMulticastGroup (arg1)); } @@ -167,8 +167,8 @@ static void _call_f_leaveMulticastGroup_5463 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QHostAddress &arg1 = args.read (heap); - const QNetworkInterface &arg2 = args.read (heap); + const QHostAddress &arg1 = gsi::arg_reader() (args, heap); + const QNetworkInterface &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUdpSocket *)cls)->leaveMulticastGroup (arg1, arg2)); } @@ -217,7 +217,7 @@ static void _call_f_setMulticastInterface_3053 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QNetworkInterface &arg1 = args.read (heap); + const QNetworkInterface &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUdpSocket *)cls)->setMulticastInterface (arg1); } @@ -243,10 +243,10 @@ static void _call_f_writeDatagram_6011 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - qint64 arg2 = args.read (heap); - const QHostAddress &arg3 = args.read (heap); - quint16 arg4 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + qint64 arg2 = gsi::arg_reader() (args, heap); + const QHostAddress &arg3 = gsi::arg_reader() (args, heap); + quint16 arg4 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QUdpSocket *)cls)->writeDatagram (arg1, arg2, arg3, arg4)); } @@ -269,9 +269,9 @@ static void _call_f_writeDatagram_5711 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const QHostAddress &arg2 = args.read (heap); - quint16 arg3 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const QHostAddress &arg2 = gsi::arg_reader() (args, heap); + quint16 arg3 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QUdpSocket *)cls)->writeDatagram (arg1, arg2, arg3)); } @@ -294,9 +294,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QUdpSocket::tr (arg1, arg2, arg3)); } @@ -319,9 +319,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QUdpSocket::trUtf8 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc index 0806ed01a..de6706759 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQAbstractPrintDialog.cc @@ -115,7 +115,7 @@ static void _call_f_addEnabledOption_4320 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog *)cls)->addEnabledOption (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -180,7 +180,7 @@ static void _call_f_isOptionEnabled_c4320 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QAbstractPrintDialog *)cls)->isOptionEnabled (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -259,7 +259,7 @@ static void _call_f_setEnabledOptions_5016 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog *)cls)->setEnabledOptions (arg1); } @@ -281,8 +281,8 @@ static void _call_f_setFromTo_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog *)cls)->setFromTo (arg1, arg2); } @@ -304,8 +304,8 @@ static void _call_f_setMinMax_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog *)cls)->setMinMax (arg1, arg2); } @@ -325,7 +325,7 @@ static void _call_f_setOptionTabs_2663 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog *)cls)->setOptionTabs (arg1); } @@ -345,7 +345,7 @@ static void _call_f_setPrintRange_3588 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog *)cls)->setPrintRange (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -384,9 +384,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractPrintDialog::tr (arg1, arg2, arg3)); } @@ -409,9 +409,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractPrintDialog::trUtf8 (arg1, arg2, arg3)); } @@ -1396,8 +1396,8 @@ static void _call_ctor_QAbstractPrintDialog_Adaptor_2650 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QPrinter *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractPrintDialog_Adaptor (arg1, arg2)); } @@ -1473,7 +1473,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->fp_QAbstractPrintDialog_adjustPosition_1315 (arg1); } @@ -1592,9 +1592,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->fp_QAbstractPrintDialog_create_2208 (arg1, arg2, arg3); } @@ -1613,7 +1613,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QAbstractPrintDialog_Adaptor *)cls)->emitter_QAbstractPrintDialog_customContextMenuRequested_1916 (arg1); } @@ -1657,8 +1657,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractPrintDialog_Adaptor *)cls)->fp_QAbstractPrintDialog_destroy_1620 (arg1, arg2); } @@ -1677,7 +1677,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractPrintDialog_Adaptor *)cls)->emitter_QAbstractPrintDialog_destroyed_1302 (arg1); } @@ -1931,7 +1931,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QAbstractPrintDialog_Adaptor *)cls)->emitter_QAbstractPrintDialog_finished_767 (arg1); } @@ -2185,7 +2185,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractPrintDialog_Adaptor *)cls)->fp_QAbstractPrintDialog_isSignalConnected_c2394 (arg1)); } @@ -2529,7 +2529,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractPrintDialog_Adaptor *)cls)->fp_QAbstractPrintDialog_receivers_c1731 (arg1)); } @@ -2829,7 +2829,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QAbstractPrintDialog_Adaptor *)cls)->emitter_QAbstractPrintDialog_windowIconChanged_1787 (arg1); } @@ -2847,7 +2847,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QAbstractPrintDialog_Adaptor *)cls)->emitter_QAbstractPrintDialog_windowIconTextChanged_2025 (arg1); } @@ -2865,7 +2865,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QAbstractPrintDialog_Adaptor *)cls)->emitter_QAbstractPrintDialog_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPageSetupDialog.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPageSetupDialog.cc index 68dc91662..3b0fed384 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPageSetupDialog.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPageSetupDialog.cc @@ -66,7 +66,7 @@ static void _call_f_done_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPageSetupDialog *)cls)->done (arg1); } @@ -119,8 +119,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPageSetupDialog *)cls)->open (arg1, arg2); } @@ -159,9 +159,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPageSetupDialog::tr (arg1, arg2, arg3)); } @@ -184,9 +184,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPageSetupDialog::trUtf8 (arg1, arg2, arg3)); } @@ -281,8 +281,8 @@ static void _call_ctor_QPageSetupDialog_Adaptor_2650 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QPrinter *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPageSetupDialog_Adaptor (arg1, arg2)); } @@ -300,7 +300,7 @@ static void _call_ctor_QPageSetupDialog_Adaptor_1315 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPageSetupDialog_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc index 7ac6ab870..1552f4ebb 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintDialog.cc @@ -131,7 +131,7 @@ static void _call_f_done_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog *)cls)->done (arg1); } @@ -184,8 +184,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog *)cls)->open (arg1, arg2); } @@ -222,8 +222,8 @@ static void _call_f_setOption_5076 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -243,7 +243,7 @@ static void _call_f_setOptions_5016 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog *)cls)->setOptions (arg1); } @@ -263,7 +263,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog *)cls)->setVisible (arg1); } @@ -283,7 +283,7 @@ static void _call_f_testOption_c4320 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPrintDialog *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -306,9 +306,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPrintDialog::tr (arg1, arg2, arg3)); } @@ -331,9 +331,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPrintDialog::trUtf8 (arg1, arg2, arg3)); } @@ -1332,8 +1332,8 @@ static void _call_ctor_QPrintDialog_Adaptor_2650 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QPrinter *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPrintDialog_Adaptor (arg1, arg2)); } @@ -1351,7 +1351,7 @@ static void _call_ctor_QPrintDialog_Adaptor_1315 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPrintDialog_Adaptor (arg1)); } @@ -1403,7 +1403,7 @@ static void _call_emitter_accepted_1443 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); + QPrinter *arg1 = gsi::arg_reader() (args, heap); ((QPrintDialog_Adaptor *)cls)->emitter_QPrintDialog_accepted_1443 (arg1); } @@ -1445,7 +1445,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->fp_QPrintDialog_adjustPosition_1315 (arg1); } @@ -1564,9 +1564,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->fp_QPrintDialog_create_2208 (arg1, arg2, arg3); } @@ -1585,7 +1585,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QPrintDialog_Adaptor *)cls)->emitter_QPrintDialog_customContextMenuRequested_1916 (arg1); } @@ -1629,8 +1629,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintDialog_Adaptor *)cls)->fp_QPrintDialog_destroy_1620 (arg1, arg2); } @@ -1649,7 +1649,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPrintDialog_Adaptor *)cls)->emitter_QPrintDialog_destroyed_1302 (arg1); } @@ -1903,7 +1903,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPrintDialog_Adaptor *)cls)->emitter_QPrintDialog_finished_767 (arg1); } @@ -2157,7 +2157,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintDialog_Adaptor *)cls)->fp_QPrintDialog_isSignalConnected_c2394 (arg1)); } @@ -2501,7 +2501,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPrintDialog_Adaptor *)cls)->fp_QPrintDialog_receivers_c1731 (arg1)); } @@ -2801,7 +2801,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QPrintDialog_Adaptor *)cls)->emitter_QPrintDialog_windowIconChanged_1787 (arg1); } @@ -2819,7 +2819,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QPrintDialog_Adaptor *)cls)->emitter_QPrintDialog_windowIconTextChanged_2025 (arg1); } @@ -2837,7 +2837,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QPrintDialog_Adaptor *)cls)->emitter_QPrintDialog_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintEngine.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintEngine.cc index f4942cec3..aaaa939b7 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintEngine.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintEngine.cc @@ -65,7 +65,7 @@ static void _call_f_metric_c3445 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPrintEngine *)cls)->metric (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -114,7 +114,7 @@ static void _call_f_property_c4045 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPrintEngine *)cls)->property (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -135,8 +135,8 @@ static void _call_f_setProperty_6056 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintEngine *)cls)->setProperty (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc index 743ebbd41..fe3965346 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewDialog.cc @@ -115,7 +115,7 @@ static void _call_f_done_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog *)cls)->done (arg1); } @@ -153,8 +153,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog *)cls)->open (arg1, arg2); } @@ -189,7 +189,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog *)cls)->setVisible (arg1); } @@ -213,9 +213,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPrintPreviewDialog::tr (arg1, arg2, arg3)); } @@ -238,9 +238,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPrintPreviewDialog::trUtf8 (arg1, arg2, arg3)); } @@ -1246,8 +1246,8 @@ static void _call_ctor_QPrintPreviewDialog_Adaptor_3702 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QPrintPreviewDialog_Adaptor (arg1, arg2)); } @@ -1269,9 +1269,9 @@ static void _call_ctor_QPrintPreviewDialog_Adaptor_5037 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + QPrinter *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QPrintPreviewDialog_Adaptor (arg1, arg2, arg3)); } @@ -1347,7 +1347,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->fp_QPrintPreviewDialog_adjustPosition_1315 (arg1); } @@ -1466,9 +1466,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->fp_QPrintPreviewDialog_create_2208 (arg1, arg2, arg3); } @@ -1487,7 +1487,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewDialog_Adaptor *)cls)->emitter_QPrintPreviewDialog_customContextMenuRequested_1916 (arg1); } @@ -1531,8 +1531,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewDialog_Adaptor *)cls)->fp_QPrintPreviewDialog_destroy_1620 (arg1, arg2); } @@ -1551,7 +1551,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPrintPreviewDialog_Adaptor *)cls)->emitter_QPrintPreviewDialog_destroyed_1302 (arg1); } @@ -1805,7 +1805,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewDialog_Adaptor *)cls)->emitter_QPrintPreviewDialog_finished_767 (arg1); } @@ -2059,7 +2059,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewDialog_Adaptor *)cls)->fp_QPrintPreviewDialog_isSignalConnected_c2394 (arg1)); } @@ -2403,7 +2403,7 @@ static void _call_emitter_paintRequested_1443 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); + QPrinter *arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewDialog_Adaptor *)cls)->emitter_QPrintPreviewDialog_paintRequested_1443 (arg1); } @@ -2421,7 +2421,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPrintPreviewDialog_Adaptor *)cls)->fp_QPrintPreviewDialog_receivers_c1731 (arg1)); } @@ -2721,7 +2721,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewDialog_Adaptor *)cls)->emitter_QPrintPreviewDialog_windowIconChanged_1787 (arg1); } @@ -2739,7 +2739,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewDialog_Adaptor *)cls)->emitter_QPrintPreviewDialog_windowIconTextChanged_2025 (arg1); } @@ -2757,7 +2757,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewDialog_Adaptor *)cls)->emitter_QPrintPreviewDialog_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc index 6922e7aa0..da9fc0e36 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrintPreviewWidget.cc @@ -224,7 +224,7 @@ static void _call_f_setCurrentPage_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->setCurrentPage (arg1); } @@ -276,7 +276,7 @@ static void _call_f_setOrientation_2537 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -328,7 +328,7 @@ static void _call_f_setViewMode_3308 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->setViewMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -348,7 +348,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->setVisible (arg1); } @@ -368,7 +368,7 @@ static void _call_f_setZoomFactor_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->setZoomFactor (arg1); } @@ -388,7 +388,7 @@ static void _call_f_setZoomMode_3318 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->setZoomMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -454,7 +454,7 @@ static void _call_f_zoomIn_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args ? args.read (heap) : (double)(1.1); + double arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->zoomIn (arg1); } @@ -489,7 +489,7 @@ static void _call_f_zoomOut_1071 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args ? args.read (heap) : (double)(1.1); + double arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1.1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget *)cls)->zoomOut (arg1); } @@ -513,9 +513,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPrintPreviewWidget::tr (arg1, arg2, arg3)); } @@ -538,9 +538,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPrintPreviewWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1467,9 +1467,9 @@ static void _call_ctor_QPrintPreviewWidget_Adaptor_5037 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + QPrinter *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QPrintPreviewWidget_Adaptor (arg1, arg2, arg3)); } @@ -1489,8 +1489,8 @@ static void _call_ctor_QPrintPreviewWidget_Adaptor_3702 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QPrintPreviewWidget_Adaptor (arg1, arg2)); } @@ -1632,9 +1632,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->fp_QPrintPreviewWidget_create_2208 (arg1, arg2, arg3); } @@ -1653,7 +1653,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewWidget_Adaptor *)cls)->emitter_QPrintPreviewWidget_customContextMenuRequested_1916 (arg1); } @@ -1697,8 +1697,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrintPreviewWidget_Adaptor *)cls)->fp_QPrintPreviewWidget_destroy_1620 (arg1, arg2); } @@ -1717,7 +1717,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPrintPreviewWidget_Adaptor *)cls)->emitter_QPrintPreviewWidget_destroyed_1302 (arg1); } @@ -2164,7 +2164,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPrintPreviewWidget_Adaptor *)cls)->fp_QPrintPreviewWidget_isSignalConnected_c2394 (arg1)); } @@ -2488,7 +2488,7 @@ static void _call_emitter_paintRequested_1443 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrinter *arg1 = args.read (heap); + QPrinter *arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewWidget_Adaptor *)cls)->emitter_QPrintPreviewWidget_paintRequested_1443 (arg1); } @@ -2520,7 +2520,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPrintPreviewWidget_Adaptor *)cls)->fp_QPrintPreviewWidget_receivers_c1731 (arg1)); } @@ -2786,7 +2786,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewWidget_Adaptor *)cls)->emitter_QPrintPreviewWidget_windowIconChanged_1787 (arg1); } @@ -2804,7 +2804,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewWidget_Adaptor *)cls)->emitter_QPrintPreviewWidget_windowIconTextChanged_2025 (arg1); } @@ -2822,7 +2822,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QPrintPreviewWidget_Adaptor *)cls)->emitter_QPrintPreviewWidget_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc index f68ff9cdc..2f8f99208 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinter.cc @@ -249,11 +249,11 @@ static void _call_f_getPageMargins_c6385 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args.read::target_type & > (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->getPageMargins (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()); } @@ -393,7 +393,7 @@ static void _call_f_pageRect_c1789 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QRectF)((QPrinter *)cls)->pageRect (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -472,7 +472,7 @@ static void _call_f_paperRect_c1789 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QRectF)((QPrinter *)cls)->paperRect (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -506,7 +506,7 @@ static void _call_f_paperSize_c1789 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QSizeF)((QPrinter *)cls)->paperSize (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -630,7 +630,7 @@ static void _call_f_setCollateCopies_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setCollateCopies (arg1); } @@ -650,7 +650,7 @@ static void _call_f_setColorMode_2273 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setColorMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -670,7 +670,7 @@ static void _call_f_setCopyCount_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setCopyCount (arg1); } @@ -690,7 +690,7 @@ static void _call_f_setCreator_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setCreator (arg1); } @@ -710,7 +710,7 @@ static void _call_f_setDocName_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setDocName (arg1); } @@ -730,7 +730,7 @@ static void _call_f_setDoubleSidedPrinting_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setDoubleSidedPrinting (arg1); } @@ -750,7 +750,7 @@ static void _call_f_setDuplex_2388 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setDuplex (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -770,7 +770,7 @@ static void _call_f_setFontEmbeddingEnabled_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setFontEmbeddingEnabled (arg1); } @@ -792,8 +792,8 @@ static void _call_f_setFromTo_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setFromTo (arg1, arg2); } @@ -813,7 +813,7 @@ static void _call_f_setFullPage_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setFullPage (arg1); } @@ -833,7 +833,7 @@ static void _call_f_setMargins_3812 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPagedPaintDevice::Margins &arg1 = args.read (heap); + const QPagedPaintDevice::Margins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setMargins (arg1); } @@ -853,7 +853,7 @@ static void _call_f_setNumCopies_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setNumCopies (arg1); } @@ -873,7 +873,7 @@ static void _call_f_setOrientation_2537 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -893,7 +893,7 @@ static void _call_f_setOutputFileName_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setOutputFileName (arg1); } @@ -913,7 +913,7 @@ static void _call_f_setOutputFormat_2647 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setOutputFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -935,8 +935,8 @@ static void _call_f_setPageMargins_4145 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMarginsF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QMarginsF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QPrinter *)cls)->setPageMargins (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -963,11 +963,11 @@ static void _call_f_setPageMargins_5641 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args.read::target_type & > (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPageMargins (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()); } @@ -987,7 +987,7 @@ static void _call_f_setPageOrder_2262 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPageOrder (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1007,7 +1007,7 @@ static void _call_f_setPageSize_3006 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPageSize (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1027,7 +1027,7 @@ static void _call_f_setPageSizeMM_1875 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPageSizeMM (arg1); } @@ -1047,7 +1047,7 @@ static void _call_f_setPaperName_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPaperName (arg1); } @@ -1067,7 +1067,7 @@ static void _call_f_setPaperSize_3006 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPaperSize (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1089,8 +1089,8 @@ static void _call_f_setPaperSize_3556 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPaperSize (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1110,7 +1110,7 @@ static void _call_f_setPaperSource_2502 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPaperSource (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1130,7 +1130,7 @@ static void _call_f_setPrintProgram_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPrintProgram (arg1); } @@ -1150,7 +1150,7 @@ static void _call_f_setPrintRange_2391 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPrintRange (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1170,7 +1170,7 @@ static void _call_f_setPrinterName_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setPrinterName (arg1); } @@ -1190,7 +1190,7 @@ static void _call_f_setResolution_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setResolution (arg1); } @@ -1210,7 +1210,7 @@ static void _call_f_setWinPageSize_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter *)cls)->setWinPageSize (arg1); } @@ -1570,7 +1570,7 @@ static void _call_ctor_QPrinter_Adaptor_2502 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QPrinter::ScreenResolution)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPrinter::ScreenResolution), heap); ret.write (new QPrinter_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1590,8 +1590,8 @@ static void _call_ctor_QPrinter_Adaptor_4924 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPrinterInfo &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QPrinter::ScreenResolution)); + const QPrinterInfo &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPrinter::ScreenResolution), heap); ret.write (new QPrinter_Adaptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -1747,8 +1747,8 @@ static void _call_fp_setEngines_3527 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPrintEngine *arg1 = args.read (heap); - QPaintEngine *arg2 = args.read (heap); + QPrintEngine *arg1 = gsi::arg_reader() (args, heap); + QPaintEngine *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPrinter_Adaptor *)cls)->fp_QPrinter_setEngines_3527 (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinterInfo.cc b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinterInfo.cc index 15b4eb495..88daf6e82 100644 --- a/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinterInfo.cc +++ b/src/gsiqt/qt5/QtPrintSupport/gsiDeclQPrinterInfo.cc @@ -68,7 +68,7 @@ static void _call_ctor_QPrinterInfo_2530 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPrinterInfo &arg1 = args.read (heap); + const QPrinterInfo &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPrinterInfo (arg1)); } @@ -87,7 +87,7 @@ static void _call_ctor_QPrinterInfo_2134 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPrinter &arg1 = args.read (heap); + const QPrinter &arg1 = gsi::arg_reader() (args, heap); ret.write (new QPrinterInfo (arg1)); } @@ -256,7 +256,7 @@ static void _call_f_operator_eq__2530 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPrinterInfo &arg1 = args.read (heap); + const QPrinterInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPrinterInfo &)((QPrinterInfo *)cls)->operator= (arg1)); } @@ -455,7 +455,7 @@ static void _call_f_printerInfo_2025 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPrinterInfo)QPrinterInfo::printerInfo (arg1)); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlDatabase.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlDatabase.cc index 8c02032c0..3f9d3f800 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlDatabase.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlDatabase.cc @@ -71,7 +71,7 @@ static void _call_ctor_QSqlDatabase_2487 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlDatabase &arg1 = args.read (heap); + const QSqlDatabase &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlDatabase (arg1)); } @@ -196,7 +196,7 @@ static void _call_f_exec_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QSqlQuery)((QSqlDatabase *)cls)->exec (arg1)); } @@ -322,8 +322,8 @@ static void _call_f_open_3942 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDatabase *)cls)->open (arg1, arg2)); } @@ -342,7 +342,7 @@ static void _call_f_operator_eq__2487 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlDatabase &arg1 = args.read (heap); + const QSqlDatabase &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlDatabase &)((QSqlDatabase *)cls)->operator= (arg1)); } @@ -391,7 +391,7 @@ static void _call_f_primaryIndex_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlIndex)((QSqlDatabase *)cls)->primaryIndex (arg1)); } @@ -410,7 +410,7 @@ static void _call_f_record_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRecord)((QSqlDatabase *)cls)->record (arg1)); } @@ -444,7 +444,7 @@ static void _call_f_setConnectOptions_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDatabase *)cls)->setConnectOptions (arg1); } @@ -464,7 +464,7 @@ static void _call_f_setDatabaseName_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDatabase *)cls)->setDatabaseName (arg1); } @@ -484,7 +484,7 @@ static void _call_f_setHostName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDatabase *)cls)->setHostName (arg1); } @@ -504,7 +504,7 @@ static void _call_f_setNumericalPrecisionPolicy_3429 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDatabase *)cls)->setNumericalPrecisionPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -524,7 +524,7 @@ static void _call_f_setPassword_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDatabase *)cls)->setPassword (arg1); } @@ -544,7 +544,7 @@ static void _call_f_setPort_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDatabase *)cls)->setPort (arg1); } @@ -564,7 +564,7 @@ static void _call_f_setUserName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDatabase *)cls)->setUserName (arg1); } @@ -584,7 +584,7 @@ static void _call_f_tables_c1843 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSql::Tables)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSql::Tables), heap); ret.write ((QStringList)((QSqlDatabase *)cls)->tables (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -635,8 +635,8 @@ static void _call_f_addDatabase_3942 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QLatin1String(QSqlDatabase::defaultConnection)); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QLatin1String(QSqlDatabase::defaultConnection), heap); ret.write ((QSqlDatabase)QSqlDatabase::addDatabase (arg1, arg2)); } @@ -657,8 +657,8 @@ static void _call_f_addDatabase_3544 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSqlDriver *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QLatin1String(QSqlDatabase::defaultConnection)); + QSqlDriver *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QLatin1String(QSqlDatabase::defaultConnection), heap); ret.write ((QSqlDatabase)QSqlDatabase::addDatabase (arg1, arg2)); } @@ -679,8 +679,8 @@ static void _call_f_cloneDatabase_4404 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlDatabase &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QSqlDatabase &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSqlDatabase)QSqlDatabase::cloneDatabase (arg1, arg2)); } @@ -714,7 +714,7 @@ static void _call_f_contains_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QLatin1String(QSqlDatabase::defaultConnection)); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QLatin1String(QSqlDatabase::defaultConnection), heap); ret.write ((bool)QSqlDatabase::contains (arg1)); } @@ -735,8 +735,8 @@ static void _call_f_database_2781 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QLatin1String(QSqlDatabase::defaultConnection)); - bool arg2 = args ? args.read (heap) : (bool)(true); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QLatin1String(QSqlDatabase::defaultConnection), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); ret.write ((QSqlDatabase)QSqlDatabase::database (arg1, arg2)); } @@ -770,7 +770,7 @@ static void _call_f_isDriverAvailable_2025 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QSqlDatabase::isDriverAvailable (arg1)); } @@ -791,8 +791,8 @@ static void _call_f_registerSqlDriver_4643 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QSqlDriverCreatorBase *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QSqlDriverCreatorBase *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSqlDatabase::registerSqlDriver (arg1, arg2); } @@ -812,7 +812,7 @@ static void _call_f_removeDatabase_2025 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QSqlDatabase::removeDatabase (arg1); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriver.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriver.cc index f7d87d1e5..fe95cbd7f 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriver.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlDriver.cc @@ -167,8 +167,8 @@ static void _call_f_escapeIdentifier_c4919 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QSqlDriver *)cls)->escapeIdentifier (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -189,8 +189,8 @@ static void _call_f_formatValue_c2938 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((QString)((QSqlDriver *)cls)->formatValue (arg1, arg2)); } @@ -224,7 +224,7 @@ static void _call_f_hasFeature_c2893 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QSqlDriver *)cls)->hasFeature (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -245,8 +245,8 @@ static void _call_f_isIdentifierEscaped_c4919 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QSqlDriver *)cls)->isIdentifierEscaped (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -335,12 +335,12 @@ static void _call_f_open_10352 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - int arg5 = args ? args.read (heap) : (int)(-1); - const QString &arg6 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + const QString &arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((bool)((QSqlDriver *)cls)->open (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -359,7 +359,7 @@ static void _call_f_primaryIndex_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlIndex)((QSqlDriver *)cls)->primaryIndex (arg1)); } @@ -378,7 +378,7 @@ static void _call_f_record_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRecord)((QSqlDriver *)cls)->record (arg1)); } @@ -412,7 +412,7 @@ static void _call_f_setNumericalPrecisionPolicy_3429 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlDriver *)cls)->setNumericalPrecisionPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -438,10 +438,10 @@ static void _call_f_sqlStatement_c7794 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - const QSqlRecord &arg3 = args.read (heap); - bool arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QSqlRecord &arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)((QSqlDriver *)cls)->sqlStatement (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -462,8 +462,8 @@ static void _call_f_stripDelimiters_c4919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QSqlDriver *)cls)->stripDelimiters (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -482,7 +482,7 @@ static void _call_f_subscribeToNotification_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver *)cls)->subscribeToNotification (arg1)); } @@ -516,7 +516,7 @@ static void _call_f_tables_c1843 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QStringList)((QSqlDriver *)cls)->tables (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -535,7 +535,7 @@ static void _call_f_unsubscribeFromNotification_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver *)cls)->unsubscribeFromNotification (arg1)); } @@ -558,9 +558,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSqlDriver::tr (arg1, arg2, arg3)); } @@ -583,9 +583,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSqlDriver::trUtf8 (arg1, arg2, arg3)); } @@ -1201,7 +1201,7 @@ static void _call_ctor_QSqlDriver_Adaptor_1302 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSqlDriver_Adaptor (arg1)); } @@ -1363,7 +1363,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSqlDriver_Adaptor *)cls)->emitter_QSqlDriver_destroyed_1302 (arg1); } @@ -1593,7 +1593,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlDriver_Adaptor *)cls)->fp_QSqlDriver_isSignalConnected_c2394 (arg1)); } @@ -1611,7 +1611,7 @@ static void _call_emitter_notification_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSqlDriver_Adaptor *)cls)->emitter_QSqlDriver_notification_2025 (arg1); } @@ -1633,9 +1633,9 @@ static void _call_emitter_notification_7365 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); ((QSqlDriver_Adaptor *)cls)->emitter_QSqlDriver_notification_7365 (arg1, arg2, arg3); } @@ -1714,7 +1714,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSqlDriver_Adaptor *)cls)->fp_QSqlDriver_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlError.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlError.cc index 3821d759e..037d39747 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlError.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlError.cc @@ -56,10 +56,10 @@ static void _call_ctor_QSqlError_6892 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - int arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write (new QSqlError (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -84,10 +84,10 @@ static void _call_ctor_QSqlError_8150 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSqlError::NoError)); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSqlError::NoError), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QSqlError (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -106,7 +106,7 @@ static void _call_ctor_QSqlError_2220 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlError (arg1)); } @@ -200,7 +200,7 @@ static void _call_f_operator_excl__eq__c2220 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlError *)cls)->operator!= (arg1)); } @@ -219,7 +219,7 @@ static void _call_f_operator_eq__2220 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlError &)((QSqlError *)cls)->operator= (arg1)); } @@ -238,7 +238,7 @@ static void _call_f_operator_eq__eq__c2220 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlError *)cls)->operator== (arg1)); } @@ -257,7 +257,7 @@ static void _call_f_setDatabaseText_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlError *)cls)->setDatabaseText (arg1); } @@ -277,7 +277,7 @@ static void _call_f_setDriverText_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlError *)cls)->setDriverText (arg1); } @@ -297,7 +297,7 @@ static void _call_f_setNumber_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlError *)cls)->setNumber (arg1); } @@ -317,7 +317,7 @@ static void _call_f_setType_2399 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlError *)cls)->setType (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlField.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlField.cc index 4608cef87..db7efa94f 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlField.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlField.cc @@ -52,8 +52,8 @@ static void _call_ctor_QSqlField_3693 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QVariant::Invalid)); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QVariant::Invalid), heap); ret.write (new QSqlField (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -72,7 +72,7 @@ static void _call_ctor_QSqlField_2182 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlField (arg1)); } @@ -227,7 +227,7 @@ static void _call_f_operator_excl__eq__c2182 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlField *)cls)->operator!= (arg1)); } @@ -246,7 +246,7 @@ static void _call_f_operator_eq__2182 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlField &)((QSqlField *)cls)->operator= (arg1)); } @@ -265,7 +265,7 @@ static void _call_f_operator_eq__eq__c2182 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlField *)cls)->operator== (arg1)); } @@ -314,7 +314,7 @@ static void _call_f_setAutoValue_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setAutoValue (arg1); } @@ -334,7 +334,7 @@ static void _call_f_setDefaultValue_2119 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setDefaultValue (arg1); } @@ -354,7 +354,7 @@ static void _call_f_setGenerated_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setGenerated (arg1); } @@ -374,7 +374,7 @@ static void _call_f_setLength_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setLength (arg1); } @@ -394,7 +394,7 @@ static void _call_f_setName_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setName (arg1); } @@ -414,7 +414,7 @@ static void _call_f_setPrecision_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setPrecision (arg1); } @@ -434,7 +434,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setReadOnly (arg1); } @@ -454,7 +454,7 @@ static void _call_f_setRequired_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setRequired (arg1); } @@ -474,7 +474,7 @@ static void _call_f_setRequiredStatus_2898 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setRequiredStatus (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -494,7 +494,7 @@ static void _call_f_setSqlType_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setSqlType (arg1); } @@ -514,7 +514,7 @@ static void _call_f_setType_1776 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -534,7 +534,7 @@ static void _call_f_setValue_2119 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlField *)cls)->setValue (arg1); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlIndex.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlIndex.cc index 79b7615c0..2d3d811cd 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlIndex.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlIndex.cc @@ -54,8 +54,8 @@ static void _call_ctor_QSqlIndex_3942 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QSqlIndex (arg1, arg2)); } @@ -74,7 +74,7 @@ static void _call_ctor_QSqlIndex_2202 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlIndex &arg1 = args.read (heap); + const QSqlIndex &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlIndex (arg1)); } @@ -93,7 +93,7 @@ static void _call_f_append_2182 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlIndex *)cls)->append (arg1); } @@ -115,8 +115,8 @@ static void _call_f_append_2938 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlIndex *)cls)->append (arg1, arg2); } @@ -151,7 +151,7 @@ static void _call_f_isDescending_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlIndex *)cls)->isDescending (arg1)); } @@ -185,7 +185,7 @@ static void _call_f_operator_eq__2202 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlIndex &arg1 = args.read (heap); + const QSqlIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlIndex &)((QSqlIndex *)cls)->operator= (arg1)); } @@ -204,7 +204,7 @@ static void _call_f_setCursorName_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlIndex *)cls)->setCursorName (arg1); } @@ -226,8 +226,8 @@ static void _call_f_setDescending_1523 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlIndex *)cls)->setDescending (arg1, arg2); } @@ -247,7 +247,7 @@ static void _call_f_setName_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlIndex *)cls)->setName (arg1); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlQuery.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlQuery.cc index 0fb502bf4..89212b5d6 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlQuery.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlQuery.cc @@ -55,7 +55,7 @@ static void _call_ctor_QSqlQuery_1646 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSqlResult *arg1 = args.read (heap); + QSqlResult *arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlQuery (arg1)); } @@ -76,8 +76,8 @@ static void _call_ctor_QSqlQuery_3527 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); - QSqlDatabase arg2 = args ? args.read (heap) : (QSqlDatabase)(QSqlDatabase()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QSqlDatabase arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSqlDatabase(), heap); ret.write (new QSqlQuery (arg1, arg2)); } @@ -96,7 +96,7 @@ static void _call_ctor_QSqlQuery_1610 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSqlDatabase arg1 = args.read (heap); + QSqlDatabase arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlQuery (arg1)); } @@ -115,7 +115,7 @@ static void _call_ctor_QSqlQuery_2232 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlQuery &arg1 = args.read (heap); + const QSqlQuery &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlQuery (arg1)); } @@ -136,8 +136,8 @@ static void _call_f_addBindValue_4937 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QSql::In); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QSql::In, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQuery *)cls)->addBindValue (arg1, arg2); } @@ -176,9 +176,9 @@ static void _call_f_bindValue_6854 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QSql::In); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QSql::In, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQuery *)cls)->bindValue (arg1, arg2, arg3); } @@ -202,9 +202,9 @@ static void _call_f_bindValue_5596 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(QSql::In); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QSql::In, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQuery *)cls)->bindValue (arg1, arg2, arg3); } @@ -224,7 +224,7 @@ static void _call_f_boundValue_c2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlQuery *)cls)->boundValue (arg1)); } @@ -243,7 +243,7 @@ static void _call_f_boundValue_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlQuery *)cls)->boundValue (arg1)); } @@ -308,7 +308,7 @@ static void _call_f_exec_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQuery *)cls)->exec (arg1)); } @@ -342,7 +342,7 @@ static void _call_f_execBatch_3290 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSqlQuery::ValuesAsRows)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSqlQuery::ValuesAsRows), heap); ret.write ((bool)((QSqlQuery *)cls)->execBatch (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -437,7 +437,7 @@ static void _call_f_isNull_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQuery *)cls)->isNull (arg1)); } @@ -456,7 +456,7 @@ static void _call_f_isNull_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQuery *)cls)->isNull (arg1)); } @@ -625,7 +625,7 @@ static void _call_f_operator_eq__2232 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlQuery &arg1 = args.read (heap); + const QSqlQuery &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlQuery &)((QSqlQuery *)cls)->operator= (arg1)); } @@ -644,7 +644,7 @@ static void _call_f_prepare_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQuery *)cls)->prepare (arg1)); } @@ -710,8 +710,8 @@ static void _call_f_seek_1523 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((bool)((QSqlQuery *)cls)->seek (arg1, arg2)); } @@ -730,7 +730,7 @@ static void _call_f_setForwardOnly_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQuery *)cls)->setForwardOnly (arg1); } @@ -750,7 +750,7 @@ static void _call_f_setNumericalPrecisionPolicy_3429 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQuery *)cls)->setNumericalPrecisionPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -785,7 +785,7 @@ static void _call_f_value_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlQuery *)cls)->value (arg1)); } @@ -804,7 +804,7 @@ static void _call_f_value_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlQuery *)cls)->value (arg1)); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc index 67f31ab74..8d63cfa2b 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlQueryModel.cc @@ -78,7 +78,7 @@ static void _call_f_canFetchMore_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel *)cls)->canFetchMore (arg1)); } @@ -113,7 +113,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlQueryModel *)cls)->columnCount (arg1)); } @@ -134,8 +134,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlQueryModel *)cls)->data (arg1, arg2)); } @@ -154,7 +154,7 @@ static void _call_f_fetchMore_2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel *)cls)->fetchMore (arg1); } @@ -178,9 +178,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlQueryModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -203,9 +203,9 @@ static void _call_f_insertColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel *)cls)->insertColumns (arg1, arg2, arg3)); } @@ -254,7 +254,7 @@ static void _call_f_record_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRecord)((QSqlQueryModel *)cls)->record (arg1)); } @@ -292,9 +292,9 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlQueryModel *)cls)->removeColumns (arg1, arg2, arg3)); } @@ -313,7 +313,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlQueryModel *)cls)->rowCount (arg1)); } @@ -338,10 +338,10 @@ static void _call_f_setHeaderData_5242 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const QVariant &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(Qt::EditRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlQueryModel *)cls)->setHeaderData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4)); } @@ -360,7 +360,7 @@ static void _call_f_setQuery_2232 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlQuery &arg1 = args.read (heap); + const QSqlQuery &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel *)cls)->setQuery (arg1); } @@ -382,8 +382,8 @@ static void _call_f_setQuery_4404 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QSqlDatabase &arg2 = args ? args.read (heap) : (const QSqlDatabase &)(QSqlDatabase()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QSqlDatabase &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSqlDatabase(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel *)cls)->setQuery (arg1, arg2); } @@ -407,9 +407,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSqlQueryModel::tr (arg1, arg2, arg3)); } @@ -432,9 +432,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSqlQueryModel::trUtf8 (arg1, arg2, arg3)); } @@ -1338,7 +1338,7 @@ static void _call_ctor_QSqlQueryModel_Adaptor_1302 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSqlQueryModel_Adaptor (arg1)); } @@ -1360,9 +1360,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1385,9 +1385,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1414,11 +1414,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1444,11 +1444,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1470,9 +1470,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1495,9 +1495,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -1614,8 +1614,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_changePersistentIndex_4682 (arg1, arg2); } @@ -1636,8 +1636,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -1727,9 +1727,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -1751,9 +1751,9 @@ static void _call_fp_createIndex_c2657 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quintptr arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quintptr arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_createIndex_c2657 (arg1, arg2, arg3)); } @@ -1825,9 +1825,9 @@ static void _call_emitter_dataChanged_7048 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); ((QSqlQueryModel_Adaptor *)cls)->emitter_QSqlQueryModel_dataChanged_7048 (arg1, arg2, arg3); } @@ -1851,10 +1851,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -1872,7 +1872,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSqlQueryModel_Adaptor *)cls)->emitter_QSqlQueryModel_destroyed_1302 (arg1); } @@ -1951,8 +1951,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_encodeData_c4599 (arg1, arg2); } @@ -2205,9 +2205,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QSqlQueryModel_Adaptor *)cls)->emitter_QSqlQueryModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2335,7 +2335,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_isSignalConnected_c2394 (arg1)); } @@ -2378,8 +2378,8 @@ static void _call_emitter_layoutAboutToBeChanged_7947 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QSqlQueryModel_Adaptor *)cls)->emitter_QSqlQueryModel_layoutAboutToBeChanged_7947 (arg1, arg2); } @@ -2399,8 +2399,8 @@ static void _call_emitter_layoutChanged_7947 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QSqlQueryModel_Adaptor *)cls)->emitter_QSqlQueryModel_layoutChanged_7947 (arg1, arg2); } @@ -2599,7 +2599,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_receivers_c1731 (arg1)); } @@ -2867,7 +2867,7 @@ static void _call_fp_setLastError_2220 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlQueryModel_Adaptor *)cls)->fp_QSqlQueryModel_setLastError_2220 (arg1); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRecord.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRecord.cc index 07bf83752..d0a6ef089 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRecord.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRecord.cc @@ -66,7 +66,7 @@ static void _call_ctor_QSqlRecord_2305 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlRecord &arg1 = args.read (heap); + const QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSqlRecord (arg1)); } @@ -85,7 +85,7 @@ static void _call_f_append_2182 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlField &arg1 = args.read (heap); + const QSqlField &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->append (arg1); } @@ -137,7 +137,7 @@ static void _call_f_contains_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRecord *)cls)->contains (arg1)); } @@ -171,7 +171,7 @@ static void _call_f_field_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlField)((QSqlRecord *)cls)->field (arg1)); } @@ -190,7 +190,7 @@ static void _call_f_field_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlField)((QSqlRecord *)cls)->field (arg1)); } @@ -209,7 +209,7 @@ static void _call_f_fieldName_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QSqlRecord *)cls)->fieldName (arg1)); } @@ -228,7 +228,7 @@ static void _call_f_indexOf_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSqlRecord *)cls)->indexOf (arg1)); } @@ -249,8 +249,8 @@ static void _call_f_insert_2841 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlField &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlField &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->insert (arg1, arg2); } @@ -285,7 +285,7 @@ static void _call_f_isGenerated_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRecord *)cls)->isGenerated (arg1)); } @@ -304,7 +304,7 @@ static void _call_f_isGenerated_c2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRecord *)cls)->isGenerated (arg1)); } @@ -323,7 +323,7 @@ static void _call_f_isNull_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRecord *)cls)->isNull (arg1)); } @@ -342,7 +342,7 @@ static void _call_f_isNull_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRecord *)cls)->isNull (arg1)); } @@ -361,7 +361,7 @@ static void _call_f_keyValues_c2305 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlRecord &arg1 = args.read (heap); + const QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRecord)((QSqlRecord *)cls)->keyValues (arg1)); } @@ -380,7 +380,7 @@ static void _call_f_operator_excl__eq__c2305 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlRecord &arg1 = args.read (heap); + const QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRecord *)cls)->operator!= (arg1)); } @@ -399,7 +399,7 @@ static void _call_f_operator_eq__2305 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlRecord &arg1 = args.read (heap); + const QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRecord &)((QSqlRecord *)cls)->operator= (arg1)); } @@ -418,7 +418,7 @@ static void _call_f_operator_eq__eq__c2305 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlRecord &arg1 = args.read (heap); + const QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRecord *)cls)->operator== (arg1)); } @@ -437,7 +437,7 @@ static void _call_f_remove_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->remove (arg1); } @@ -459,8 +459,8 @@ static void _call_f_replace_2841 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlField &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlField &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->replace (arg1, arg2); } @@ -482,8 +482,8 @@ static void _call_f_setGenerated_2781 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->setGenerated (arg1, arg2); } @@ -505,8 +505,8 @@ static void _call_f_setGenerated_1523 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->setGenerated (arg1, arg2); } @@ -526,7 +526,7 @@ static void _call_f_setNull_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->setNull (arg1); } @@ -546,7 +546,7 @@ static void _call_f_setNull_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->setNull (arg1); } @@ -568,8 +568,8 @@ static void _call_f_setValue_2778 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->setValue (arg1, arg2); } @@ -591,8 +591,8 @@ static void _call_f_setValue_4036 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRecord *)cls)->setValue (arg1, arg2); } @@ -612,7 +612,7 @@ static void _call_f_value_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlRecord *)cls)->value (arg1)); } @@ -631,7 +631,7 @@ static void _call_f_value_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlRecord *)cls)->value (arg1)); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelation.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelation.cc index af5e99d73..1fa5e167c 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelation.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelation.cc @@ -69,9 +69,9 @@ static void _call_ctor_QSqlRelation_5859 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write (new QSqlRelation (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc index cad172dfe..090b7c04d 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlRelationalTableModel.cc @@ -99,8 +99,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlRelationalTableModel *)cls)->data (arg1, arg2)); } @@ -119,7 +119,7 @@ static void _call_f_relation_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRelation)((QSqlRelationalTableModel *)cls)->relation (arg1)); } @@ -138,7 +138,7 @@ static void _call_f_relationModel_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlTableModel *)((QSqlRelationalTableModel *)cls)->relationModel (arg1)); } @@ -161,9 +161,9 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlRelationalTableModel *)cls)->removeColumns (arg1, arg2, arg3)); } @@ -182,7 +182,7 @@ static void _call_f_revertRow_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel *)cls)->revertRow (arg1); } @@ -221,9 +221,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlRelationalTableModel *)cls)->setData (arg1, arg2, arg3)); } @@ -242,7 +242,7 @@ static void _call_f_setJoinMode_3746 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel *)cls)->setJoinMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -264,8 +264,8 @@ static void _call_f_setRelation_3187 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlRelation &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlRelation &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel *)cls)->setRelation (arg1, arg2); } @@ -285,7 +285,7 @@ static void _call_f_setTable_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel *)cls)->setTable (arg1); } @@ -309,9 +309,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSqlRelationalTableModel::tr (arg1, arg2, arg3)); } @@ -334,9 +334,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSqlRelationalTableModel::trUtf8 (arg1, arg2, arg3)); } @@ -1510,8 +1510,8 @@ static void _call_ctor_QSqlRelationalTableModel_Adaptor_2804 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - QSqlDatabase arg2 = args ? args.read (heap) : (QSqlDatabase)(QSqlDatabase()); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QSqlDatabase arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSqlDatabase(), heap); ret.write (new QSqlRelationalTableModel_Adaptor (arg1, arg2)); } @@ -1529,7 +1529,7 @@ static void _call_emitter_beforeDelete_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_beforeDelete_767 (arg1); } @@ -1547,7 +1547,7 @@ static void _call_emitter_beforeInsert_1610 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSqlRecord &arg1 = args.read (heap); + QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_beforeInsert_1610 (arg1); } @@ -1567,8 +1567,8 @@ static void _call_emitter_beforeUpdate_2269 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_beforeUpdate_2269 (arg1, arg2); } @@ -1590,9 +1590,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1615,9 +1615,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1644,11 +1644,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1674,11 +1674,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1700,9 +1700,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1725,9 +1725,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -1844,8 +1844,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_changePersistentIndex_4682 (arg1, arg2); } @@ -1866,8 +1866,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -1957,9 +1957,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -1981,9 +1981,9 @@ static void _call_fp_createIndex_c2657 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quintptr arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quintptr arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_createIndex_c2657 (arg1, arg2, arg3)); } @@ -2055,9 +2055,9 @@ static void _call_emitter_dataChanged_7048 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_dataChanged_7048 (arg1, arg2, arg3); } @@ -2081,10 +2081,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -2125,7 +2125,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_destroyed_1302 (arg1); } @@ -2204,8 +2204,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_encodeData_c4599 (arg1, arg2); } @@ -2458,9 +2458,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2611,7 +2611,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_isSignalConnected_c2394 (arg1)); } @@ -2654,8 +2654,8 @@ static void _call_emitter_layoutAboutToBeChanged_7947 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_layoutAboutToBeChanged_7947 (arg1, arg2); } @@ -2675,8 +2675,8 @@ static void _call_emitter_layoutChanged_7947 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_layoutChanged_7947 (arg1, arg2); } @@ -2874,7 +2874,7 @@ static void _call_fp_primaryValues_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRecord)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_primaryValues_c767 (arg1)); } @@ -2894,8 +2894,8 @@ static void _call_emitter_primeInsert_2269 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ((QSqlRelationalTableModel_Adaptor *)cls)->emitter_QSqlRelationalTableModel_primeInsert_2269 (arg1, arg2); } @@ -2933,7 +2933,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_receivers_c1731 (arg1)); } @@ -3357,7 +3357,7 @@ static void _call_fp_setLastError_2220 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_setLastError_2220 (arg1); } @@ -3376,7 +3376,7 @@ static void _call_fp_setPrimaryKey_2202 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlIndex &arg1 = args.read (heap); + const QSqlIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_setPrimaryKey_2202 (arg1); } @@ -3395,7 +3395,7 @@ static void _call_fp_setQuery_2232 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlQuery &arg1 = args.read (heap); + const QSqlQuery &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlRelationalTableModel_Adaptor *)cls)->fp_QSqlRelationalTableModel_setQuery_2232 (arg1); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlResult.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlResult.cc index 1b944f579..3048bef77 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlResult.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlResult.cc @@ -675,8 +675,8 @@ static void _call_fp_addBindValue_4937 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlResult_Adaptor *)cls)->fp_QSqlResult_addBindValue_4937 (arg1, arg2); } @@ -769,7 +769,7 @@ static void _call_fp_bindValueType_c2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSqlResult_Adaptor *)cls)->fp_QSqlResult_bindValueType_c2025 (arg1)); } @@ -787,7 +787,7 @@ static void _call_fp_bindValueType_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSqlResult_Adaptor *)cls)->fp_QSqlResult_bindValueType_c767 (arg1)); } @@ -819,7 +819,7 @@ static void _call_fp_boundValue_c2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlResult_Adaptor *)cls)->fp_QSqlResult_boundValue_c2025 (arg1)); } @@ -837,7 +837,7 @@ static void _call_fp_boundValue_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QSqlResult_Adaptor *)cls)->fp_QSqlResult_boundValue_c767 (arg1)); } @@ -869,7 +869,7 @@ static void _call_fp_boundValueName_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QSqlResult_Adaptor *)cls)->fp_QSqlResult_boundValueName_c767 (arg1)); } diff --git a/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc b/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc index 69569d0a1..77a2e1c5f 100644 --- a/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc +++ b/src/gsiqt/qt5/QtSql/gsiDeclQSqlTableModel.cc @@ -97,8 +97,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlTableModel *)cls)->data (arg1, arg2)); } @@ -147,7 +147,7 @@ static void _call_f_fieldIndex_c2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSqlTableModel *)cls)->fieldIndex (arg1)); } @@ -181,7 +181,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QSqlTableModel *)cls)->flags (arg1)); } @@ -204,9 +204,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QSqlTableModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -227,8 +227,8 @@ static void _call_f_insertRecord_2964 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel *)cls)->insertRecord (arg1, arg2)); } @@ -251,9 +251,9 @@ static void _call_f_insertRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel *)cls)->insertRows (arg1, arg2, arg3)); } @@ -287,7 +287,7 @@ static void _call_f_isDirty_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel *)cls)->isDirty (arg1)); } @@ -336,7 +336,7 @@ static void _call_f_record_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRecord)((QSqlTableModel *)cls)->record (arg1)); } @@ -359,9 +359,9 @@ static void _call_f_removeColumns_3713 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel *)cls)->removeColumns (arg1, arg2, arg3)); } @@ -384,9 +384,9 @@ static void _call_f_removeRows_3713 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QSqlTableModel *)cls)->removeRows (arg1, arg2, arg3)); } @@ -437,7 +437,7 @@ static void _call_f_revertRow_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel *)cls)->revertRow (arg1); } @@ -457,7 +457,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QSqlTableModel *)cls)->rowCount (arg1)); } @@ -491,7 +491,7 @@ static void _call_f_selectRow_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel *)cls)->selectRow (arg1)); } @@ -514,9 +514,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QSqlTableModel *)cls)->setData (arg1, arg2, arg3)); } @@ -535,7 +535,7 @@ static void _call_f_setEditStrategy_3163 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel *)cls)->setEditStrategy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -555,7 +555,7 @@ static void _call_f_setFilter_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel *)cls)->setFilter (arg1); } @@ -577,8 +577,8 @@ static void _call_f_setRecord_2964 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel *)cls)->setRecord (arg1, arg2)); } @@ -599,8 +599,8 @@ static void _call_f_setSort_2340 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel *)cls)->setSort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -620,7 +620,7 @@ static void _call_f_setTable_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel *)cls)->setTable (arg1); } @@ -642,8 +642,8 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel *)cls)->sort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -712,9 +712,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSqlTableModel::tr (arg1, arg2, arg3)); } @@ -737,9 +737,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSqlTableModel::trUtf8 (arg1, arg2, arg3)); } @@ -1903,8 +1903,8 @@ static void _call_ctor_QSqlTableModel_Adaptor_2804 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); - QSqlDatabase arg2 = args ? args.read (heap) : (QSqlDatabase)(QSqlDatabase()); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QSqlDatabase arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSqlDatabase(), heap); ret.write (new QSqlTableModel_Adaptor (arg1, arg2)); } @@ -1922,7 +1922,7 @@ static void _call_emitter_beforeDelete_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_beforeDelete_767 (arg1); } @@ -1940,7 +1940,7 @@ static void _call_emitter_beforeInsert_1610 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSqlRecord &arg1 = args.read (heap); + QSqlRecord &arg1 = gsi::arg_reader() (args, heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_beforeInsert_1610 (arg1); } @@ -1960,8 +1960,8 @@ static void _call_emitter_beforeUpdate_2269 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_beforeUpdate_2269 (arg1, arg2); } @@ -1983,9 +1983,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -2008,9 +2008,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -2037,11 +2037,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -2067,11 +2067,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -2093,9 +2093,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -2118,9 +2118,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -2237,8 +2237,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_changePersistentIndex_4682 (arg1, arg2); } @@ -2259,8 +2259,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -2350,9 +2350,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -2374,9 +2374,9 @@ static void _call_fp_createIndex_c2657 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quintptr arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quintptr arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_createIndex_c2657 (arg1, arg2, arg3)); } @@ -2448,9 +2448,9 @@ static void _call_emitter_dataChanged_7048 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_dataChanged_7048 (arg1, arg2, arg3); } @@ -2474,10 +2474,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -2518,7 +2518,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_destroyed_1302 (arg1); } @@ -2597,8 +2597,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_encodeData_c4599 (arg1, arg2); } @@ -2851,9 +2851,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -3004,7 +3004,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_isSignalConnected_c2394 (arg1)); } @@ -3047,8 +3047,8 @@ static void _call_emitter_layoutAboutToBeChanged_7947 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_layoutAboutToBeChanged_7947 (arg1, arg2); } @@ -3068,8 +3068,8 @@ static void _call_emitter_layoutChanged_7947 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_layoutChanged_7947 (arg1, arg2); } @@ -3267,7 +3267,7 @@ static void _call_fp_primaryValues_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSqlRecord)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_primaryValues_c767 (arg1)); } @@ -3287,8 +3287,8 @@ static void _call_emitter_primeInsert_2269 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QSqlRecord &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QSqlRecord &arg2 = gsi::arg_reader() (args, heap); ((QSqlTableModel_Adaptor *)cls)->emitter_QSqlTableModel_primeInsert_2269 (arg1, arg2); } @@ -3326,7 +3326,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_receivers_c1731 (arg1)); } @@ -3727,7 +3727,7 @@ static void _call_fp_setLastError_2220 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlError &arg1 = args.read (heap); + const QSqlError &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_setLastError_2220 (arg1); } @@ -3746,7 +3746,7 @@ static void _call_fp_setPrimaryKey_2202 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlIndex &arg1 = args.read (heap); + const QSqlIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_setPrimaryKey_2202 (arg1); } @@ -3765,7 +3765,7 @@ static void _call_fp_setQuery_2232 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSqlQuery &arg1 = args.read (heap); + const QSqlQuery &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSqlTableModel_Adaptor *)cls)->fp_QSqlTableModel_setQuery_2232 (arg1); } diff --git a/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc b/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc index 6c2ac6a64..701424f28 100644 --- a/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc +++ b/src/gsiqt/qt5/QtSvg/gsiDeclQGraphicsSvgItem.cc @@ -160,9 +160,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem *)cls)->paint (arg1, arg2, arg3); } @@ -197,7 +197,7 @@ static void _call_f_setCachingEnabled_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem *)cls)->setCachingEnabled (arg1); } @@ -217,7 +217,7 @@ static void _call_f_setElementId_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem *)cls)->setElementId (arg1); } @@ -237,7 +237,7 @@ static void _call_f_setMaximumCacheSize_1805 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem *)cls)->setMaximumCacheSize (arg1); } @@ -257,7 +257,7 @@ static void _call_f_setSharedRenderer_1830 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSvgRenderer *arg1 = args.read (heap); + QSvgRenderer *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSvgItem *)cls)->setSharedRenderer (arg1); } @@ -296,9 +296,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsSvgItem::tr (arg1, arg2, arg3)); } @@ -321,9 +321,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsSvgItem::trUtf8 (arg1, arg2, arg3)); } @@ -1195,7 +1195,7 @@ static void _call_ctor_QGraphicsSvgItem_Adaptor_1919 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsSvgItem_Adaptor (arg1)); } @@ -1215,8 +1215,8 @@ static void _call_ctor_QGraphicsSvgItem_Adaptor_3836 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsSvgItem_Adaptor (arg1, arg2)); } @@ -1453,7 +1453,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsSvgItem_Adaptor *)cls)->emitter_QGraphicsSvgItem_destroyed_1302 (arg1); } @@ -1881,7 +1881,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSvgItem_Adaptor *)cls)->fp_QGraphicsSvgItem_isSignalConnected_c2394 (arg1)); } @@ -2161,7 +2161,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsSvgItem_Adaptor *)cls)->fp_QGraphicsSvgItem_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgGenerator.cc b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgGenerator.cc index ebcd3578b..682aa6fa3 100644 --- a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgGenerator.cc +++ b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgGenerator.cc @@ -118,7 +118,7 @@ static void _call_f_setDescription_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgGenerator *)cls)->setDescription (arg1); } @@ -138,7 +138,7 @@ static void _call_f_setFileName_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgGenerator *)cls)->setFileName (arg1); } @@ -158,7 +158,7 @@ static void _call_f_setOutputDevice_1447 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgGenerator *)cls)->setOutputDevice (arg1); } @@ -178,7 +178,7 @@ static void _call_f_setResolution_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgGenerator *)cls)->setResolution (arg1); } @@ -198,7 +198,7 @@ static void _call_f_setSize_1805 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgGenerator *)cls)->setSize (arg1); } @@ -218,7 +218,7 @@ static void _call_f_setTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgGenerator *)cls)->setTitle (arg1); } @@ -238,7 +238,7 @@ static void _call_f_setViewBox_1792 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgGenerator *)cls)->setViewBox (arg1); } @@ -258,7 +258,7 @@ static void _call_f_setViewBox_1862 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgGenerator *)cls)->setViewBox (arg1); } diff --git a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgRenderer.cc b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgRenderer.cc index 9d4018430..bec0c84d8 100644 --- a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgRenderer.cc +++ b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgRenderer.cc @@ -105,7 +105,7 @@ static void _call_f_boundsOnElement_c2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QSvgRenderer *)cls)->boundsOnElement (arg1)); } @@ -154,7 +154,7 @@ static void _call_f_elementExists_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSvgRenderer *)cls)->elementExists (arg1)); } @@ -203,7 +203,7 @@ static void _call_f_load_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSvgRenderer *)cls)->load (arg1)); } @@ -222,7 +222,7 @@ static void _call_f_load_2309 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSvgRenderer *)cls)->load (arg1)); } @@ -241,7 +241,7 @@ static void _call_f_load_2223 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlStreamReader *arg1 = args.read (heap); + QXmlStreamReader *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSvgRenderer *)cls)->load (arg1)); } @@ -260,7 +260,7 @@ static void _call_f_matrixForElement_c2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix)((QSvgRenderer *)cls)->matrixForElement (arg1)); } @@ -279,7 +279,7 @@ static void _call_f_render_1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgRenderer *)cls)->render (arg1); } @@ -301,8 +301,8 @@ static void _call_f_render_3180 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgRenderer *)cls)->render (arg1, arg2); } @@ -326,9 +326,9 @@ static void _call_f_render_5097 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QRectF &arg3 = args ? args.read (heap) : (const QRectF &)(QRectF()); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgRenderer *)cls)->render (arg1, arg2, arg3); } @@ -348,7 +348,7 @@ static void _call_f_setCurrentFrame_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgRenderer *)cls)->setCurrentFrame (arg1); } @@ -368,7 +368,7 @@ static void _call_f_setFramesPerSecond_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgRenderer *)cls)->setFramesPerSecond (arg1); } @@ -388,7 +388,7 @@ static void _call_f_setViewBox_1792 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgRenderer *)cls)->setViewBox (arg1); } @@ -408,7 +408,7 @@ static void _call_f_setViewBox_1862 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgRenderer *)cls)->setViewBox (arg1); } @@ -462,9 +462,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSvgRenderer::tr (arg1, arg2, arg3)); } @@ -487,9 +487,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSvgRenderer::trUtf8 (arg1, arg2, arg3)); } @@ -738,7 +738,7 @@ static void _call_ctor_QSvgRenderer_Adaptor_1302 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSvgRenderer_Adaptor (arg1)); } @@ -758,8 +758,8 @@ static void _call_ctor_QSvgRenderer_Adaptor_3219 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSvgRenderer_Adaptor (arg1, arg2)); } @@ -779,8 +779,8 @@ static void _call_ctor_QSvgRenderer_Adaptor_3503 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSvgRenderer_Adaptor (arg1, arg2)); } @@ -800,8 +800,8 @@ static void _call_ctor_QSvgRenderer_Adaptor_3417 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlStreamReader *arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + QXmlStreamReader *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSvgRenderer_Adaptor (arg1, arg2)); } @@ -867,7 +867,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSvgRenderer_Adaptor *)cls)->emitter_QSvgRenderer_destroyed_1302 (arg1); } @@ -958,7 +958,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSvgRenderer_Adaptor *)cls)->fp_QSvgRenderer_isSignalConnected_c2394 (arg1)); } @@ -976,7 +976,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSvgRenderer_Adaptor *)cls)->fp_QSvgRenderer_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc index 1ef88c5b1..461c87abb 100644 --- a/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc +++ b/src/gsiqt/qt5/QtSvg/gsiDeclQSvgWidget.cc @@ -115,7 +115,7 @@ static void _call_f_load_2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget *)cls)->load (arg1); } @@ -135,7 +135,7 @@ static void _call_f_load_2309 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget *)cls)->load (arg1); } @@ -189,9 +189,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSvgWidget::tr (arg1, arg2, arg3)); } @@ -214,9 +214,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSvgWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1094,7 +1094,7 @@ static void _call_ctor_QSvgWidget_Adaptor_1315 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSvgWidget_Adaptor (arg1)); } @@ -1114,8 +1114,8 @@ static void _call_ctor_QSvgWidget_Adaptor_3232 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSvgWidget_Adaptor (arg1, arg2)); } @@ -1257,9 +1257,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->fp_QSvgWidget_create_2208 (arg1, arg2, arg3); } @@ -1278,7 +1278,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QSvgWidget_Adaptor *)cls)->emitter_QSvgWidget_customContextMenuRequested_1916 (arg1); } @@ -1322,8 +1322,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSvgWidget_Adaptor *)cls)->fp_QSvgWidget_destroy_1620 (arg1, arg2); } @@ -1342,7 +1342,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSvgWidget_Adaptor *)cls)->emitter_QSvgWidget_destroyed_1302 (arg1); } @@ -1789,7 +1789,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSvgWidget_Adaptor *)cls)->fp_QSvgWidget_isSignalConnected_c2394 (arg1)); } @@ -2113,7 +2113,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSvgWidget_Adaptor *)cls)->fp_QSvgWidget_receivers_c1731 (arg1)); } @@ -2379,7 +2379,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QSvgWidget_Adaptor *)cls)->emitter_QSvgWidget_windowIconChanged_1787 (arg1); } @@ -2397,7 +2397,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSvgWidget_Adaptor *)cls)->emitter_QSvgWidget_windowIconTextChanged_2025 (arg1); } @@ -2415,7 +2415,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSvgWidget_Adaptor *)cls)->emitter_QSvgWidget_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractButton.cc index 85b9d4850..84aa40445 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractButton.cc @@ -115,7 +115,7 @@ static void _call_f_animateClick_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(100); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (100, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->animateClick (arg1); } @@ -301,7 +301,7 @@ static void _call_f_setAutoExclusive_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setAutoExclusive (arg1); } @@ -321,7 +321,7 @@ static void _call_f_setAutoRepeat_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setAutoRepeat (arg1); } @@ -341,7 +341,7 @@ static void _call_f_setAutoRepeatDelay_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setAutoRepeatDelay (arg1); } @@ -361,7 +361,7 @@ static void _call_f_setAutoRepeatInterval_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setAutoRepeatInterval (arg1); } @@ -381,7 +381,7 @@ static void _call_f_setCheckable_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setCheckable (arg1); } @@ -401,7 +401,7 @@ static void _call_f_setChecked_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setChecked (arg1); } @@ -421,7 +421,7 @@ static void _call_f_setDown_864 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setDown (arg1); } @@ -441,7 +441,7 @@ static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setIcon (arg1); } @@ -461,7 +461,7 @@ static void _call_f_setIconSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setIconSize (arg1); } @@ -481,7 +481,7 @@ static void _call_f_setShortcut_2516 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setShortcut (arg1); } @@ -501,7 +501,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton *)cls)->setText (arg1); } @@ -571,9 +571,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractButton::tr (arg1, arg2, arg3)); } @@ -596,9 +596,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractButton::trUtf8 (arg1, arg2, arg3)); } @@ -1563,7 +1563,7 @@ static void _call_ctor_QAbstractButton_Adaptor_1315 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractButton_Adaptor (arg1)); } @@ -1673,7 +1673,7 @@ static void _call_emitter_clicked_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QAbstractButton_Adaptor *)cls)->emitter_QAbstractButton_clicked_864 (arg1); } @@ -1743,9 +1743,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->fp_QAbstractButton_create_2208 (arg1, arg2, arg3); } @@ -1764,7 +1764,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QAbstractButton_Adaptor *)cls)->emitter_QAbstractButton_customContextMenuRequested_1916 (arg1); } @@ -1808,8 +1808,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractButton_Adaptor *)cls)->fp_QAbstractButton_destroy_1620 (arg1, arg2); } @@ -1828,7 +1828,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractButton_Adaptor *)cls)->emitter_QAbstractButton_destroyed_1302 (arg1); } @@ -2298,7 +2298,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractButton_Adaptor *)cls)->fp_QAbstractButton_isSignalConnected_c2394 (arg1)); } @@ -2656,7 +2656,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractButton_Adaptor *)cls)->fp_QAbstractButton_receivers_c1731 (arg1)); } @@ -2897,7 +2897,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QAbstractButton_Adaptor *)cls)->emitter_QAbstractButton_toggled_864 (arg1); } @@ -2954,7 +2954,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QAbstractButton_Adaptor *)cls)->emitter_QAbstractButton_windowIconChanged_1787 (arg1); } @@ -2972,7 +2972,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QAbstractButton_Adaptor *)cls)->emitter_QAbstractButton_windowIconTextChanged_2025 (arg1); } @@ -2990,7 +2990,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QAbstractButton_Adaptor *)cls)->emitter_QAbstractButton_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc index 5a678d063..f1ad4e27c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractGraphicsShapeItem.cc @@ -94,7 +94,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractGraphicsShapeItem *)cls)->isObscuredBy (arg1)); } @@ -143,7 +143,7 @@ static void _call_f_setBrush_1910 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem *)cls)->setBrush (arg1); } @@ -163,7 +163,7 @@ static void _call_f_setPen_1685 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractGraphicsShapeItem *)cls)->setPen (arg1); } @@ -812,7 +812,7 @@ static void _call_ctor_QAbstractGraphicsShapeItem_Adaptor_1919 (const qt_gsi::Ge { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractGraphicsShapeItem_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemDelegate.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemDelegate.cc index 17acfd857..469c5034c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemDelegate.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemDelegate.cc @@ -82,9 +82,9 @@ static void _call_f_createEditor_c6860 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QAbstractItemDelegate *)cls)->createEditor (arg1, arg2, arg3)); } @@ -105,8 +105,8 @@ static void _call_f_destroyEditor_c3602 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate *)cls)->destroyEditor (arg1, arg2); } @@ -132,10 +132,10 @@ static void _call_f_editorEvent_9073 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate *)cls)->editorEvent (arg1, arg2, arg3, arg4)); } @@ -160,10 +160,10 @@ static void _call_f_helpEvent_9380 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHelpEvent *arg1 = args.read (heap); - QAbstractItemView *arg2 = args.read (heap); - const QStyleOptionViewItem &arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); + QHelpEvent *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemView *arg2 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate *)cls)->helpEvent (arg1, arg2, arg3, arg4)); } @@ -186,9 +186,9 @@ static void _call_f_paint_c6971 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate *)cls)->paint (arg1, arg2, arg3); } @@ -225,8 +225,8 @@ static void _call_f_setEditorData_c3602 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate *)cls)->setEditorData (arg1, arg2); } @@ -250,9 +250,9 @@ static void _call_f_setModelData_c5913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate *)cls)->setModelData (arg1, arg2, arg3); } @@ -274,8 +274,8 @@ static void _call_f_sizeHint_c5653 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractItemDelegate *)cls)->sizeHint (arg1, arg2)); } @@ -298,9 +298,9 @@ static void _call_f_updateEditorGeometry_c6860 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemDelegate *)cls)->updateEditorGeometry (arg1, arg2, arg3); } @@ -326,10 +326,10 @@ static void _call_f_elidedText_7038 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QString &arg4 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((QString)QAbstractItemDelegate::elidedText (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -352,9 +352,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractItemDelegate::tr (arg1, arg2, arg3)); } @@ -377,9 +377,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractItemDelegate::trUtf8 (arg1, arg2, arg3)); } @@ -761,7 +761,7 @@ static void _call_ctor_QAbstractItemDelegate_Adaptor_1302 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractItemDelegate_Adaptor (arg1)); } @@ -805,8 +805,8 @@ static void _call_emitter_closeEditor_4926 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemDelegate::NoHint)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemDelegate::NoHint), heap); ((QAbstractItemDelegate_Adaptor *)cls)->emitter_QAbstractItemDelegate_closeEditor_4926 (arg1, arg2); } @@ -824,7 +824,7 @@ static void _call_emitter_commitData_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemDelegate_Adaptor *)cls)->emitter_QAbstractItemDelegate_commitData_1315 (arg1); } @@ -922,7 +922,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractItemDelegate_Adaptor *)cls)->emitter_QAbstractItemDelegate_destroyed_1302 (arg1); } @@ -1077,7 +1077,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemDelegate_Adaptor *)cls)->fp_QAbstractItemDelegate_isSignalConnected_c2394 (arg1)); } @@ -1144,7 +1144,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemDelegate_Adaptor *)cls)->fp_QAbstractItemDelegate_receivers_c1731 (arg1)); } @@ -1273,7 +1273,7 @@ static void _call_emitter_sizeHintChanged_2395 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemDelegate_Adaptor *)cls)->emitter_QAbstractItemDelegate_sizeHintChanged_2395 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc index fcd82628a..1e94423a2 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractItemView.cc @@ -168,7 +168,7 @@ static void _call_f_closePersistentEditor_2395 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->closePersistentEditor (arg1); } @@ -279,7 +279,7 @@ static void _call_f_edit_2395 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->edit (arg1); } @@ -359,7 +359,7 @@ static void _call_f_indexAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QAbstractItemView *)cls)->indexAt (arg1)); } @@ -378,7 +378,7 @@ static void _call_f_indexWidget_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QAbstractItemView *)cls)->indexWidget (arg1)); } @@ -397,7 +397,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractItemView *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -431,7 +431,7 @@ static void _call_f_itemDelegate_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QAbstractItemView *)cls)->itemDelegate (arg1)); } @@ -450,7 +450,7 @@ static void _call_f_itemDelegateForColumn_c767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QAbstractItemView *)cls)->itemDelegateForColumn (arg1)); } @@ -469,7 +469,7 @@ static void _call_f_itemDelegateForRow_c767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractItemDelegate *)((QAbstractItemView *)cls)->itemDelegateForRow (arg1)); } @@ -488,7 +488,7 @@ static void _call_f_keyboardSearch_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->keyboardSearch (arg1); } @@ -523,7 +523,7 @@ static void _call_f_openPersistentEditor_2395 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->openPersistentEditor (arg1); } @@ -576,8 +576,8 @@ static void _call_f_scrollTo_5576 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->scrollTo (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -690,7 +690,7 @@ static void _call_f_setAlternatingRowColors_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setAlternatingRowColors (arg1); } @@ -710,7 +710,7 @@ static void _call_f_setAutoScroll_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setAutoScroll (arg1); } @@ -730,7 +730,7 @@ static void _call_f_setAutoScrollMargin_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setAutoScrollMargin (arg1); } @@ -750,7 +750,7 @@ static void _call_f_setCurrentIndex_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setCurrentIndex (arg1); } @@ -770,7 +770,7 @@ static void _call_f_setDefaultDropAction_1760 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setDefaultDropAction (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -790,7 +790,7 @@ static void _call_f_setDragDropMode_3439 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setDragDropMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -810,7 +810,7 @@ static void _call_f_setDragDropOverwriteMode_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setDragDropOverwriteMode (arg1); } @@ -830,7 +830,7 @@ static void _call_f_setDragEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setDragEnabled (arg1); } @@ -850,7 +850,7 @@ static void _call_f_setDropIndicatorShown_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setDropIndicatorShown (arg1); } @@ -870,7 +870,7 @@ static void _call_f_setEditTriggers_4073 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setEditTriggers (arg1); } @@ -890,7 +890,7 @@ static void _call_f_setHorizontalScrollMode_3275 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setHorizontalScrollMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -910,7 +910,7 @@ static void _call_f_setIconSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setIconSize (arg1); } @@ -932,8 +932,8 @@ static void _call_f_setIndexWidget_3602 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setIndexWidget (arg1, arg2); } @@ -953,7 +953,7 @@ static void _call_f_setItemDelegate_2717 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemDelegate *arg1 = args.read (heap); + QAbstractItemDelegate *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setItemDelegate (arg1); } @@ -975,8 +975,8 @@ static void _call_f_setItemDelegateForColumn_3376 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QAbstractItemDelegate *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QAbstractItemDelegate *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setItemDelegateForColumn (arg1, arg2); } @@ -998,8 +998,8 @@ static void _call_f_setItemDelegateForRow_3376 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QAbstractItemDelegate *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QAbstractItemDelegate *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setItemDelegateForRow (arg1, arg2); } @@ -1019,7 +1019,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setModel (arg1); } @@ -1039,7 +1039,7 @@ static void _call_f_setRootIndex_2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setRootIndex (arg1); } @@ -1059,7 +1059,7 @@ static void _call_f_setSelectionBehavior_4013 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setSelectionBehavior (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1079,7 +1079,7 @@ static void _call_f_setSelectionMode_3586 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setSelectionMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1099,7 +1099,7 @@ static void _call_f_setSelectionModel_2533 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setSelectionModel (arg1); } @@ -1119,7 +1119,7 @@ static void _call_f_setTabKeyNavigation_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setTabKeyNavigation (arg1); } @@ -1139,7 +1139,7 @@ static void _call_f_setTextElideMode_2042 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setTextElideMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1159,7 +1159,7 @@ static void _call_f_setVerticalScrollMode_3275 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->setVerticalScrollMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1194,7 +1194,7 @@ static void _call_f_sizeHintForColumn_c767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemView *)cls)->sizeHintForColumn (arg1)); } @@ -1213,7 +1213,7 @@ static void _call_f_sizeHintForIndex_c2395 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QAbstractItemView *)cls)->sizeHintForIndex (arg1)); } @@ -1232,7 +1232,7 @@ static void _call_f_sizeHintForRow_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemView *)cls)->sizeHintForRow (arg1)); } @@ -1281,7 +1281,7 @@ static void _call_f_update_2006 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->update (arg1); } @@ -1301,7 +1301,7 @@ static void _call_f_update_2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView *)cls)->update (arg1); } @@ -1336,7 +1336,7 @@ static void _call_f_visualRect_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QAbstractItemView *)cls)->visualRect (arg1)); } @@ -1359,9 +1359,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractItemView::tr (arg1, arg2, arg3)); } @@ -1384,9 +1384,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractItemView::trUtf8 (arg1, arg2, arg3)); } @@ -3147,7 +3147,7 @@ static void _call_ctor_QAbstractItemView_Adaptor_1315 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractItemView_Adaptor (arg1)); } @@ -3189,7 +3189,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_activated_2395 (arg1); } @@ -3255,7 +3255,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_clicked_2395 (arg1); } @@ -3376,9 +3376,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_create_2208 (arg1, arg2, arg3); } @@ -3424,7 +3424,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_customContextMenuRequested_1916 (arg1); } @@ -3498,8 +3498,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_destroy_1620 (arg1, arg2); } @@ -3518,7 +3518,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_destroyed_1302 (arg1); } @@ -3609,7 +3609,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_doubleClicked_2395 (arg1); } @@ -3699,7 +3699,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_drawFrame_1426 (arg1); } @@ -3833,7 +3833,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_entered_2395 (arg1); } @@ -4161,7 +4161,7 @@ static void _call_emitter_iconSizeChanged_1805 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_iconSizeChanged_1805 (arg1); } @@ -4226,7 +4226,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_initStyleOption_c2356 (arg1); } @@ -4315,7 +4315,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_isSignalConnected_c2394 (arg1)); } @@ -4689,7 +4689,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_pressed_2395 (arg1); } @@ -4707,7 +4707,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_receivers_c1731 (arg1)); } @@ -4896,8 +4896,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_scrollDirtyRegion_1426 (arg1, arg2); } @@ -5063,7 +5063,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_setDirtyRegion_2006 (arg1); } @@ -5082,7 +5082,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_setHorizontalStepsPerItem_767 (arg1); } @@ -5200,7 +5200,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_setState_2776 (arg1); } @@ -5219,7 +5219,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_setVerticalStepsPerItem_767 (arg1); } @@ -5244,10 +5244,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -5266,7 +5266,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractItemView_Adaptor *)cls)->fp_QAbstractItemView_setViewportMargins_2115 (arg1); } @@ -5872,7 +5872,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_windowIconChanged_1787 (arg1); } @@ -5890,7 +5890,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_windowIconTextChanged_2025 (arg1); } @@ -5908,7 +5908,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QAbstractItemView_Adaptor *)cls)->emitter_QAbstractItemView_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc index a4113a1e6..4049fa115 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractScrollArea.cc @@ -118,8 +118,8 @@ static void _call_f_addScrollBarWidget_3957 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->addScrollBarWidget (arg1, arg2); } @@ -214,7 +214,7 @@ static void _call_f_scrollBarWidgets_2750 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ret.write > ((QList)((QAbstractScrollArea *)cls)->scrollBarWidgets (arg1)); } @@ -233,7 +233,7 @@ static void _call_f_setCornerWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->setCornerWidget (arg1); } @@ -253,7 +253,7 @@ static void _call_f_setHorizontalScrollBar_1603 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScrollBar *arg1 = args.read (heap); + QScrollBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->setHorizontalScrollBar (arg1); } @@ -273,7 +273,7 @@ static void _call_f_setHorizontalScrollBarPolicy_2273 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->setHorizontalScrollBarPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -293,7 +293,7 @@ static void _call_f_setSizeAdjustPolicy_4107 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->setSizeAdjustPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -313,7 +313,7 @@ static void _call_f_setVerticalScrollBar_1603 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScrollBar *arg1 = args.read (heap); + QScrollBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->setVerticalScrollBar (arg1); } @@ -333,7 +333,7 @@ static void _call_f_setVerticalScrollBarPolicy_2273 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->setVerticalScrollBarPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -353,7 +353,7 @@ static void _call_f_setViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->setViewport (arg1); } @@ -373,7 +373,7 @@ static void _call_f_setupViewport_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea *)cls)->setupViewport (arg1); } @@ -472,9 +472,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractScrollArea::tr (arg1, arg2, arg3)); } @@ -497,9 +497,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractScrollArea::trUtf8 (arg1, arg2, arg3)); } @@ -1470,7 +1470,7 @@ static void _call_ctor_QAbstractScrollArea_Adaptor_1315 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractScrollArea_Adaptor (arg1)); } @@ -1612,9 +1612,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->fp_QAbstractScrollArea_create_2208 (arg1, arg2, arg3); } @@ -1633,7 +1633,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QAbstractScrollArea_Adaptor *)cls)->emitter_QAbstractScrollArea_customContextMenuRequested_1916 (arg1); } @@ -1677,8 +1677,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->fp_QAbstractScrollArea_destroy_1620 (arg1, arg2); } @@ -1697,7 +1697,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractScrollArea_Adaptor *)cls)->emitter_QAbstractScrollArea_destroyed_1302 (arg1); } @@ -1811,7 +1811,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->fp_QAbstractScrollArea_drawFrame_1426 (arg1); } @@ -2116,7 +2116,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->fp_QAbstractScrollArea_initStyleOption_c2356 (arg1); } @@ -2182,7 +2182,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractScrollArea_Adaptor *)cls)->fp_QAbstractScrollArea_isSignalConnected_c2394 (arg1)); } @@ -2506,7 +2506,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractScrollArea_Adaptor *)cls)->fp_QAbstractScrollArea_receivers_c1731 (arg1)); } @@ -2632,10 +2632,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->fp_QAbstractScrollArea_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -2654,7 +2654,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractScrollArea_Adaptor *)cls)->fp_QAbstractScrollArea_setViewportMargins_2115 (arg1); } @@ -2926,7 +2926,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QAbstractScrollArea_Adaptor *)cls)->emitter_QAbstractScrollArea_windowIconChanged_1787 (arg1); } @@ -2944,7 +2944,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QAbstractScrollArea_Adaptor *)cls)->emitter_QAbstractScrollArea_windowIconTextChanged_2025 (arg1); } @@ -2962,7 +2962,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QAbstractScrollArea_Adaptor *)cls)->emitter_QAbstractScrollArea_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSlider.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSlider.cc index 9b0548a01..879251a8d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSlider.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSlider.cc @@ -234,7 +234,7 @@ static void _call_f_setInvertedAppearance_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setInvertedAppearance (arg1); } @@ -254,7 +254,7 @@ static void _call_f_setInvertedControls_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setInvertedControls (arg1); } @@ -274,7 +274,7 @@ static void _call_f_setMaximum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setMaximum (arg1); } @@ -294,7 +294,7 @@ static void _call_f_setMinimum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setMinimum (arg1); } @@ -314,7 +314,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -334,7 +334,7 @@ static void _call_f_setPageStep_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setPageStep (arg1); } @@ -356,8 +356,8 @@ static void _call_f_setRange_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setRange (arg1, arg2); } @@ -377,7 +377,7 @@ static void _call_f_setSingleStep_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setSingleStep (arg1); } @@ -397,7 +397,7 @@ static void _call_f_setSliderDown_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setSliderDown (arg1); } @@ -417,7 +417,7 @@ static void _call_f_setSliderPosition_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setSliderPosition (arg1); } @@ -437,7 +437,7 @@ static void _call_f_setTracking_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setTracking (arg1); } @@ -457,7 +457,7 @@ static void _call_f_setValue_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->setValue (arg1); } @@ -507,7 +507,7 @@ static void _call_f_triggerAction_3281 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider *)cls)->triggerAction (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -546,9 +546,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractSlider::tr (arg1, arg2, arg3)); } @@ -571,9 +571,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractSlider::trUtf8 (arg1, arg2, arg3)); } @@ -1527,7 +1527,7 @@ static void _call_ctor_QAbstractSlider_Adaptor_1315 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractSlider_Adaptor (arg1)); } @@ -1569,7 +1569,7 @@ static void _call_emitter_actionTriggered_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QAbstractSlider_Adaptor *)cls)->emitter_QAbstractSlider_actionTriggered_767 (arg1); } @@ -1687,9 +1687,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->fp_QAbstractSlider_create_2208 (arg1, arg2, arg3); } @@ -1708,7 +1708,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QAbstractSlider_Adaptor *)cls)->emitter_QAbstractSlider_customContextMenuRequested_1916 (arg1); } @@ -1752,8 +1752,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->fp_QAbstractSlider_destroy_1620 (arg1, arg2); } @@ -1772,7 +1772,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractSlider_Adaptor *)cls)->emitter_QAbstractSlider_destroyed_1302 (arg1); } @@ -2219,7 +2219,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSlider_Adaptor *)cls)->fp_QAbstractSlider_isSignalConnected_c2394 (arg1)); } @@ -2545,8 +2545,8 @@ static void _call_emitter_rangeChanged_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QAbstractSlider_Adaptor *)cls)->emitter_QAbstractSlider_rangeChanged_1426 (arg1, arg2); } @@ -2564,7 +2564,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractSlider_Adaptor *)cls)->fp_QAbstractSlider_receivers_c1731 (arg1)); } @@ -2675,9 +2675,9 @@ static void _call_fp_setRepeatAction_4599 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args ? args.read (heap) : (int)(500); - int arg3 = args ? args.read (heap) : (int)(50); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (500, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSlider_Adaptor *)cls)->fp_QAbstractSlider_setRepeatAction_4599 (arg1, arg2, arg3); } @@ -2806,7 +2806,7 @@ static void _call_emitter_sliderMoved_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QAbstractSlider_Adaptor *)cls)->emitter_QAbstractSlider_sliderMoved_767 (arg1); } @@ -2915,7 +2915,7 @@ static void _call_emitter_valueChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QAbstractSlider_Adaptor *)cls)->emitter_QAbstractSlider_valueChanged_767 (arg1); } @@ -2957,7 +2957,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QAbstractSlider_Adaptor *)cls)->emitter_QAbstractSlider_windowIconChanged_1787 (arg1); } @@ -2975,7 +2975,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QAbstractSlider_Adaptor *)cls)->emitter_QAbstractSlider_windowIconTextChanged_2025 (arg1); } @@ -2993,7 +2993,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QAbstractSlider_Adaptor *)cls)->emitter_QAbstractSlider_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc index 7adfb7fd0..f28db8ac7 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAbstractSpinBox.cc @@ -177,7 +177,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSpinBox *)cls)->event (arg1)); } @@ -196,7 +196,7 @@ static void _call_f_fixup_c1330 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->fixup (arg1); } @@ -246,7 +246,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QAbstractSpinBox *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -372,7 +372,7 @@ static void _call_f_setAccelerated_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setAccelerated (arg1); } @@ -392,7 +392,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setAlignment (arg1); } @@ -412,7 +412,7 @@ static void _call_f_setButtonSymbols_3541 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setButtonSymbols (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -432,7 +432,7 @@ static void _call_f_setCorrectionMode_3597 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setCorrectionMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -452,7 +452,7 @@ static void _call_f_setFrame_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setFrame (arg1); } @@ -472,7 +472,7 @@ static void _call_f_setGroupSeparatorShown_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setGroupSeparatorShown (arg1); } @@ -492,7 +492,7 @@ static void _call_f_setKeyboardTracking_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setKeyboardTracking (arg1); } @@ -512,7 +512,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setReadOnly (arg1); } @@ -532,7 +532,7 @@ static void _call_f_setSpecialValueText_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setSpecialValueText (arg1); } @@ -552,7 +552,7 @@ static void _call_f_setWrapping_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->setWrapping (arg1); } @@ -602,7 +602,7 @@ static void _call_f_stepBy_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox *)cls)->stepBy (arg1); } @@ -671,8 +671,8 @@ static void _call_f_validate_c2171 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QAbstractSpinBox *)cls)->validate (arg1, arg2))); } @@ -710,9 +710,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractSpinBox::tr (arg1, arg2, arg3)); } @@ -735,9 +735,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractSpinBox::trUtf8 (arg1, arg2, arg3)); } @@ -1735,7 +1735,7 @@ static void _call_ctor_QAbstractSpinBox_Adaptor_1315 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractSpinBox_Adaptor (arg1)); } @@ -1897,9 +1897,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->fp_QAbstractSpinBox_create_2208 (arg1, arg2, arg3); } @@ -1918,7 +1918,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QAbstractSpinBox_Adaptor *)cls)->emitter_QAbstractSpinBox_customContextMenuRequested_1916 (arg1); } @@ -1962,8 +1962,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->fp_QAbstractSpinBox_destroy_1620 (arg1, arg2); } @@ -1982,7 +1982,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractSpinBox_Adaptor *)cls)->emitter_QAbstractSpinBox_destroyed_1302 (arg1); } @@ -2420,7 +2420,7 @@ static void _call_fp_initStyleOption_c2572 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->fp_QAbstractSpinBox_initStyleOption_c2572 (arg1); } @@ -2486,7 +2486,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractSpinBox_Adaptor *)cls)->fp_QAbstractSpinBox_isSignalConnected_c2394 (arg1)); } @@ -2824,7 +2824,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractSpinBox_Adaptor *)cls)->fp_QAbstractSpinBox_receivers_c1731 (arg1)); } @@ -2917,7 +2917,7 @@ static void _call_fp_setLineEdit_1485 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLineEdit *arg1 = args.read (heap); + QLineEdit *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractSpinBox_Adaptor *)cls)->fp_QAbstractSpinBox_setLineEdit_1485 (arg1); } @@ -3178,7 +3178,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QAbstractSpinBox_Adaptor *)cls)->emitter_QAbstractSpinBox_windowIconChanged_1787 (arg1); } @@ -3196,7 +3196,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QAbstractSpinBox_Adaptor *)cls)->emitter_QAbstractSpinBox_windowIconTextChanged_2025 (arg1); } @@ -3214,7 +3214,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QAbstractSpinBox_Adaptor *)cls)->emitter_QAbstractSpinBox_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAccessibleWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAccessibleWidget.cc index a247d74b4..0ba9552d3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAccessibleWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAccessibleWidget.cc @@ -61,9 +61,9 @@ static void _call_ctor_QAccessibleWidget_5165 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAccessible::Client)); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAccessible::Client), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QAccessibleWidget (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -112,7 +112,7 @@ static void _call_f_child_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QAccessibleInterface *)((QAccessibleWidget *)cls)->child (arg1)); } @@ -146,7 +146,7 @@ static void _call_f_doAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAccessibleWidget *)cls)->doAction (arg1); } @@ -196,7 +196,7 @@ static void _call_f_indexOfChild_c3317 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAccessibleInterface *arg1 = args.read (heap); + const QAccessibleInterface *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAccessibleWidget *)cls)->indexOfChild (arg1)); } @@ -215,7 +215,7 @@ static void _call_f_interface_cast_2970 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((void *)((QAccessibleWidget *)cls)->interface_cast (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -249,7 +249,7 @@ static void _call_f_keyBindingsForAction_c2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QAccessibleWidget *)cls)->keyBindingsForAction (arg1)); } @@ -298,7 +298,7 @@ static void _call_f_relations_c3543 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(QAccessible::AllRelations); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QAccessible::AllRelations, heap); ret.write > > ((QVector >)((QAccessibleWidget *)cls)->relations (arg1)); } @@ -347,7 +347,7 @@ static void _call_f_text_c2060 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QAccessibleWidget *)cls)->text (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQAction.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQAction.cc index 541cd55f5..f80dc5e4b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQAction.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQAction.cc @@ -80,7 +80,7 @@ static void _call_f_activate_2359 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->activate (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -371,7 +371,7 @@ static void _call_f_setActionGroup_1834 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QActionGroup *arg1 = args.read (heap); + QActionGroup *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setActionGroup (arg1); } @@ -391,7 +391,7 @@ static void _call_f_setAutoRepeat_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setAutoRepeat (arg1); } @@ -411,7 +411,7 @@ static void _call_f_setCheckable_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setCheckable (arg1); } @@ -431,7 +431,7 @@ static void _call_f_setChecked_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setChecked (arg1); } @@ -451,7 +451,7 @@ static void _call_f_setData_2119 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setData (arg1); } @@ -471,7 +471,7 @@ static void _call_f_setDisabled_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setDisabled (arg1); } @@ -491,7 +491,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setEnabled (arg1); } @@ -511,7 +511,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setFont (arg1); } @@ -531,7 +531,7 @@ static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setIcon (arg1); } @@ -551,7 +551,7 @@ static void _call_f_setIconText_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setIconText (arg1); } @@ -571,7 +571,7 @@ static void _call_f_setIconVisibleInMenu_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setIconVisibleInMenu (arg1); } @@ -591,7 +591,7 @@ static void _call_f_setMenu_1108 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenu *arg1 = args.read (heap); + QMenu *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setMenu (arg1); } @@ -611,7 +611,7 @@ static void _call_f_setMenuRole_2046 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setMenuRole (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -631,7 +631,7 @@ static void _call_f_setPriority_2105 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setPriority (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -651,7 +651,7 @@ static void _call_f_setSeparator_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setSeparator (arg1); } @@ -671,7 +671,7 @@ static void _call_f_setShortcut_2516 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setShortcut (arg1); } @@ -691,7 +691,7 @@ static void _call_f_setShortcutContext_2350 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setShortcutContext (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -711,7 +711,7 @@ static void _call_f_setShortcuts_3131 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setShortcuts (arg1); } @@ -731,7 +731,7 @@ static void _call_f_setShortcuts_2869 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setShortcuts (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -751,7 +751,7 @@ static void _call_f_setStatusTip_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setStatusTip (arg1); } @@ -771,7 +771,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setText (arg1); } @@ -791,7 +791,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setToolTip (arg1); } @@ -811,7 +811,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setVisible (arg1); } @@ -831,7 +831,7 @@ static void _call_f_setWhatsThis_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAction *)cls)->setWhatsThis (arg1); } @@ -896,7 +896,7 @@ static void _call_f_showStatusText_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QAction *)cls)->showStatusText (arg1)); } @@ -1011,9 +1011,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAction::tr (arg1, arg2, arg3)); } @@ -1036,9 +1036,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAction::trUtf8 (arg1, arg2, arg3)); } @@ -1311,7 +1311,7 @@ static void _call_ctor_QAction_Adaptor_1302 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QAction_Adaptor (arg1)); } @@ -1331,8 +1331,8 @@ static void _call_ctor_QAction_Adaptor_3219 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QObject *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); ret.write (new QAction_Adaptor (arg1, arg2)); } @@ -1354,9 +1354,9 @@ static void _call_ctor_QAction_Adaptor_4898 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QObject *arg3 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QObject *arg3 = gsi::arg_reader() (args, heap); ret.write (new QAction_Adaptor (arg1, arg2, arg3)); } @@ -1436,7 +1436,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAction_Adaptor *)cls)->emitter_QAction_destroyed_1302 (arg1); } @@ -1541,7 +1541,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAction_Adaptor *)cls)->fp_QAction_isSignalConnected_c2394 (arg1)); } @@ -1559,7 +1559,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAction_Adaptor *)cls)->fp_QAction_receivers_c1731 (arg1)); } @@ -1629,7 +1629,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QAction_Adaptor *)cls)->emitter_QAction_toggled_864 (arg1); } @@ -1647,7 +1647,7 @@ static void _call_emitter_triggered_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QAction_Adaptor *)cls)->emitter_QAction_triggered_864 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQActionGroup.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQActionGroup.cc index 3b74479da..a33e76554 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQActionGroup.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQActionGroup.cc @@ -86,7 +86,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QActionGroup *)cls)->addAction (arg1)); } @@ -105,7 +105,7 @@ static void _call_f_addAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QActionGroup *)cls)->addAction (arg1)); } @@ -126,8 +126,8 @@ static void _call_f_addAction_3704 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QActionGroup *)cls)->addAction (arg1, arg2)); } @@ -206,7 +206,7 @@ static void _call_f_removeAction_1309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup *)cls)->removeAction (arg1); } @@ -226,7 +226,7 @@ static void _call_f_setDisabled_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup *)cls)->setDisabled (arg1); } @@ -246,7 +246,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup *)cls)->setEnabled (arg1); } @@ -266,7 +266,7 @@ static void _call_f_setExclusive_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup *)cls)->setExclusive (arg1); } @@ -286,7 +286,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QActionGroup *)cls)->setVisible (arg1); } @@ -310,9 +310,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QActionGroup::tr (arg1, arg2, arg3)); } @@ -335,9 +335,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QActionGroup::trUtf8 (arg1, arg2, arg3)); } @@ -543,7 +543,7 @@ static void _call_ctor_QActionGroup_Adaptor_1302 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QActionGroup_Adaptor (arg1)); } @@ -609,7 +609,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QActionGroup_Adaptor *)cls)->emitter_QActionGroup_destroyed_1302 (arg1); } @@ -700,7 +700,7 @@ static void _call_emitter_hovered_1309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QActionGroup_Adaptor *)cls)->emitter_QActionGroup_hovered_1309 (arg1); } @@ -718,7 +718,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QActionGroup_Adaptor *)cls)->fp_QActionGroup_isSignalConnected_c2394 (arg1)); } @@ -736,7 +736,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QActionGroup_Adaptor *)cls)->fp_QActionGroup_receivers_c1731 (arg1)); } @@ -806,7 +806,7 @@ static void _call_emitter_triggered_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QActionGroup_Adaptor *)cls)->emitter_QActionGroup_triggered_1309 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc index 21cce757a..f6145ee82 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQApplication.cc @@ -85,8 +85,8 @@ static void _call_f_notify_2411 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QApplication *)cls)->notify (arg1, arg2)); } @@ -105,7 +105,7 @@ static void _call_f_setAutoSipEnabled_1559 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const bool arg1 = args.read (heap); + const bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication *)cls)->setAutoSipEnabled (arg1); } @@ -125,7 +125,7 @@ static void _call_f_setStyleSheet_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QApplication *)cls)->setStyleSheet (arg1); } @@ -223,8 +223,8 @@ static void _call_f_alert_1974 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::alert (arg1, arg2); } @@ -396,7 +396,7 @@ static void _call_f_font_2010 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QFont)QApplication::font (arg1)); } @@ -415,7 +415,7 @@ static void _call_f_font_1731 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QFont)QApplication::font (arg1)); } @@ -464,7 +464,7 @@ static void _call_f_isEffectEnabled_1496 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)QApplication::isEffectEnabled (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -513,7 +513,7 @@ static void _call_f_palette_2010 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPalette)QApplication::palette (arg1)); } @@ -532,7 +532,7 @@ static void _call_f_palette_1731 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((QPalette)QApplication::palette (arg1)); } @@ -551,7 +551,7 @@ static void _call_f_setActiveWindow_1315 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setActiveWindow (arg1); } @@ -571,7 +571,7 @@ static void _call_f_setColorSpec_767 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setColorSpec (arg1); } @@ -591,7 +591,7 @@ static void _call_f_setCursorFlashTime_767 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setCursorFlashTime (arg1); } @@ -611,7 +611,7 @@ static void _call_f_setDoubleClickInterval_767 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setDoubleClickInterval (arg1); } @@ -633,8 +633,8 @@ static void _call_f_setEffectEnabled_2252 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setEffectEnabled (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -656,8 +656,8 @@ static void _call_f_setFont_3424 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QFont &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setFont (arg1, arg2); } @@ -677,7 +677,7 @@ static void _call_f_setGlobalStrut_1805 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setGlobalStrut (arg1); } @@ -697,7 +697,7 @@ static void _call_f_setKeyboardInputInterval_767 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setKeyboardInputInterval (arg1); } @@ -719,8 +719,8 @@ static void _call_f_setPalette_3736 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(0); + const QPalette &arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setPalette (arg1, arg2); } @@ -740,7 +740,7 @@ static void _call_f_setStartDragDistance_767 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setStartDragDistance (arg1); } @@ -760,7 +760,7 @@ static void _call_f_setStartDragTime_767 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setStartDragTime (arg1); } @@ -780,7 +780,7 @@ static void _call_f_setStyle_1232 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle *arg1 = args.read (heap); + QStyle *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setStyle (arg1); } @@ -800,7 +800,7 @@ static void _call_f_setStyle_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyle *)QApplication::setStyle (arg1)); } @@ -819,7 +819,7 @@ static void _call_f_setWheelScrollLines_767 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setWheelScrollLines (arg1); } @@ -839,7 +839,7 @@ static void _call_f_setWindowIcon_1787 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QApplication::setWindowIcon (arg1); } @@ -904,7 +904,7 @@ static void _call_f_topLevelAt_1916 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)QApplication::topLevelAt (arg1)); } @@ -925,8 +925,8 @@ static void _call_f_topLevelAt_1426 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)QApplication::topLevelAt (arg1, arg2)); } @@ -964,9 +964,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QApplication::tr (arg1, arg2, arg3)); } @@ -989,9 +989,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QApplication::trUtf8 (arg1, arg2, arg3)); } @@ -1025,7 +1025,7 @@ static void _call_f_widgetAt_1916 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)QApplication::widgetAt (arg1)); } @@ -1046,8 +1046,8 @@ static void _call_f_widgetAt_1426 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)QApplication::widgetAt (arg1, arg2)); } @@ -1452,7 +1452,7 @@ static void _call_emitter_applicationStateChanged_2402 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QApplication_Adaptor *)cls)->emitter_QApplication_applicationStateChanged_2402 (arg1); } @@ -1508,7 +1508,7 @@ static void _call_emitter_commitDataRequest_2138 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSessionManager &arg1 = args.read (heap); + QSessionManager &arg1 = gsi::arg_reader() (args, heap); ((QApplication_Adaptor *)cls)->emitter_QApplication_commitDataRequest_2138 (arg1); } @@ -1550,7 +1550,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QApplication_Adaptor *)cls)->emitter_QApplication_destroyed_1302 (arg1); } @@ -1643,8 +1643,8 @@ static void _call_emitter_focusChanged_2522 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ((QApplication_Adaptor *)cls)->emitter_QApplication_focusChanged_2522 (arg1, arg2); } @@ -1662,7 +1662,7 @@ static void _call_emitter_focusObjectChanged_1302 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ((QApplication_Adaptor *)cls)->emitter_QApplication_focusObjectChanged_1302 (arg1); } @@ -1680,7 +1680,7 @@ static void _call_emitter_focusWindowChanged_1335 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWindow *arg1 = args.read (heap); + QWindow *arg1 = gsi::arg_reader() (args, heap); ((QApplication_Adaptor *)cls)->emitter_QApplication_focusWindowChanged_1335 (arg1); } @@ -1712,7 +1712,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QApplication_Adaptor *)cls)->fp_QApplication_isSignalConnected_c2394 (arg1)); } @@ -1744,7 +1744,7 @@ static void _call_emitter_layoutDirectionChanged_2316 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QApplication_Adaptor *)cls)->emitter_QApplication_layoutDirectionChanged_2316 (arg1); } @@ -1816,7 +1816,7 @@ static void _call_emitter_paletteChanged_2113 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); ((QApplication_Adaptor *)cls)->emitter_QApplication_paletteChanged_2113 (arg1); } @@ -1834,7 +1834,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QApplication_Adaptor *)cls)->fp_QApplication_receivers_c1731 (arg1)); } @@ -1852,7 +1852,7 @@ static void _call_emitter_saveStateRequest_2138 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSessionManager &arg1 = args.read (heap); + QSessionManager &arg1 = gsi::arg_reader() (args, heap); ((QApplication_Adaptor *)cls)->emitter_QApplication_saveStateRequest_2138 (arg1); } @@ -1870,7 +1870,7 @@ static void _call_emitter_screenAdded_1311 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScreen *arg1 = args.read (heap); + QScreen *arg1 = gsi::arg_reader() (args, heap); ((QApplication_Adaptor *)cls)->emitter_QApplication_screenAdded_1311 (arg1); } @@ -1888,7 +1888,7 @@ static void _call_emitter_screenRemoved_1311 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QScreen *arg1 = args.read (heap); + QScreen *arg1 = gsi::arg_reader() (args, heap); ((QApplication_Adaptor *)cls)->emitter_QApplication_screenRemoved_1311 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc index 6744498b3..0b4428762 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQBoxLayout.cc @@ -76,7 +76,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addItem (arg1); } @@ -98,9 +98,9 @@ static void _call_f_addLayout_2000 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); - int arg2 = args ? args.read (heap) : (int)(0); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addLayout (arg1, arg2); } @@ -120,7 +120,7 @@ static void _call_f_addSpacerItem_1708 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSpacerItem *arg1 = args.read (heap); + QSpacerItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addSpacerItem (arg1); } @@ -140,7 +140,7 @@ static void _call_f_addSpacing_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addSpacing (arg1); } @@ -160,7 +160,7 @@ static void _call_f_addStretch_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addStretch (arg1); } @@ -180,7 +180,7 @@ static void _call_f_addStrut_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addStrut (arg1); } @@ -204,9 +204,9 @@ static void _call_f_addWidget_4616 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->addWidget (arg1, arg2, arg3); } @@ -286,7 +286,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout *)cls)->heightForWidth (arg1)); } @@ -307,8 +307,8 @@ static void _call_f_insertItem_2399 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QLayoutItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QLayoutItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->insertItem (arg1, arg2); } @@ -332,9 +332,9 @@ static void _call_f_insertLayout_2659 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QLayout *arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + QLayout *arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->insertLayout (arg1, arg2, arg3); } @@ -356,8 +356,8 @@ static void _call_f_insertSpacerItem_2367 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QSpacerItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QSpacerItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->insertSpacerItem (arg1, arg2); } @@ -379,8 +379,8 @@ static void _call_f_insertSpacing_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->insertSpacing (arg1, arg2); } @@ -402,8 +402,8 @@ static void _call_f_insertStretch_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->insertStretch (arg1, arg2); } @@ -429,10 +429,10 @@ static void _call_f_insertWidget_5275 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(0); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->insertWidget (arg1, arg2, arg3, arg4); } @@ -468,7 +468,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QBoxLayout *)cls)->itemAt (arg1)); } @@ -502,7 +502,7 @@ static void _call_f_minimumHeightForWidth_c767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout *)cls)->minimumHeightForWidth (arg1)); } @@ -536,7 +536,7 @@ static void _call_f_setDirection_2497 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->setDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -556,7 +556,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->setGeometry (arg1); } @@ -576,7 +576,7 @@ static void _call_f_setSpacing_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->setSpacing (arg1); } @@ -598,8 +598,8 @@ static void _call_f_setStretch_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout *)cls)->setStretch (arg1, arg2); } @@ -621,8 +621,8 @@ static void _call_f_setStretchFactor_1974 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBoxLayout *)cls)->setStretchFactor (arg1, arg2)); } @@ -643,8 +643,8 @@ static void _call_f_setStretchFactor_2000 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); - int arg2 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBoxLayout *)cls)->setStretchFactor (arg1, arg2)); } @@ -693,7 +693,7 @@ static void _call_f_stretch_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout *)cls)->stretch (arg1)); } @@ -712,7 +712,7 @@ static void _call_f_takeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QBoxLayout *)cls)->takeAt (arg1)); } @@ -735,9 +735,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QBoxLayout::tr (arg1, arg2, arg3)); } @@ -760,9 +760,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QBoxLayout::trUtf8 (arg1, arg2, arg3)); } @@ -1327,8 +1327,8 @@ static void _call_ctor_QBoxLayout_Adaptor_3704 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QBoxLayout_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1346,7 +1346,7 @@ static void _call_fp_addChildLayout_1341 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->fp_QBoxLayout_addChildLayout_1341 (arg1); @@ -1366,7 +1366,7 @@ static void _call_fp_addChildWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->fp_QBoxLayout_addChildWidget_1315 (arg1); } @@ -1409,7 +1409,7 @@ static void _call_fp_adoptLayout_1341 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBoxLayout_Adaptor *)cls)->fp_QBoxLayout_adoptLayout_1341 (arg1)); } @@ -1427,7 +1427,7 @@ static void _call_fp_alignmentRect_c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QBoxLayout_Adaptor *)cls)->fp_QBoxLayout_alignmentRect_c1792 (arg1)); } @@ -1531,7 +1531,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QBoxLayout_Adaptor *)cls)->emitter_QBoxLayout_destroyed_1302 (arg1); } @@ -1764,7 +1764,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QBoxLayout_Adaptor *)cls)->fp_QBoxLayout_isSignalConnected_c2394 (arg1)); } @@ -1885,7 +1885,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QBoxLayout_Adaptor *)cls)->fp_QBoxLayout_receivers_c1731 (arg1)); } @@ -2059,7 +2059,7 @@ static void _call_fp_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QBoxLayout_Adaptor *)cls)->fp_QBoxLayout_widgetEvent_1217 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQButtonGroup.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQButtonGroup.cc index 2939b0f69..00272da05 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQButtonGroup.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQButtonGroup.cc @@ -72,8 +72,8 @@ static void _call_f_addButton_2818 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(-1); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup *)cls)->addButton (arg1, arg2); } @@ -93,7 +93,7 @@ static void _call_f_button_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QAbstractButton *)((QButtonGroup *)cls)->button (arg1)); } @@ -172,7 +172,7 @@ static void _call_f_id_c2159 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QButtonGroup *)cls)->id (arg1)); } @@ -191,7 +191,7 @@ static void _call_f_removeButton_2159 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup *)cls)->removeButton (arg1); } @@ -211,7 +211,7 @@ static void _call_f_setExclusive_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup *)cls)->setExclusive (arg1); } @@ -233,8 +233,8 @@ static void _call_f_setId_2818 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); - int arg2 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QButtonGroup *)cls)->setId (arg1, arg2); } @@ -258,9 +258,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QButtonGroup::tr (arg1, arg2, arg3)); } @@ -283,9 +283,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QButtonGroup::trUtf8 (arg1, arg2, arg3)); } @@ -536,7 +536,7 @@ static void _call_ctor_QButtonGroup_Adaptor_1302 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QButtonGroup_Adaptor (arg1)); } @@ -554,7 +554,7 @@ static void _call_emitter_buttonClicked_2159 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_buttonClicked_2159 (arg1); } @@ -572,7 +572,7 @@ static void _call_emitter_buttonClicked_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_buttonClicked_767 (arg1); } @@ -590,7 +590,7 @@ static void _call_emitter_buttonPressed_2159 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_buttonPressed_2159 (arg1); } @@ -608,7 +608,7 @@ static void _call_emitter_buttonPressed_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_buttonPressed_767 (arg1); } @@ -626,7 +626,7 @@ static void _call_emitter_buttonReleased_2159 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_buttonReleased_2159 (arg1); } @@ -644,7 +644,7 @@ static void _call_emitter_buttonReleased_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_buttonReleased_767 (arg1); } @@ -664,8 +664,8 @@ static void _call_emitter_buttonToggled_2915 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); - bool arg2 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_buttonToggled_2915 (arg1, arg2); } @@ -685,8 +685,8 @@ static void _call_emitter_buttonToggled_1523 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_buttonToggled_1523 (arg1, arg2); } @@ -752,7 +752,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QButtonGroup_Adaptor *)cls)->emitter_QButtonGroup_destroyed_1302 (arg1); } @@ -843,7 +843,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QButtonGroup_Adaptor *)cls)->fp_QButtonGroup_isSignalConnected_c2394 (arg1)); } @@ -861,7 +861,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QButtonGroup_Adaptor *)cls)->fp_QButtonGroup_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc index 05eff2a30..b8ee21a85 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCalendarWidget.cc @@ -146,7 +146,7 @@ static void _call_f_dateTextFormat_c1776 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCharFormat)((QCalendarWidget *)cls)->dateTextFormat (arg1)); } @@ -347,8 +347,8 @@ static void _call_f_setCurrentPage_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setCurrentPage (arg1, arg2); } @@ -368,7 +368,7 @@ static void _call_f_setDateEditAcceptDelay_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setDateEditAcceptDelay (arg1); } @@ -388,7 +388,7 @@ static void _call_f_setDateEditEnabled_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setDateEditEnabled (arg1); } @@ -410,8 +410,8 @@ static void _call_f_setDateRange_3444 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - const QDate &arg2 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); + const QDate &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setDateRange (arg1, arg2); } @@ -433,8 +433,8 @@ static void _call_f_setDateTextFormat_4482 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - const QTextCharFormat &arg2 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); + const QTextCharFormat &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setDateTextFormat (arg1, arg2); } @@ -454,7 +454,7 @@ static void _call_f_setFirstDayOfWeek_1612 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setFirstDayOfWeek (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -474,7 +474,7 @@ static void _call_f_setGridVisible_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setGridVisible (arg1); } @@ -494,7 +494,7 @@ static void _call_f_setHeaderTextFormat_2814 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setHeaderTextFormat (arg1); } @@ -514,7 +514,7 @@ static void _call_f_setHorizontalHeaderFormat_4307 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setHorizontalHeaderFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -534,7 +534,7 @@ static void _call_f_setMaximumDate_1776 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setMaximumDate (arg1); } @@ -554,7 +554,7 @@ static void _call_f_setMinimumDate_1776 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setMinimumDate (arg1); } @@ -574,7 +574,7 @@ static void _call_f_setNavigationBarVisible_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setNavigationBarVisible (arg1); } @@ -594,7 +594,7 @@ static void _call_f_setSelectedDate_1776 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setSelectedDate (arg1); } @@ -614,7 +614,7 @@ static void _call_f_setSelectionMode_3362 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setSelectionMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -634,7 +634,7 @@ static void _call_f_setVerticalHeaderFormat_4067 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setVerticalHeaderFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -656,8 +656,8 @@ static void _call_f_setWeekdayTextFormat_4318 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QTextCharFormat &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QTextCharFormat &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget *)cls)->setWeekdayTextFormat (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -803,7 +803,7 @@ static void _call_f_weekdayTextFormat_c1612 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QTextCharFormat)((QCalendarWidget *)cls)->weekdayTextFormat (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -841,9 +841,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCalendarWidget::tr (arg1, arg2, arg3)); } @@ -866,9 +866,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCalendarWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1825,7 +1825,7 @@ static void _call_ctor_QCalendarWidget_Adaptor_1315 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCalendarWidget_Adaptor (arg1)); } @@ -1867,7 +1867,7 @@ static void _call_emitter_activated_1776 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ((QCalendarWidget_Adaptor *)cls)->emitter_QCalendarWidget_activated_1776 (arg1); } @@ -1933,7 +1933,7 @@ static void _call_emitter_clicked_1776 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ((QCalendarWidget_Adaptor *)cls)->emitter_QCalendarWidget_clicked_1776 (arg1); } @@ -2003,9 +2003,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->fp_QCalendarWidget_create_2208 (arg1, arg2, arg3); } @@ -2026,8 +2026,8 @@ static void _call_emitter_currentPageChanged_1426 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QCalendarWidget_Adaptor *)cls)->emitter_QCalendarWidget_currentPageChanged_1426 (arg1, arg2); } @@ -2045,7 +2045,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QCalendarWidget_Adaptor *)cls)->emitter_QCalendarWidget_customContextMenuRequested_1916 (arg1); } @@ -2089,8 +2089,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->fp_QCalendarWidget_destroy_1620 (arg1, arg2); } @@ -2109,7 +2109,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCalendarWidget_Adaptor *)cls)->emitter_QCalendarWidget_destroyed_1302 (arg1); } @@ -2556,7 +2556,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCalendarWidget_Adaptor *)cls)->fp_QCalendarWidget_isSignalConnected_c2394 (arg1)); } @@ -2910,7 +2910,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCalendarWidget_Adaptor *)cls)->fp_QCalendarWidget_receivers_c1731 (arg1)); } @@ -3151,7 +3151,7 @@ static void _call_fp_updateCell_1776 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCalendarWidget_Adaptor *)cls)->fp_QCalendarWidget_updateCell_1776 (arg1); } @@ -3224,7 +3224,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QCalendarWidget_Adaptor *)cls)->emitter_QCalendarWidget_windowIconChanged_1787 (arg1); } @@ -3242,7 +3242,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QCalendarWidget_Adaptor *)cls)->emitter_QCalendarWidget_windowIconTextChanged_2025 (arg1); } @@ -3260,7 +3260,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QCalendarWidget_Adaptor *)cls)->emitter_QCalendarWidget_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc index d67faacab..306b843be 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCheckBox.cc @@ -161,7 +161,7 @@ static void _call_f_setCheckState_1740 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox *)cls)->setCheckState (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -181,7 +181,7 @@ static void _call_f_setTristate_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox *)cls)->setTristate (arg1); } @@ -220,9 +220,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCheckBox::tr (arg1, arg2, arg3)); } @@ -245,9 +245,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCheckBox::trUtf8 (arg1, arg2, arg3)); } @@ -1215,7 +1215,7 @@ static void _call_ctor_QCheckBox_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCheckBox_Adaptor (arg1)); } @@ -1235,8 +1235,8 @@ static void _call_ctor_QCheckBox_Adaptor_3232 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCheckBox_Adaptor (arg1, arg2)); } @@ -1346,7 +1346,7 @@ static void _call_emitter_clicked_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QCheckBox_Adaptor *)cls)->emitter_QCheckBox_clicked_864 (arg1); } @@ -1416,9 +1416,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->fp_QCheckBox_create_2208 (arg1, arg2, arg3); } @@ -1437,7 +1437,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QCheckBox_Adaptor *)cls)->emitter_QCheckBox_customContextMenuRequested_1916 (arg1); } @@ -1481,8 +1481,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->fp_QCheckBox_destroy_1620 (arg1, arg2); } @@ -1501,7 +1501,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCheckBox_Adaptor *)cls)->emitter_QCheckBox_destroyed_1302 (arg1); } @@ -1924,7 +1924,7 @@ static void _call_fp_initStyleOption_c2501 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionButton *arg1 = args.read (heap); + QStyleOptionButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCheckBox_Adaptor *)cls)->fp_QCheckBox_initStyleOption_c2501 (arg1); } @@ -1990,7 +1990,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCheckBox_Adaptor *)cls)->fp_QCheckBox_isSignalConnected_c2394 (arg1)); } @@ -2348,7 +2348,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCheckBox_Adaptor *)cls)->fp_QCheckBox_receivers_c1731 (arg1)); } @@ -2541,7 +2541,7 @@ static void _call_emitter_stateChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QCheckBox_Adaptor *)cls)->emitter_QCheckBox_stateChanged_767 (arg1); } @@ -2607,7 +2607,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QCheckBox_Adaptor *)cls)->emitter_QCheckBox_toggled_864 (arg1); } @@ -2664,7 +2664,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QCheckBox_Adaptor *)cls)->emitter_QCheckBox_windowIconChanged_1787 (arg1); } @@ -2682,7 +2682,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QCheckBox_Adaptor *)cls)->emitter_QCheckBox_windowIconTextChanged_2025 (arg1); } @@ -2700,7 +2700,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QCheckBox_Adaptor *)cls)->emitter_QCheckBox_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc index 125c73a6b..1c6a56670 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQColorDialog.cc @@ -148,8 +148,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog *)cls)->open (arg1, arg2); } @@ -199,7 +199,7 @@ static void _call_f_setCurrentColor_1905 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog *)cls)->setCurrentColor (arg1); } @@ -221,8 +221,8 @@ static void _call_f_setOption_4228 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -242,7 +242,7 @@ static void _call_f_setOptions_4168 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog *)cls)->setOptions (arg1); } @@ -262,7 +262,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog *)cls)->setVisible (arg1); } @@ -282,7 +282,7 @@ static void _call_f_testOption_c3472 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QColorDialog *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -301,7 +301,7 @@ static void _call_f_customColor_767 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor)QColorDialog::customColor (arg1)); } @@ -341,10 +341,10 @@ static void _call_f_getColor_9089 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args ? args.read (heap) : (const QColor &)(Qt::white); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(0); + const QColor &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::white, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QColor)QColorDialog::getColor (arg1, arg2, arg3, arg4)); } @@ -367,9 +367,9 @@ static void _call_f_getRgba_3921 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args ? args.read (heap) : (unsigned int)(0xffffffff); - bool *arg2 = args ? args.read (heap) : (bool *)(0); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + unsigned int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0xffffffff, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((unsigned int)QColorDialog::getRgba (arg1, arg2, arg3)); } @@ -390,8 +390,8 @@ static void _call_f_setCustomColor_1687 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QColor arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QColor arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QColorDialog::setCustomColor (arg1, arg2); } @@ -413,8 +413,8 @@ static void _call_f_setStandardColor_1687 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QColor arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QColor arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QColorDialog::setStandardColor (arg1, arg2); } @@ -434,7 +434,7 @@ static void _call_f_standardColor_767 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor)QColorDialog::standardColor (arg1)); } @@ -457,9 +457,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QColorDialog::tr (arg1, arg2, arg3)); } @@ -482,9 +482,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QColorDialog::trUtf8 (arg1, arg2, arg3)); } @@ -1495,7 +1495,7 @@ static void _call_ctor_QColorDialog_Adaptor_1315 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QColorDialog_Adaptor (arg1)); } @@ -1515,8 +1515,8 @@ static void _call_ctor_QColorDialog_Adaptor_3112 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QColor &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QColorDialog_Adaptor (arg1, arg2)); } @@ -1592,7 +1592,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->fp_QColorDialog_adjustPosition_1315 (arg1); } @@ -1683,7 +1683,7 @@ static void _call_emitter_colorSelected_1905 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ((QColorDialog_Adaptor *)cls)->emitter_QColorDialog_colorSelected_1905 (arg1); } @@ -1729,9 +1729,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->fp_QColorDialog_create_2208 (arg1, arg2, arg3); } @@ -1750,7 +1750,7 @@ static void _call_emitter_currentColorChanged_1905 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ((QColorDialog_Adaptor *)cls)->emitter_QColorDialog_currentColorChanged_1905 (arg1); } @@ -1768,7 +1768,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QColorDialog_Adaptor *)cls)->emitter_QColorDialog_customContextMenuRequested_1916 (arg1); } @@ -1812,8 +1812,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColorDialog_Adaptor *)cls)->fp_QColorDialog_destroy_1620 (arg1, arg2); } @@ -1832,7 +1832,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QColorDialog_Adaptor *)cls)->emitter_QColorDialog_destroyed_1302 (arg1); } @@ -2086,7 +2086,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QColorDialog_Adaptor *)cls)->emitter_QColorDialog_finished_767 (arg1); } @@ -2340,7 +2340,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColorDialog_Adaptor *)cls)->fp_QColorDialog_isSignalConnected_c2394 (arg1)); } @@ -2684,7 +2684,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColorDialog_Adaptor *)cls)->fp_QColorDialog_receivers_c1731 (arg1)); } @@ -2984,7 +2984,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QColorDialog_Adaptor *)cls)->emitter_QColorDialog_windowIconChanged_1787 (arg1); } @@ -3002,7 +3002,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QColorDialog_Adaptor *)cls)->emitter_QColorDialog_windowIconTextChanged_2025 (arg1); } @@ -3020,7 +3020,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QColorDialog_Adaptor *)cls)->emitter_QColorDialog_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQColormap.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQColormap.cc index 6c34b8091..4433aca1a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQColormap.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQColormap.cc @@ -51,7 +51,7 @@ static void _call_ctor_QColormap_2223 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColormap &arg1 = args.read (heap); + const QColormap &arg1 = gsi::arg_reader() (args, heap); ret.write (new QColormap (arg1)); } @@ -70,7 +70,7 @@ static void _call_f_colorAt_c1772 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); ret.write ((const QColor)((QColormap *)cls)->colorAt (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_operator_eq__2223 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColormap &arg1 = args.read (heap); + const QColormap &arg1 = gsi::arg_reader() (args, heap); ret.write ((QColormap &)((QColormap *)cls)->operator= (arg1)); } @@ -153,7 +153,7 @@ static void _call_f_pixel_c1905 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ret.write ((unsigned int)((QColormap *)cls)->pixel (arg1)); } @@ -203,7 +203,7 @@ static void _call_f_instance_767 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QColormap)QColormap::instance (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc index 0d2143578..91c789543 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQColumnView.cc @@ -138,7 +138,7 @@ static void _call_f_indexAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QColumnView *)cls)->indexAt (arg1)); } @@ -189,8 +189,8 @@ static void _call_f_scrollTo_5576 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView *)cls)->scrollTo (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -226,7 +226,7 @@ static void _call_f_setColumnWidths_2259 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView *)cls)->setColumnWidths (arg1); } @@ -246,7 +246,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView *)cls)->setModel (arg1); } @@ -266,7 +266,7 @@ static void _call_f_setPreviewWidget_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView *)cls)->setPreviewWidget (arg1); } @@ -286,7 +286,7 @@ static void _call_f_setResizeGripsVisible_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView *)cls)->setResizeGripsVisible (arg1); } @@ -306,7 +306,7 @@ static void _call_f_setRootIndex_2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView *)cls)->setRootIndex (arg1); } @@ -326,7 +326,7 @@ static void _call_f_setSelectionModel_2533 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView *)cls)->setSelectionModel (arg1); } @@ -361,7 +361,7 @@ static void _call_f_visualRect_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QColumnView *)cls)->visualRect (arg1)); } @@ -384,9 +384,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QColumnView::tr (arg1, arg2, arg3)); } @@ -409,9 +409,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QColumnView::trUtf8 (arg1, arg2, arg3)); } @@ -2136,7 +2136,7 @@ static void _call_ctor_QColumnView_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QColumnView_Adaptor (arg1)); } @@ -2178,7 +2178,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_activated_2395 (arg1); } @@ -2244,7 +2244,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_clicked_2395 (arg1); } @@ -2365,9 +2365,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_create_2208 (arg1, arg2, arg3); } @@ -2436,7 +2436,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_customContextMenuRequested_1916 (arg1); } @@ -2510,8 +2510,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_destroy_1620 (arg1, arg2); } @@ -2530,7 +2530,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_destroyed_1302 (arg1); } @@ -2621,7 +2621,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_doubleClicked_2395 (arg1); } @@ -2711,7 +2711,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_drawFrame_1426 (arg1); } @@ -2845,7 +2845,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_entered_2395 (arg1); } @@ -3173,7 +3173,7 @@ static void _call_emitter_iconSizeChanged_1805 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_iconSizeChanged_1805 (arg1); } @@ -3238,7 +3238,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_initStyleOption_c2356 (arg1); } @@ -3257,7 +3257,7 @@ static void _call_fp_initializeColumn_c2333 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemView *arg1 = args.read (heap); + QAbstractItemView *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_initializeColumn_c2333 (arg1); } @@ -3346,7 +3346,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QColumnView_Adaptor *)cls)->fp_QColumnView_isSignalConnected_c2394 (arg1)); } @@ -3720,7 +3720,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_pressed_2395 (arg1); } @@ -3738,7 +3738,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QColumnView_Adaptor *)cls)->fp_QColumnView_receivers_c1731 (arg1)); } @@ -3927,8 +3927,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_scrollDirtyRegion_1426 (arg1, arg2); } @@ -4094,7 +4094,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_setDirtyRegion_2006 (arg1); } @@ -4113,7 +4113,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_setHorizontalStepsPerItem_767 (arg1); } @@ -4231,7 +4231,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_setState_2776 (arg1); } @@ -4250,7 +4250,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_setVerticalStepsPerItem_767 (arg1); } @@ -4275,10 +4275,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -4297,7 +4297,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QColumnView_Adaptor *)cls)->fp_QColumnView_setViewportMargins_2115 (arg1); } @@ -4663,7 +4663,7 @@ static void _call_emitter_updatePreviewWidget_2395 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_updatePreviewWidget_2395 (arg1); } @@ -4921,7 +4921,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_windowIconChanged_1787 (arg1); } @@ -4939,7 +4939,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_windowIconTextChanged_2025 (arg1); } @@ -4957,7 +4957,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QColumnView_Adaptor *)cls)->emitter_QColumnView_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc index b4ad77981..1451af629 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQComboBox.cc @@ -124,8 +124,8 @@ static void _call_f_addItem_4036 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args ? args.read (heap) : (const QVariant &)(QVariant()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QVariant(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->addItem (arg1, arg2); } @@ -149,9 +149,9 @@ static void _call_f_addItem_5715 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QVariant &arg3 = args ? args.read (heap) : (const QVariant &)(QVariant()); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QVariant(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->addItem (arg1, arg2, arg3); } @@ -171,7 +171,7 @@ static void _call_f_addItems_2437 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->addItems (arg1); } @@ -283,7 +283,7 @@ static void _call_f_currentData_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(Qt::UserRole); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole, heap); ret.write ((QVariant)((QComboBox *)cls)->currentData (arg1)); } @@ -347,7 +347,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QComboBox *)cls)->event (arg1)); } @@ -370,9 +370,9 @@ static void _call_f_findData_c4986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::UserRole); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(static_cast(Qt::MatchExactly|Qt::MatchCaseSensitive)); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (static_cast(Qt::MatchExactly|Qt::MatchCaseSensitive), heap); ret.write ((int)((QComboBox *)cls)->findData (arg1, arg2, arg3)); } @@ -393,8 +393,8 @@ static void _call_f_findText_c4233 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(static_cast(Qt::MatchExactly|Qt::MatchCaseSensitive)); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (static_cast(Qt::MatchExactly|Qt::MatchCaseSensitive), heap); ret.write ((int)((QComboBox *)cls)->findText (arg1, arg2)); } @@ -459,7 +459,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QComboBox *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -482,9 +482,9 @@ static void _call_f_insertItem_4695 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QVariant &arg3 = args ? args.read (heap) : (const QVariant &)(QVariant()); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QVariant(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->insertItem (arg1, arg2, arg3); } @@ -510,10 +510,10 @@ static void _call_f_insertItem_6374 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QVariant &arg4 = args ? args.read (heap) : (const QVariant &)(QVariant()); + int arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QVariant &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QVariant(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->insertItem (arg1, arg2, arg3, arg4); } @@ -535,8 +535,8 @@ static void _call_f_insertItems_3096 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->insertItems (arg1, arg2); } @@ -571,7 +571,7 @@ static void _call_f_insertSeparator_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->insertSeparator (arg1); } @@ -608,8 +608,8 @@ static void _call_f_itemData_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::UserRole); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole, heap); ret.write ((QVariant)((QComboBox *)cls)->itemData (arg1, arg2)); } @@ -643,7 +643,7 @@ static void _call_f_itemIcon_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QComboBox *)cls)->itemIcon (arg1)); } @@ -662,7 +662,7 @@ static void _call_f_itemText_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QComboBox *)cls)->itemText (arg1)); } @@ -786,7 +786,7 @@ static void _call_f_removeItem_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->removeItem (arg1); } @@ -821,7 +821,7 @@ static void _call_f_setAutoCompletion_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setAutoCompletion (arg1); } @@ -841,7 +841,7 @@ static void _call_f_setAutoCompletionCaseSensitivity_2324 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setAutoCompletionCaseSensitivity (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -861,7 +861,7 @@ static void _call_f_setCompleter_1642 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCompleter *arg1 = args.read (heap); + QCompleter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setCompleter (arg1); } @@ -881,7 +881,7 @@ static void _call_f_setCurrentIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setCurrentIndex (arg1); } @@ -901,7 +901,7 @@ static void _call_f_setCurrentText_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setCurrentText (arg1); } @@ -921,7 +921,7 @@ static void _call_f_setDuplicatesEnabled_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setDuplicatesEnabled (arg1); } @@ -941,7 +941,7 @@ static void _call_f_setEditText_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setEditText (arg1); } @@ -961,7 +961,7 @@ static void _call_f_setEditable_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setEditable (arg1); } @@ -981,7 +981,7 @@ static void _call_f_setFrame_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setFrame (arg1); } @@ -1001,7 +1001,7 @@ static void _call_f_setIconSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setIconSize (arg1); } @@ -1021,7 +1021,7 @@ static void _call_f_setInsertPolicy_2679 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setInsertPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1045,9 +1045,9 @@ static void _call_f_setItemData_3437 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::UserRole); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::UserRole, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setItemData (arg1, arg2, arg3); } @@ -1067,7 +1067,7 @@ static void _call_f_setItemDelegate_2717 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemDelegate *arg1 = args.read (heap); + QAbstractItemDelegate *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setItemDelegate (arg1); } @@ -1089,8 +1089,8 @@ static void _call_f_setItemIcon_2446 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setItemIcon (arg1, arg2); } @@ -1112,8 +1112,8 @@ static void _call_f_setItemText_2684 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setItemText (arg1, arg2); } @@ -1133,7 +1133,7 @@ static void _call_f_setLineEdit_1485 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLineEdit *arg1 = args.read (heap); + QLineEdit *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setLineEdit (arg1); } @@ -1153,7 +1153,7 @@ static void _call_f_setMaxCount_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setMaxCount (arg1); } @@ -1173,7 +1173,7 @@ static void _call_f_setMaxVisibleItems_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setMaxVisibleItems (arg1); } @@ -1193,7 +1193,7 @@ static void _call_f_setMinimumContentsLength_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setMinimumContentsLength (arg1); } @@ -1213,7 +1213,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setModel (arg1); } @@ -1233,7 +1233,7 @@ static void _call_f_setModelColumn_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setModelColumn (arg1); } @@ -1253,7 +1253,7 @@ static void _call_f_setRootModelIndex_2395 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setRootModelIndex (arg1); } @@ -1273,7 +1273,7 @@ static void _call_f_setSizeAdjustPolicy_3080 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setSizeAdjustPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1293,7 +1293,7 @@ static void _call_f_setValidator_2332 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QValidator *arg1 = args.read (heap); + const QValidator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setValidator (arg1); } @@ -1313,7 +1313,7 @@ static void _call_f_setView_2333 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemView *arg1 = args.read (heap); + QAbstractItemView *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox *)cls)->setView (arg1); } @@ -1413,9 +1413,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QComboBox::tr (arg1, arg2, arg3)); } @@ -1438,9 +1438,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QComboBox::trUtf8 (arg1, arg2, arg3)); } @@ -2464,7 +2464,7 @@ static void _call_ctor_QComboBox_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QComboBox_Adaptor (arg1)); } @@ -2506,7 +2506,7 @@ static void _call_emitter_activated_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_activated_767 (arg1); } @@ -2524,7 +2524,7 @@ static void _call_emitter_activated_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_activated_2025 (arg1); } @@ -2642,9 +2642,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->fp_QComboBox_create_2208 (arg1, arg2, arg3); } @@ -2663,7 +2663,7 @@ static void _call_emitter_currentIndexChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_currentIndexChanged_767 (arg1); } @@ -2681,7 +2681,7 @@ static void _call_emitter_currentIndexChanged_2025 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_currentIndexChanged_2025 (arg1); } @@ -2699,7 +2699,7 @@ static void _call_emitter_currentTextChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_currentTextChanged_2025 (arg1); } @@ -2717,7 +2717,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_customContextMenuRequested_1916 (arg1); } @@ -2761,8 +2761,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->fp_QComboBox_destroy_1620 (arg1, arg2); } @@ -2781,7 +2781,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_destroyed_1302 (arg1); } @@ -2919,7 +2919,7 @@ static void _call_emitter_editTextChanged_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_editTextChanged_2025 (arg1); } @@ -3195,7 +3195,7 @@ static void _call_emitter_highlighted_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_highlighted_767 (arg1); } @@ -3213,7 +3213,7 @@ static void _call_emitter_highlighted_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_highlighted_2025 (arg1); } @@ -3255,7 +3255,7 @@ static void _call_fp_initStyleOption_c2658 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionComboBox *arg1 = args.read (heap); + QStyleOptionComboBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QComboBox_Adaptor *)cls)->fp_QComboBox_initStyleOption_c2658 (arg1); } @@ -3321,7 +3321,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QComboBox_Adaptor *)cls)->fp_QComboBox_isSignalConnected_c2394 (arg1)); } @@ -3645,7 +3645,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QComboBox_Adaptor *)cls)->fp_QComboBox_receivers_c1731 (arg1)); } @@ -3931,7 +3931,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_windowIconChanged_1787 (arg1); } @@ -3949,7 +3949,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_windowIconTextChanged_2025 (arg1); } @@ -3967,7 +3967,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QComboBox_Adaptor *)cls)->emitter_QComboBox_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCommandLinkButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCommandLinkButton.cc index 07ff4a903..21ea558ed 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCommandLinkButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCommandLinkButton.cc @@ -132,7 +132,7 @@ static void _call_f_setDescription_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton *)cls)->setDescription (arg1); } @@ -156,9 +156,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCommandLinkButton::tr (arg1, arg2, arg3)); } @@ -181,9 +181,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCommandLinkButton::trUtf8 (arg1, arg2, arg3)); } @@ -1152,7 +1152,7 @@ static void _call_ctor_QCommandLinkButton_Adaptor_1315 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCommandLinkButton_Adaptor (arg1)); } @@ -1172,8 +1172,8 @@ static void _call_ctor_QCommandLinkButton_Adaptor_3232 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCommandLinkButton_Adaptor (arg1, arg2)); } @@ -1195,9 +1195,9 @@ static void _call_ctor_QCommandLinkButton_Adaptor_5149 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCommandLinkButton_Adaptor (arg1, arg2, arg3)); } @@ -1307,7 +1307,7 @@ static void _call_emitter_clicked_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QCommandLinkButton_Adaptor *)cls)->emitter_QCommandLinkButton_clicked_864 (arg1); } @@ -1377,9 +1377,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->fp_QCommandLinkButton_create_2208 (arg1, arg2, arg3); } @@ -1398,7 +1398,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QCommandLinkButton_Adaptor *)cls)->emitter_QCommandLinkButton_customContextMenuRequested_1916 (arg1); } @@ -1442,8 +1442,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->fp_QCommandLinkButton_destroy_1620 (arg1, arg2); } @@ -1462,7 +1462,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCommandLinkButton_Adaptor *)cls)->emitter_QCommandLinkButton_destroyed_1302 (arg1); } @@ -1885,7 +1885,7 @@ static void _call_fp_initStyleOption_c2501 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionButton *arg1 = args.read (heap); + QStyleOptionButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommandLinkButton_Adaptor *)cls)->fp_QCommandLinkButton_initStyleOption_c2501 (arg1); } @@ -1951,7 +1951,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommandLinkButton_Adaptor *)cls)->fp_QCommandLinkButton_isSignalConnected_c2394 (arg1)); } @@ -2309,7 +2309,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCommandLinkButton_Adaptor *)cls)->fp_QCommandLinkButton_receivers_c1731 (arg1)); } @@ -2550,7 +2550,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QCommandLinkButton_Adaptor *)cls)->emitter_QCommandLinkButton_toggled_864 (arg1); } @@ -2607,7 +2607,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QCommandLinkButton_Adaptor *)cls)->emitter_QCommandLinkButton_windowIconChanged_1787 (arg1); } @@ -2625,7 +2625,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QCommandLinkButton_Adaptor *)cls)->emitter_QCommandLinkButton_windowIconTextChanged_2025 (arg1); } @@ -2643,7 +2643,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QCommandLinkButton_Adaptor *)cls)->emitter_QCommandLinkButton_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc index 543e9b76e..8f951584b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCommonStyle.cc @@ -89,10 +89,10 @@ static void _call_f_drawComplexControl_c9027 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->drawComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -118,10 +118,10 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->drawControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -147,10 +147,10 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->drawPrimitive (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -174,9 +174,9 @@ static void _call_f_generatedIconPixmap_c5776 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QCommonStyle *)cls)->generatedIconPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -201,10 +201,10 @@ static void _call_f_hitTestComplexControl_c9517 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QCommonStyle *)cls)->hitTestComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4))); } @@ -231,11 +231,11 @@ static void _call_f_layoutSpacing_c11697 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QStyleOption *arg4 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg5 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCommonStyle *)cls)->layoutSpacing (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), arg4, arg5)); } @@ -258,9 +258,9 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCommonStyle *)cls)->pixelMetric (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -279,7 +279,7 @@ static void _call_f_polish_1418 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->polish (arg1); } @@ -299,7 +299,7 @@ static void _call_f_polish_1843 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->polish (arg1); } @@ -319,7 +319,7 @@ static void _call_f_polish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->polish (arg1); } @@ -345,10 +345,10 @@ static void _call_f_sizeFromContents_c8477 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QSize)((QCommonStyle *)cls)->sizeFromContents (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -371,9 +371,9 @@ static void _call_f_standardIcon_c6956 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QIcon)((QCommonStyle *)cls)->standardIcon (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -396,9 +396,9 @@ static void _call_f_standardPixmap_c6956 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPixmap)((QCommonStyle *)cls)->standardPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -423,10 +423,10 @@ static void _call_f_styleHint_c8615 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); - QStyleHintReturn *arg4 = args ? args.read (heap) : (QStyleHintReturn *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QCommonStyle *)cls)->styleHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -451,10 +451,10 @@ static void _call_f_subControlRect_c9798 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QCommonStyle *)cls)->subControlRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -477,9 +477,9 @@ static void _call_f_subElementRect_c6528 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QCommonStyle *)cls)->subElementRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -498,7 +498,7 @@ static void _call_f_unpolish_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->unpolish (arg1); } @@ -518,7 +518,7 @@ static void _call_f_unpolish_1843 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCommonStyle *)cls)->unpolish (arg1); } @@ -542,9 +542,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCommonStyle::tr (arg1, arg2, arg3)); } @@ -567,9 +567,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCommonStyle::trUtf8 (arg1, arg2, arg3)); } @@ -1196,7 +1196,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCommonStyle_Adaptor *)cls)->emitter_QCommonStyle_destroyed_1302 (arg1); } @@ -1522,7 +1522,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCommonStyle_Adaptor *)cls)->fp_QCommonStyle_isSignalConnected_c2394 (arg1)); } @@ -1740,7 +1740,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCommonStyle_Adaptor *)cls)->fp_QCommonStyle_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQCompleter.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQCompleter.cc index 6fd543eba..d38192f87 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQCompleter.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQCompleter.cc @@ -89,7 +89,7 @@ static void _call_f_complete_1792 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args ? args.read (heap) : (const QRect &)(QRect()); + const QRect &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRect(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->complete (arg1); } @@ -304,7 +304,7 @@ static void _call_f_pathFromIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QCompleter *)cls)->pathFromIndex (arg1)); } @@ -338,7 +338,7 @@ static void _call_f_setCaseSensitivity_2324 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setCaseSensitivity (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -358,7 +358,7 @@ static void _call_f_setCompletionColumn_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setCompletionColumn (arg1); } @@ -378,7 +378,7 @@ static void _call_f_setCompletionMode_3011 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setCompletionMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -398,7 +398,7 @@ static void _call_f_setCompletionPrefix_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setCompletionPrefix (arg1); } @@ -418,7 +418,7 @@ static void _call_f_setCompletionRole_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setCompletionRole (arg1); } @@ -438,7 +438,7 @@ static void _call_f_setCurrentRow_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCompleter *)cls)->setCurrentRow (arg1)); } @@ -457,7 +457,7 @@ static void _call_f_setFilterMode_2316 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setFilterMode (arg1); } @@ -477,7 +477,7 @@ static void _call_f_setMaxVisibleItems_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setMaxVisibleItems (arg1); } @@ -497,7 +497,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setModel (arg1); } @@ -517,7 +517,7 @@ static void _call_f_setModelSorting_2811 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setModelSorting (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -537,7 +537,7 @@ static void _call_f_setPopup_2333 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemView *arg1 = args.read (heap); + QAbstractItemView *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setPopup (arg1); } @@ -557,7 +557,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setWidget (arg1); } @@ -577,7 +577,7 @@ static void _call_f_setWrapAround_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QCompleter *)cls)->setWrapAround (arg1); } @@ -597,7 +597,7 @@ static void _call_f_splitPath_c2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QCompleter *)cls)->splitPath (arg1)); } @@ -650,9 +650,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCompleter::tr (arg1, arg2, arg3)); } @@ -675,9 +675,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QCompleter::trUtf8 (arg1, arg2, arg3)); } @@ -979,7 +979,7 @@ static void _call_ctor_QCompleter_Adaptor_1302 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCompleter_Adaptor (arg1)); } @@ -999,8 +999,8 @@ static void _call_ctor_QCompleter_Adaptor_3613 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCompleter_Adaptor (arg1, arg2)); } @@ -1020,8 +1020,8 @@ static void _call_ctor_QCompleter_Adaptor_3631 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QCompleter_Adaptor (arg1, arg2)); } @@ -1039,7 +1039,7 @@ static void _call_emitter_activated_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QCompleter_Adaptor *)cls)->emitter_QCompleter_activated_2025 (arg1); } @@ -1057,7 +1057,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QCompleter_Adaptor *)cls)->emitter_QCompleter_activated_2395 (arg1); } @@ -1123,7 +1123,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QCompleter_Adaptor *)cls)->emitter_QCompleter_destroyed_1302 (arg1); } @@ -1214,7 +1214,7 @@ static void _call_emitter_highlighted_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QCompleter_Adaptor *)cls)->emitter_QCompleter_highlighted_2025 (arg1); } @@ -1232,7 +1232,7 @@ static void _call_emitter_highlighted_2395 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QCompleter_Adaptor *)cls)->emitter_QCompleter_highlighted_2395 (arg1); } @@ -1250,7 +1250,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QCompleter_Adaptor *)cls)->fp_QCompleter_isSignalConnected_c2394 (arg1)); } @@ -1291,7 +1291,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QCompleter_Adaptor *)cls)->fp_QCompleter_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDataWidgetMapper.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDataWidgetMapper.cc index 767317872..1954edecf 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDataWidgetMapper.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDataWidgetMapper.cc @@ -75,8 +75,8 @@ static void _call_f_addMapping_1974 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->addMapping (arg1, arg2); } @@ -100,9 +100,9 @@ static void _call_f_addMapping_4175 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args.read (heap); - const QByteArray &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QByteArray &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->addMapping (arg1, arg2, arg3); } @@ -168,7 +168,7 @@ static void _call_f_mappedPropertyName_c1315 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QDataWidgetMapper *)cls)->mappedPropertyName (arg1)); } @@ -187,7 +187,7 @@ static void _call_f_mappedSection_c1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDataWidgetMapper *)cls)->mappedSection (arg1)); } @@ -206,7 +206,7 @@ static void _call_f_mappedWidgetAt_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QDataWidgetMapper *)cls)->mappedWidgetAt (arg1)); } @@ -255,7 +255,7 @@ static void _call_f_removeMapping_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->removeMapping (arg1); } @@ -306,7 +306,7 @@ static void _call_f_setCurrentIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->setCurrentIndex (arg1); } @@ -326,7 +326,7 @@ static void _call_f_setCurrentModelIndex_2395 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->setCurrentModelIndex (arg1); } @@ -346,7 +346,7 @@ static void _call_f_setItemDelegate_2717 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemDelegate *arg1 = args.read (heap); + QAbstractItemDelegate *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->setItemDelegate (arg1); } @@ -366,7 +366,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->setModel (arg1); } @@ -386,7 +386,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -406,7 +406,7 @@ static void _call_f_setRootIndex_2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->setRootIndex (arg1); } @@ -426,7 +426,7 @@ static void _call_f_setSubmitPolicy_3488 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDataWidgetMapper *)cls)->setSubmitPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -544,9 +544,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDataWidgetMapper::tr (arg1, arg2, arg3)); } @@ -569,9 +569,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDataWidgetMapper::trUtf8 (arg1, arg2, arg3)); } @@ -805,7 +805,7 @@ static void _call_ctor_QDataWidgetMapper_Adaptor_1302 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDataWidgetMapper_Adaptor (arg1)); } @@ -847,7 +847,7 @@ static void _call_emitter_currentIndexChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDataWidgetMapper_Adaptor *)cls)->emitter_QDataWidgetMapper_currentIndexChanged_767 (arg1); } @@ -889,7 +889,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDataWidgetMapper_Adaptor *)cls)->emitter_QDataWidgetMapper_destroyed_1302 (arg1); } @@ -980,7 +980,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDataWidgetMapper_Adaptor *)cls)->fp_QDataWidgetMapper_isSignalConnected_c2394 (arg1)); } @@ -998,7 +998,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDataWidgetMapper_Adaptor *)cls)->fp_QDataWidgetMapper_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDateEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDateEdit.cc index d6bfe1107..a8ca2a71c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDateEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDateEdit.cc @@ -124,9 +124,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDateEdit::tr (arg1, arg2, arg3)); } @@ -149,9 +149,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDateEdit::trUtf8 (arg1, arg2, arg3)); } @@ -1187,7 +1187,7 @@ static void _call_ctor_QDateEdit_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDateEdit_Adaptor (arg1)); } @@ -1207,8 +1207,8 @@ static void _call_ctor_QDateEdit_Adaptor_2983 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QDate &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDateEdit_Adaptor (arg1, arg2)); } @@ -1370,9 +1370,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->fp_QDateEdit_create_2208 (arg1, arg2, arg3); } @@ -1391,7 +1391,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDateEdit_Adaptor *)cls)->emitter_QDateEdit_customContextMenuRequested_1916 (arg1); } @@ -1433,7 +1433,7 @@ static void _call_emitter_dateChanged_1776 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ((QDateEdit_Adaptor *)cls)->emitter_QDateEdit_dateChanged_1776 (arg1); } @@ -1451,7 +1451,7 @@ static void _call_emitter_dateTimeChanged_2175 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ((QDateEdit_Adaptor *)cls)->emitter_QDateEdit_dateTimeChanged_2175 (arg1); } @@ -1494,8 +1494,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->fp_QDateEdit_destroy_1620 (arg1, arg2); } @@ -1514,7 +1514,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDateEdit_Adaptor *)cls)->emitter_QDateEdit_destroyed_1302 (arg1); } @@ -1952,7 +1952,7 @@ static void _call_fp_initStyleOption_c2572 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->fp_QDateEdit_initStyleOption_c2572 (arg1); } @@ -2018,7 +2018,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateEdit_Adaptor *)cls)->fp_QDateEdit_isSignalConnected_c2394 (arg1)); } @@ -2356,7 +2356,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDateEdit_Adaptor *)cls)->fp_QDateEdit_receivers_c1731 (arg1)); } @@ -2449,7 +2449,7 @@ static void _call_fp_setLineEdit_1485 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLineEdit *arg1 = args.read (heap); + QLineEdit *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateEdit_Adaptor *)cls)->fp_QDateEdit_setLineEdit_1485 (arg1); } @@ -2644,7 +2644,7 @@ static void _call_emitter_timeChanged_1793 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ((QDateEdit_Adaptor *)cls)->emitter_QDateEdit_timeChanged_1793 (arg1); } @@ -2701,7 +2701,7 @@ static void _call_emitter_userDateChanged_1776 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ((QDateEdit_Adaptor *)cls)->emitter_QDateEdit_userDateChanged_1776 (arg1); } @@ -2769,7 +2769,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QDateEdit_Adaptor *)cls)->emitter_QDateEdit_windowIconChanged_1787 (arg1); } @@ -2787,7 +2787,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDateEdit_Adaptor *)cls)->emitter_QDateEdit_windowIconTextChanged_2025 (arg1); } @@ -2805,7 +2805,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDateEdit_Adaptor *)cls)->emitter_QDateEdit_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc index cf9721b48..071b2626e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDateTimeEdit.cc @@ -352,7 +352,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTimeEdit *)cls)->event (arg1)); } @@ -461,7 +461,7 @@ static void _call_f_sectionAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDateTimeEdit *)cls)->sectionAt (arg1))); } @@ -495,7 +495,7 @@ static void _call_f_sectionText_c2529 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QDateTimeEdit *)cls)->sectionText (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -514,7 +514,7 @@ static void _call_f_setCalendarPopup_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setCalendarPopup (arg1); } @@ -534,7 +534,7 @@ static void _call_f_setCalendarWidget_2109 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCalendarWidget *arg1 = args.read (heap); + QCalendarWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setCalendarWidget (arg1); } @@ -554,7 +554,7 @@ static void _call_f_setCurrentSection_2529 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setCurrentSection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -574,7 +574,7 @@ static void _call_f_setCurrentSectionIndex_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setCurrentSectionIndex (arg1); } @@ -594,7 +594,7 @@ static void _call_f_setDate_1776 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setDate (arg1); } @@ -616,8 +616,8 @@ static void _call_f_setDateRange_3444 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - const QDate &arg2 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); + const QDate &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setDateRange (arg1, arg2); } @@ -637,7 +637,7 @@ static void _call_f_setDateTime_2175 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setDateTime (arg1); } @@ -659,8 +659,8 @@ static void _call_f_setDateTimeRange_4242 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); - const QDateTime &arg2 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); + const QDateTime &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setDateTimeRange (arg1, arg2); } @@ -680,7 +680,7 @@ static void _call_f_setDisplayFormat_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setDisplayFormat (arg1); } @@ -700,7 +700,7 @@ static void _call_f_setMaximumDate_1776 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setMaximumDate (arg1); } @@ -720,7 +720,7 @@ static void _call_f_setMaximumDateTime_2175 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setMaximumDateTime (arg1); } @@ -740,7 +740,7 @@ static void _call_f_setMaximumTime_1793 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setMaximumTime (arg1); } @@ -760,7 +760,7 @@ static void _call_f_setMinimumDate_1776 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setMinimumDate (arg1); } @@ -780,7 +780,7 @@ static void _call_f_setMinimumDateTime_2175 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setMinimumDateTime (arg1); } @@ -800,7 +800,7 @@ static void _call_f_setMinimumTime_1793 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setMinimumTime (arg1); } @@ -820,7 +820,7 @@ static void _call_f_setSelectedSection_2529 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setSelectedSection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -840,7 +840,7 @@ static void _call_f_setTime_1793 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setTime (arg1); } @@ -862,8 +862,8 @@ static void _call_f_setTimeRange_3478 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); - const QTime &arg2 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); + const QTime &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setTimeRange (arg1, arg2); } @@ -883,7 +883,7 @@ static void _call_f_setTimeSpec_1543 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->setTimeSpec (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -918,7 +918,7 @@ static void _call_f_stepBy_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit *)cls)->stepBy (arg1); } @@ -972,9 +972,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDateTimeEdit::tr (arg1, arg2, arg3)); } @@ -997,9 +997,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDateTimeEdit::trUtf8 (arg1, arg2, arg3)); } @@ -2100,7 +2100,7 @@ static void _call_ctor_QDateTimeEdit_Adaptor_1315 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDateTimeEdit_Adaptor (arg1)); } @@ -2120,8 +2120,8 @@ static void _call_ctor_QDateTimeEdit_Adaptor_3382 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDateTimeEdit_Adaptor (arg1, arg2)); } @@ -2141,8 +2141,8 @@ static void _call_ctor_QDateTimeEdit_Adaptor_2983 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QDate &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDateTimeEdit_Adaptor (arg1, arg2)); } @@ -2162,8 +2162,8 @@ static void _call_ctor_QDateTimeEdit_Adaptor_3000 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QTime &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDateTimeEdit_Adaptor (arg1, arg2)); } @@ -2325,9 +2325,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->fp_QDateTimeEdit_create_2208 (arg1, arg2, arg3); } @@ -2346,7 +2346,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDateTimeEdit_Adaptor *)cls)->emitter_QDateTimeEdit_customContextMenuRequested_1916 (arg1); } @@ -2388,7 +2388,7 @@ static void _call_emitter_dateChanged_1776 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ((QDateTimeEdit_Adaptor *)cls)->emitter_QDateTimeEdit_dateChanged_1776 (arg1); } @@ -2406,7 +2406,7 @@ static void _call_emitter_dateTimeChanged_2175 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ((QDateTimeEdit_Adaptor *)cls)->emitter_QDateTimeEdit_dateTimeChanged_2175 (arg1); } @@ -2449,8 +2449,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->fp_QDateTimeEdit_destroy_1620 (arg1, arg2); } @@ -2469,7 +2469,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDateTimeEdit_Adaptor *)cls)->emitter_QDateTimeEdit_destroyed_1302 (arg1); } @@ -2907,7 +2907,7 @@ static void _call_fp_initStyleOption_c2572 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->fp_QDateTimeEdit_initStyleOption_c2572 (arg1); } @@ -2973,7 +2973,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDateTimeEdit_Adaptor *)cls)->fp_QDateTimeEdit_isSignalConnected_c2394 (arg1)); } @@ -3311,7 +3311,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDateTimeEdit_Adaptor *)cls)->fp_QDateTimeEdit_receivers_c1731 (arg1)); } @@ -3404,7 +3404,7 @@ static void _call_fp_setLineEdit_1485 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLineEdit *arg1 = args.read (heap); + QLineEdit *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDateTimeEdit_Adaptor *)cls)->fp_QDateTimeEdit_setLineEdit_1485 (arg1); } @@ -3599,7 +3599,7 @@ static void _call_emitter_timeChanged_1793 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ((QDateTimeEdit_Adaptor *)cls)->emitter_QDateTimeEdit_timeChanged_1793 (arg1); } @@ -3706,7 +3706,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QDateTimeEdit_Adaptor *)cls)->emitter_QDateTimeEdit_windowIconChanged_1787 (arg1); } @@ -3724,7 +3724,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDateTimeEdit_Adaptor *)cls)->emitter_QDateTimeEdit_windowIconTextChanged_2025 (arg1); } @@ -3742,7 +3742,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDateTimeEdit_Adaptor *)cls)->emitter_QDateTimeEdit_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDesktopWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDesktopWidget.cc index 1bb60200e..e005718c3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDesktopWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDesktopWidget.cc @@ -114,7 +114,7 @@ static void _call_f_availableGeometry_c767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((const QRect)((QDesktopWidget *)cls)->availableGeometry (arg1)); } @@ -133,7 +133,7 @@ static void _call_f_availableGeometry_c2010 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((const QRect)((QDesktopWidget *)cls)->availableGeometry (arg1)); } @@ -152,7 +152,7 @@ static void _call_f_availableGeometry_c1916 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((const QRect)((QDesktopWidget *)cls)->availableGeometry (arg1)); } @@ -216,7 +216,7 @@ static void _call_f_screen_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QWidget *)((QDesktopWidget *)cls)->screen (arg1)); } @@ -250,7 +250,7 @@ static void _call_f_screenGeometry_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(-1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((const QRect)((QDesktopWidget *)cls)->screenGeometry (arg1)); } @@ -269,7 +269,7 @@ static void _call_f_screenGeometry_c2010 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((const QRect)((QDesktopWidget *)cls)->screenGeometry (arg1)); } @@ -288,7 +288,7 @@ static void _call_f_screenGeometry_c1916 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((const QRect)((QDesktopWidget *)cls)->screenGeometry (arg1)); } @@ -307,7 +307,7 @@ static void _call_f_screenNumber_c2010 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args ? args.read (heap) : (const QWidget *)(0); + const QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QDesktopWidget *)cls)->screenNumber (arg1)); } @@ -326,7 +326,7 @@ static void _call_f_screenNumber_c1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDesktopWidget *)cls)->screenNumber (arg1)); } @@ -349,9 +349,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDesktopWidget::tr (arg1, arg2, arg3)); } @@ -374,9 +374,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDesktopWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1404,9 +1404,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->fp_QDesktopWidget_create_2208 (arg1, arg2, arg3); } @@ -1425,7 +1425,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDesktopWidget_Adaptor *)cls)->emitter_QDesktopWidget_customContextMenuRequested_1916 (arg1); } @@ -1469,8 +1469,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDesktopWidget_Adaptor *)cls)->fp_QDesktopWidget_destroy_1620 (arg1, arg2); } @@ -1489,7 +1489,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDesktopWidget_Adaptor *)cls)->emitter_QDesktopWidget_destroyed_1302 (arg1); } @@ -1936,7 +1936,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDesktopWidget_Adaptor *)cls)->fp_QDesktopWidget_isSignalConnected_c2394 (arg1)); } @@ -2260,7 +2260,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDesktopWidget_Adaptor *)cls)->fp_QDesktopWidget_receivers_c1731 (arg1)); } @@ -2325,7 +2325,7 @@ static void _call_emitter_resized_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDesktopWidget_Adaptor *)cls)->emitter_QDesktopWidget_resized_767 (arg1); } @@ -2343,7 +2343,7 @@ static void _call_emitter_screenCountChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDesktopWidget_Adaptor *)cls)->emitter_QDesktopWidget_screenCountChanged_767 (arg1); } @@ -2562,7 +2562,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QDesktopWidget_Adaptor *)cls)->emitter_QDesktopWidget_windowIconChanged_1787 (arg1); } @@ -2580,7 +2580,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDesktopWidget_Adaptor *)cls)->emitter_QDesktopWidget_windowIconTextChanged_2025 (arg1); } @@ -2598,7 +2598,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDesktopWidget_Adaptor *)cls)->emitter_QDesktopWidget_windowTitleChanged_2025 (arg1); } @@ -2616,7 +2616,7 @@ static void _call_emitter_workAreaResized_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDesktopWidget_Adaptor *)cls)->emitter_QDesktopWidget_workAreaResized_767 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc index 9369c2112..3ab6233be 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDial.cc @@ -175,7 +175,7 @@ static void _call_f_setNotchTarget_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial *)cls)->setNotchTarget (arg1); } @@ -195,7 +195,7 @@ static void _call_f_setNotchesVisible_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial *)cls)->setNotchesVisible (arg1); } @@ -215,7 +215,7 @@ static void _call_f_setWrapping_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial *)cls)->setWrapping (arg1); } @@ -269,9 +269,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDial::tr (arg1, arg2, arg3)); } @@ -294,9 +294,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDial::trUtf8 (arg1, arg2, arg3)); } @@ -1240,7 +1240,7 @@ static void _call_ctor_QDial_Adaptor_1315 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDial_Adaptor (arg1)); } @@ -1282,7 +1282,7 @@ static void _call_emitter_actionTriggered_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDial_Adaptor *)cls)->emitter_QDial_actionTriggered_767 (arg1); } @@ -1400,9 +1400,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->fp_QDial_create_2208 (arg1, arg2, arg3); } @@ -1421,7 +1421,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDial_Adaptor *)cls)->emitter_QDial_customContextMenuRequested_1916 (arg1); } @@ -1465,8 +1465,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->fp_QDial_destroy_1620 (arg1, arg2); } @@ -1485,7 +1485,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDial_Adaptor *)cls)->emitter_QDial_destroyed_1302 (arg1); } @@ -1885,7 +1885,7 @@ static void _call_fp_initStyleOption_c2476 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSlider *arg1 = args.read (heap); + QStyleOptionSlider *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->fp_QDial_initStyleOption_c2476 (arg1); } @@ -1951,7 +1951,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDial_Adaptor *)cls)->fp_QDial_isSignalConnected_c2394 (arg1)); } @@ -2277,8 +2277,8 @@ static void _call_emitter_rangeChanged_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QDial_Adaptor *)cls)->emitter_QDial_rangeChanged_1426 (arg1, arg2); } @@ -2296,7 +2296,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDial_Adaptor *)cls)->fp_QDial_receivers_c1731 (arg1)); } @@ -2407,9 +2407,9 @@ static void _call_fp_setRepeatAction_4599 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args ? args.read (heap) : (int)(500); - int arg3 = args ? args.read (heap) : (int)(50); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (500, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDial_Adaptor *)cls)->fp_QDial_setRepeatAction_4599 (arg1, arg2, arg3); } @@ -2538,7 +2538,7 @@ static void _call_emitter_sliderMoved_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDial_Adaptor *)cls)->emitter_QDial_sliderMoved_767 (arg1); } @@ -2647,7 +2647,7 @@ static void _call_emitter_valueChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDial_Adaptor *)cls)->emitter_QDial_valueChanged_767 (arg1); } @@ -2689,7 +2689,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QDial_Adaptor *)cls)->emitter_QDial_windowIconChanged_1787 (arg1); } @@ -2707,7 +2707,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDial_Adaptor *)cls)->emitter_QDial_windowIconTextChanged_2025 (arg1); } @@ -2725,7 +2725,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDial_Adaptor *)cls)->emitter_QDial_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc index 657855492..503e4872d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDialog.cc @@ -130,7 +130,7 @@ static void _call_f_done_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->done (arg1); } @@ -272,7 +272,7 @@ static void _call_f_setExtension_1315 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->setExtension (arg1); } @@ -292,7 +292,7 @@ static void _call_f_setModal_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->setModal (arg1); } @@ -312,7 +312,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -332,7 +332,7 @@ static void _call_f_setResult_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->setResult (arg1); } @@ -352,7 +352,7 @@ static void _call_f_setSizeGripEnabled_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->setSizeGripEnabled (arg1); } @@ -372,7 +372,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->setVisible (arg1); } @@ -392,7 +392,7 @@ static void _call_f_showExtension_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog *)cls)->showExtension (arg1); } @@ -431,9 +431,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDialog::tr (arg1, arg2, arg3)); } @@ -456,9 +456,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDialog::trUtf8 (arg1, arg2, arg3)); } @@ -1452,8 +1452,8 @@ static void _call_ctor_QDialog_Adaptor_3702 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QDialog_Adaptor (arg1, arg2)); } @@ -1529,7 +1529,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->fp_QDialog_adjustPosition_1315 (arg1); } @@ -1648,9 +1648,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->fp_QDialog_create_2208 (arg1, arg2, arg3); } @@ -1669,7 +1669,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDialog_Adaptor *)cls)->emitter_QDialog_customContextMenuRequested_1916 (arg1); } @@ -1713,8 +1713,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialog_Adaptor *)cls)->fp_QDialog_destroy_1620 (arg1, arg2); } @@ -1733,7 +1733,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDialog_Adaptor *)cls)->emitter_QDialog_destroyed_1302 (arg1); } @@ -1987,7 +1987,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QDialog_Adaptor *)cls)->emitter_QDialog_finished_767 (arg1); } @@ -2241,7 +2241,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialog_Adaptor *)cls)->fp_QDialog_isSignalConnected_c2394 (arg1)); } @@ -2585,7 +2585,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDialog_Adaptor *)cls)->fp_QDialog_receivers_c1731 (arg1)); } @@ -2885,7 +2885,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QDialog_Adaptor *)cls)->emitter_QDialog_windowIconChanged_1787 (arg1); } @@ -2903,7 +2903,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDialog_Adaptor *)cls)->emitter_QDialog_windowIconTextChanged_2025 (arg1); } @@ -2921,7 +2921,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDialog_Adaptor *)cls)->emitter_QDialog_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDialogButtonBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDialogButtonBox.cc index 13487682f..042753c7c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDialogButtonBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDialogButtonBox.cc @@ -118,8 +118,8 @@ static void _call_f_addButton_5247 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox *)cls)->addButton (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -141,8 +141,8 @@ static void _call_f_addButton_5113 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPushButton *)((QDialogButtonBox *)cls)->addButton (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -161,7 +161,7 @@ static void _call_f_addButton_3611 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPushButton *)((QDialogButtonBox *)cls)->addButton (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -180,7 +180,7 @@ static void _call_f_button_c3611 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPushButton *)((QDialogButtonBox *)cls)->button (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -199,7 +199,7 @@ static void _call_f_buttonRole_c2159 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDialogButtonBox *)cls)->buttonRole (arg1))); } @@ -279,7 +279,7 @@ static void _call_f_removeButton_2159 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox *)cls)->removeButton (arg1); } @@ -299,7 +299,7 @@ static void _call_f_setCenterButtons_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox *)cls)->setCenterButtons (arg1); } @@ -319,7 +319,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -339,7 +339,7 @@ static void _call_f_setStandardButtons_4307 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox *)cls)->setStandardButtons (arg1); } @@ -359,7 +359,7 @@ static void _call_f_standardButton_c2159 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDialogButtonBox *)cls)->standardButton (arg1))); } @@ -397,9 +397,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDialogButtonBox::tr (arg1, arg2, arg3)); } @@ -422,9 +422,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDialogButtonBox::trUtf8 (arg1, arg2, arg3)); } @@ -1365,7 +1365,7 @@ static void _call_ctor_QDialogButtonBox_Adaptor_1315 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDialogButtonBox_Adaptor (arg1)); } @@ -1385,8 +1385,8 @@ static void _call_ctor_QDialogButtonBox_Adaptor_3120 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDialogButtonBox_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1406,8 +1406,8 @@ static void _call_ctor_QDialogButtonBox_Adaptor_5514 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QFlags arg1 = gsi::arg_reader >() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDialogButtonBox_Adaptor (arg1, arg2)); } @@ -1429,9 +1429,9 @@ static void _call_ctor_QDialogButtonBox_Adaptor_7319 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QFlags arg1 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDialogButtonBox_Adaptor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -1535,7 +1535,7 @@ static void _call_emitter_clicked_2159 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ((QDialogButtonBox_Adaptor *)cls)->emitter_QDialogButtonBox_clicked_2159 (arg1); } @@ -1605,9 +1605,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->fp_QDialogButtonBox_create_2208 (arg1, arg2, arg3); } @@ -1626,7 +1626,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDialogButtonBox_Adaptor *)cls)->emitter_QDialogButtonBox_customContextMenuRequested_1916 (arg1); } @@ -1670,8 +1670,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDialogButtonBox_Adaptor *)cls)->fp_QDialogButtonBox_destroy_1620 (arg1, arg2); } @@ -1690,7 +1690,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDialogButtonBox_Adaptor *)cls)->emitter_QDialogButtonBox_destroyed_1302 (arg1); } @@ -2151,7 +2151,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDialogButtonBox_Adaptor *)cls)->fp_QDialogButtonBox_isSignalConnected_c2394 (arg1)); } @@ -2475,7 +2475,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDialogButtonBox_Adaptor *)cls)->fp_QDialogButtonBox_receivers_c1731 (arg1)); } @@ -2755,7 +2755,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QDialogButtonBox_Adaptor *)cls)->emitter_QDialogButtonBox_windowIconChanged_1787 (arg1); } @@ -2773,7 +2773,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDialogButtonBox_Adaptor *)cls)->emitter_QDialogButtonBox_windowIconTextChanged_2025 (arg1); } @@ -2791,7 +2791,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDialogButtonBox_Adaptor *)cls)->emitter_QDialogButtonBox_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc index c59bcd9e5..16a8c065f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDirModel.cc @@ -77,7 +77,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QDirModel *)cls)->columnCount (arg1)); } @@ -98,8 +98,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QDirModel *)cls)->data (arg1, arg2)); } @@ -126,11 +126,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -149,7 +149,7 @@ static void _call_f_fileIcon_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QDirModel *)cls)->fileIcon (arg1)); } @@ -168,7 +168,7 @@ static void _call_f_fileInfo_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFileInfo)((QDirModel *)cls)->fileInfo (arg1)); } @@ -187,7 +187,7 @@ static void _call_f_fileName_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDirModel *)cls)->fileName (arg1)); } @@ -206,7 +206,7 @@ static void _call_f_filePath_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDirModel *)cls)->filePath (arg1)); } @@ -240,7 +240,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QDirModel *)cls)->flags (arg1)); } @@ -259,7 +259,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QDirModel *)cls)->hasChildren (arg1)); } @@ -282,9 +282,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QDirModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -322,9 +322,9 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QDirModel *)cls)->index (arg1, arg2, arg3)); } @@ -345,8 +345,8 @@ static void _call_f_index_c2684 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QDirModel *)cls)->index (arg1, arg2)); } @@ -365,7 +365,7 @@ static void _call_f_isDir_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel *)cls)->isDir (arg1)); } @@ -414,7 +414,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QDirModel *)cls)->mimeData (arg1)); } @@ -450,8 +450,8 @@ static void _call_f_mkdir_4312 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QDirModel *)cls)->mkdir (arg1, arg2)); } @@ -485,7 +485,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QDirModel *)cls)->parent (arg1)); } @@ -519,7 +519,7 @@ static void _call_f_refresh_2395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->refresh (arg1); } @@ -539,7 +539,7 @@ static void _call_f_remove_2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel *)cls)->remove (arg1)); } @@ -573,7 +573,7 @@ static void _call_f_rmdir_2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel *)cls)->rmdir (arg1)); } @@ -592,7 +592,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QDirModel *)cls)->rowCount (arg1)); } @@ -615,9 +615,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QDirModel *)cls)->setData (arg1, arg2, arg3)); } @@ -636,7 +636,7 @@ static void _call_f_setFilter_2230 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->setFilter (arg1); } @@ -656,7 +656,7 @@ static void _call_f_setIconProvider_2323 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFileIconProvider *arg1 = args.read (heap); + QFileIconProvider *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->setIconProvider (arg1); } @@ -676,7 +676,7 @@ static void _call_f_setLazyChildCount_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->setLazyChildCount (arg1); } @@ -696,7 +696,7 @@ static void _call_f_setNameFilters_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->setNameFilters (arg1); } @@ -716,7 +716,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->setReadOnly (arg1); } @@ -736,7 +736,7 @@ static void _call_f_setResolveSymlinks_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->setResolveSymlinks (arg1); } @@ -756,7 +756,7 @@ static void _call_f_setSorting_2418 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->setSorting (arg1); } @@ -778,8 +778,8 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel *)cls)->sort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -833,9 +833,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDirModel::tr (arg1, arg2, arg3)); } @@ -858,9 +858,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDirModel::trUtf8 (arg1, arg2, arg3)); } @@ -1784,10 +1784,10 @@ static void _call_ctor_QDirModel_Adaptor_8063 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); - QFlags arg3 = args.read > (heap); - QObject *arg4 = args ? args.read (heap) : (QObject *)(0); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); + QObject *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDirModel_Adaptor (arg1, arg2, arg3, arg4)); } @@ -1805,7 +1805,7 @@ static void _call_ctor_QDirModel_Adaptor_1302 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDirModel_Adaptor (arg1)); } @@ -1827,9 +1827,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->fp_QDirModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1852,9 +1852,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->fp_QDirModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1881,11 +1881,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->fp_QDirModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1911,11 +1911,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->fp_QDirModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -1937,9 +1937,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->fp_QDirModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -1962,9 +1962,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->fp_QDirModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -2081,8 +2081,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->fp_QDirModel_changePersistentIndex_4682 (arg1, arg2); } @@ -2103,8 +2103,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->fp_QDirModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -2174,9 +2174,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QDirModel_Adaptor *)cls)->fp_QDirModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -2198,9 +2198,9 @@ static void _call_fp_createIndex_c2657 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quintptr arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quintptr arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QDirModel_Adaptor *)cls)->fp_QDirModel_createIndex_c2657 (arg1, arg2, arg3)); } @@ -2272,9 +2272,9 @@ static void _call_emitter_dataChanged_7048 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); ((QDirModel_Adaptor *)cls)->emitter_QDirModel_dataChanged_7048 (arg1, arg2, arg3); } @@ -2298,10 +2298,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->fp_QDirModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -2319,7 +2319,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDirModel_Adaptor *)cls)->emitter_QDirModel_destroyed_1302 (arg1); } @@ -2398,8 +2398,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDirModel_Adaptor *)cls)->fp_QDirModel_encodeData_c4599 (arg1, arg2); } @@ -2675,9 +2675,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QDirModel_Adaptor *)cls)->emitter_QDirModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2782,7 +2782,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDirModel_Adaptor *)cls)->fp_QDirModel_isSignalConnected_c2394 (arg1)); } @@ -2825,8 +2825,8 @@ static void _call_emitter_layoutAboutToBeChanged_7947 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QDirModel_Adaptor *)cls)->emitter_QDirModel_layoutAboutToBeChanged_7947 (arg1, arg2); } @@ -2846,8 +2846,8 @@ static void _call_emitter_layoutChanged_7947 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QDirModel_Adaptor *)cls)->emitter_QDirModel_layoutChanged_7947 (arg1, arg2); } @@ -3049,7 +3049,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDirModel_Adaptor *)cls)->fp_QDirModel_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDockWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDockWidget.cc index c43f449ff..8299a0f07 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDockWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDockWidget.cc @@ -145,7 +145,7 @@ static void _call_f_isAreaAllowed_c2123 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QDockWidget *)cls)->isAreaAllowed (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -179,7 +179,7 @@ static void _call_f_setAllowedAreas_2819 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget *)cls)->setAllowedAreas (arg1); } @@ -199,7 +199,7 @@ static void _call_f_setFeatures_4039 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget *)cls)->setFeatures (arg1); } @@ -219,7 +219,7 @@ static void _call_f_setFloating_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget *)cls)->setFloating (arg1); } @@ -239,7 +239,7 @@ static void _call_f_setTitleBarWidget_1315 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget *)cls)->setTitleBarWidget (arg1); } @@ -259,7 +259,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget *)cls)->setWidget (arg1); } @@ -328,9 +328,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDockWidget::tr (arg1, arg2, arg3)); } @@ -353,9 +353,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDockWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1297,9 +1297,9 @@ static void _call_ctor_QDockWidget_Adaptor_5619 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QDockWidget_Adaptor (arg1, arg2, arg3)); } @@ -1319,8 +1319,8 @@ static void _call_ctor_QDockWidget_Adaptor_3702 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QDockWidget_Adaptor (arg1, arg2)); } @@ -1362,7 +1362,7 @@ static void _call_emitter_allowedAreasChanged_2819 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_allowedAreasChanged_2819 (arg1); } @@ -1480,9 +1480,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->fp_QDockWidget_create_2208 (arg1, arg2, arg3); } @@ -1501,7 +1501,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_customContextMenuRequested_1916 (arg1); } @@ -1545,8 +1545,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->fp_QDockWidget_destroy_1620 (arg1, arg2); } @@ -1565,7 +1565,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_destroyed_1302 (arg1); } @@ -1607,7 +1607,7 @@ static void _call_emitter_dockLocationChanged_2123 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_dockLocationChanged_2123 (arg1); } @@ -1794,7 +1794,7 @@ static void _call_emitter_featuresChanged_4039 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_featuresChanged_4039 (arg1); } @@ -2001,7 +2001,7 @@ static void _call_fp_initStyleOption_c2862 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionDockWidget *arg1 = args.read (heap); + QStyleOptionDockWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDockWidget_Adaptor *)cls)->fp_QDockWidget_initStyleOption_c2862 (arg1); } @@ -2067,7 +2067,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDockWidget_Adaptor *)cls)->fp_QDockWidget_isSignalConnected_c2394 (arg1)); } @@ -2391,7 +2391,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDockWidget_Adaptor *)cls)->fp_QDockWidget_receivers_c1731 (arg1)); } @@ -2618,7 +2618,7 @@ static void _call_emitter_topLevelChanged_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_topLevelChanged_864 (arg1); } @@ -2651,7 +2651,7 @@ static void _call_emitter_visibilityChanged_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_visibilityChanged_864 (arg1); } @@ -2693,7 +2693,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_windowIconChanged_1787 (arg1); } @@ -2711,7 +2711,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_windowIconTextChanged_2025 (arg1); } @@ -2729,7 +2729,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDockWidget_Adaptor *)cls)->emitter_QDockWidget_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc index 344e8869c..1faa0f336 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQDoubleSpinBox.cc @@ -146,7 +146,7 @@ static void _call_f_fixup_c1330 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->fixup (arg1); } @@ -211,7 +211,7 @@ static void _call_f_setDecimals_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setDecimals (arg1); } @@ -231,7 +231,7 @@ static void _call_f_setMaximum_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setMaximum (arg1); } @@ -251,7 +251,7 @@ static void _call_f_setMinimum_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setMinimum (arg1); } @@ -271,7 +271,7 @@ static void _call_f_setPrefix_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setPrefix (arg1); } @@ -293,8 +293,8 @@ static void _call_f_setRange_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setRange (arg1, arg2); } @@ -314,7 +314,7 @@ static void _call_f_setSingleStep_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setSingleStep (arg1); } @@ -334,7 +334,7 @@ static void _call_f_setSuffix_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setSuffix (arg1); } @@ -354,7 +354,7 @@ static void _call_f_setValue_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox *)cls)->setValue (arg1); } @@ -404,7 +404,7 @@ static void _call_f_textFromValue_c1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDoubleSpinBox *)cls)->textFromValue (arg1)); } @@ -425,8 +425,8 @@ static void _call_f_validate_c2171 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString &arg1 = args.read (heap); - int &arg2 = args.read (heap); + QString &arg1 = gsi::arg_reader() (args, heap); + int &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QDoubleSpinBox *)cls)->validate (arg1, arg2))); } @@ -460,7 +460,7 @@ static void _call_f_valueFromText_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QDoubleSpinBox *)cls)->valueFromText (arg1)); } @@ -483,9 +483,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDoubleSpinBox::tr (arg1, arg2, arg3)); } @@ -508,9 +508,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QDoubleSpinBox::trUtf8 (arg1, arg2, arg3)); } @@ -1540,7 +1540,7 @@ static void _call_ctor_QDoubleSpinBox_Adaptor_1315 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QDoubleSpinBox_Adaptor (arg1)); } @@ -1702,9 +1702,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->fp_QDoubleSpinBox_create_2208 (arg1, arg2, arg3); } @@ -1723,7 +1723,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QDoubleSpinBox_Adaptor *)cls)->emitter_QDoubleSpinBox_customContextMenuRequested_1916 (arg1); } @@ -1767,8 +1767,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->fp_QDoubleSpinBox_destroy_1620 (arg1, arg2); } @@ -1787,7 +1787,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QDoubleSpinBox_Adaptor *)cls)->emitter_QDoubleSpinBox_destroyed_1302 (arg1); } @@ -2225,7 +2225,7 @@ static void _call_fp_initStyleOption_c2572 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->fp_QDoubleSpinBox_initStyleOption_c2572 (arg1); } @@ -2291,7 +2291,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDoubleSpinBox_Adaptor *)cls)->fp_QDoubleSpinBox_isSignalConnected_c2394 (arg1)); } @@ -2629,7 +2629,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QDoubleSpinBox_Adaptor *)cls)->fp_QDoubleSpinBox_receivers_c1731 (arg1)); } @@ -2722,7 +2722,7 @@ static void _call_fp_setLineEdit_1485 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLineEdit *arg1 = args.read (heap); + QLineEdit *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDoubleSpinBox_Adaptor *)cls)->fp_QDoubleSpinBox_setLineEdit_1485 (arg1); } @@ -2982,7 +2982,7 @@ static void _call_emitter_valueChanged_1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QDoubleSpinBox_Adaptor *)cls)->emitter_QDoubleSpinBox_valueChanged_1071 (arg1); } @@ -3000,7 +3000,7 @@ static void _call_emitter_valueChanged_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDoubleSpinBox_Adaptor *)cls)->emitter_QDoubleSpinBox_valueChanged_2025 (arg1); } @@ -3065,7 +3065,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QDoubleSpinBox_Adaptor *)cls)->emitter_QDoubleSpinBox_windowIconChanged_1787 (arg1); } @@ -3083,7 +3083,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDoubleSpinBox_Adaptor *)cls)->emitter_QDoubleSpinBox_windowIconTextChanged_2025 (arg1); } @@ -3101,7 +3101,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QDoubleSpinBox_Adaptor *)cls)->emitter_QDoubleSpinBox_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQErrorMessage.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQErrorMessage.cc index 6eb0e6de3..1f2ea2ae8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQErrorMessage.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQErrorMessage.cc @@ -114,7 +114,7 @@ static void _call_f_showMessage_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage *)cls)->showMessage (arg1); } @@ -136,8 +136,8 @@ static void _call_f_showMessage_3942 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage *)cls)->showMessage (arg1, arg2); } @@ -176,9 +176,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QErrorMessage::tr (arg1, arg2, arg3)); } @@ -201,9 +201,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QErrorMessage::trUtf8 (arg1, arg2, arg3)); } @@ -1174,7 +1174,7 @@ static void _call_ctor_QErrorMessage_Adaptor_1315 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QErrorMessage_Adaptor (arg1)); } @@ -1250,7 +1250,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->fp_QErrorMessage_adjustPosition_1315 (arg1); } @@ -1369,9 +1369,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->fp_QErrorMessage_create_2208 (arg1, arg2, arg3); } @@ -1390,7 +1390,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QErrorMessage_Adaptor *)cls)->emitter_QErrorMessage_customContextMenuRequested_1916 (arg1); } @@ -1434,8 +1434,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QErrorMessage_Adaptor *)cls)->fp_QErrorMessage_destroy_1620 (arg1, arg2); } @@ -1454,7 +1454,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QErrorMessage_Adaptor *)cls)->emitter_QErrorMessage_destroyed_1302 (arg1); } @@ -1708,7 +1708,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QErrorMessage_Adaptor *)cls)->emitter_QErrorMessage_finished_767 (arg1); } @@ -1962,7 +1962,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QErrorMessage_Adaptor *)cls)->fp_QErrorMessage_isSignalConnected_c2394 (arg1)); } @@ -2306,7 +2306,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QErrorMessage_Adaptor *)cls)->fp_QErrorMessage_receivers_c1731 (arg1)); } @@ -2606,7 +2606,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QErrorMessage_Adaptor *)cls)->emitter_QErrorMessage_windowIconChanged_1787 (arg1); } @@ -2624,7 +2624,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QErrorMessage_Adaptor *)cls)->emitter_QErrorMessage_windowIconTextChanged_2025 (arg1); } @@ -2642,7 +2642,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QErrorMessage_Adaptor *)cls)->emitter_QErrorMessage_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc index 480161464..8981189b6 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileDialog.cc @@ -299,7 +299,7 @@ static void _call_f_labelText_c2681 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QFileDialog *)cls)->labelText (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -366,8 +366,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->open (arg1, arg2); } @@ -432,7 +432,7 @@ static void _call_f_restoreState_2309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDialog *)cls)->restoreState (arg1)); } @@ -466,7 +466,7 @@ static void _call_f_selectFile_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->selectFile (arg1); } @@ -486,7 +486,7 @@ static void _call_f_selectMimeTypeFilter_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->selectMimeTypeFilter (arg1); } @@ -506,7 +506,7 @@ static void _call_f_selectNameFilter_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->selectNameFilter (arg1); } @@ -526,7 +526,7 @@ static void _call_f_selectUrl_1701 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->selectUrl (arg1); } @@ -591,7 +591,7 @@ static void _call_f_setAcceptMode_2590 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setAcceptMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -611,7 +611,7 @@ static void _call_f_setConfirmOverwrite_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setConfirmOverwrite (arg1); } @@ -631,7 +631,7 @@ static void _call_f_setDefaultSuffix_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setDefaultSuffix (arg1); } @@ -651,7 +651,7 @@ static void _call_f_setDirectory_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setDirectory (arg1); } @@ -671,7 +671,7 @@ static void _call_f_setDirectory_1681 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDir &arg1 = args.read (heap); + const QDir &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setDirectory (arg1); } @@ -691,7 +691,7 @@ static void _call_f_setDirectoryUrl_1701 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setDirectoryUrl (arg1); } @@ -711,7 +711,7 @@ static void _call_f_setFileMode_2382 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setFileMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -731,7 +731,7 @@ static void _call_f_setFilter_2230 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setFilter (arg1); } @@ -751,7 +751,7 @@ static void _call_f_setHistory_2437 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setHistory (arg1); } @@ -771,7 +771,7 @@ static void _call_f_setIconProvider_2323 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFileIconProvider *arg1 = args.read (heap); + QFileIconProvider *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setIconProvider (arg1); } @@ -791,7 +791,7 @@ static void _call_f_setItemDelegate_2717 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemDelegate *arg1 = args.read (heap); + QAbstractItemDelegate *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setItemDelegate (arg1); } @@ -813,8 +813,8 @@ static void _call_f_setLabelText_4598 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setLabelText (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -834,7 +834,7 @@ static void _call_f_setMimeTypeFilters_2437 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setMimeTypeFilters (arg1); } @@ -854,7 +854,7 @@ static void _call_f_setNameFilter_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setNameFilter (arg1); } @@ -874,7 +874,7 @@ static void _call_f_setNameFilterDetailsVisible_864 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setNameFilterDetailsVisible (arg1); } @@ -894,7 +894,7 @@ static void _call_f_setNameFilters_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setNameFilters (arg1); } @@ -916,8 +916,8 @@ static void _call_f_setOption_2998 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -937,7 +937,7 @@ static void _call_f_setOptions_2938 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setOptions (arg1); } @@ -957,7 +957,7 @@ static void _call_f_setProxyModel_2566 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractProxyModel *arg1 = args.read (heap); + QAbstractProxyModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setProxyModel (arg1); } @@ -977,7 +977,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setReadOnly (arg1); } @@ -997,7 +997,7 @@ static void _call_f_setResolveSymlinks_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setResolveSymlinks (arg1); } @@ -1017,7 +1017,7 @@ static void _call_f_setSidebarUrls_2316 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setSidebarUrls (arg1); } @@ -1037,7 +1037,7 @@ static void _call_f_setViewMode_2409 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setViewMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1057,7 +1057,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog *)cls)->setVisible (arg1); } @@ -1092,7 +1092,7 @@ static void _call_f_testOption_c2242 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QFileDialog *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1132,10 +1132,10 @@ static void _call_f_getExistingDirectory_7979 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QFileDialog::ShowDirsOnly); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QFileDialog::ShowDirsOnly, heap); ret.write ((QString)QFileDialog::getExistingDirectory (arg1, arg2, arg3, arg4)); } @@ -1162,11 +1162,11 @@ static void _call_f_getExistingDirectoryUrl_9984 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QUrl &arg3 = args ? args.read (heap) : (const QUrl &)(QUrl()); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QFileDialog::ShowDirsOnly); - const QStringList &arg5 = args ? args.read (heap) : (const QStringList &)(QStringList()); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QUrl &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QUrl(), heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QFileDialog::ShowDirsOnly, heap); + const QStringList &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStringList(), heap); ret.write ((QUrl)QFileDialog::getExistingDirectoryUrl (arg1, arg2, arg3, arg4, arg5)); } @@ -1195,12 +1195,12 @@ static void _call_f_getOpenFileName_11122 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - QString *arg5 = args ? args.read (heap) : (QString *)(0); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QString *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QString)QFileDialog::getOpenFileName (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -1229,12 +1229,12 @@ static void _call_f_getOpenFileNames_11122 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - QString *arg5 = args ? args.read (heap) : (QString *)(0); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QString *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QStringList)QFileDialog::getOpenFileNames (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -1265,13 +1265,13 @@ static void _call_f_getOpenFileUrl_13127 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QUrl &arg3 = args ? args.read (heap) : (const QUrl &)(QUrl()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - QString *arg5 = args ? args.read (heap) : (QString *)(0); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); - const QStringList &arg7 = args ? args.read (heap) : (const QStringList &)(QStringList()); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QUrl &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QUrl(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QString *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); + const QStringList &arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStringList(), heap); ret.write ((QUrl)QFileDialog::getOpenFileUrl (arg1, arg2, arg3, arg4, arg5, arg6, arg7)); } @@ -1302,13 +1302,13 @@ static void _call_f_getOpenFileUrls_13127 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QUrl &arg3 = args ? args.read (heap) : (const QUrl &)(QUrl()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - QString *arg5 = args ? args.read (heap) : (QString *)(0); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); - const QStringList &arg7 = args ? args.read (heap) : (const QStringList &)(QStringList()); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QUrl &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QUrl(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QString *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); + const QStringList &arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStringList(), heap); ret.write > ((QList)QFileDialog::getOpenFileUrls (arg1, arg2, arg3, arg4, arg5, arg6, arg7)); } @@ -1337,12 +1337,12 @@ static void _call_f_getSaveFileName_11122 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - QString *arg5 = args ? args.read (heap) : (QString *)(0); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QString *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QString)QFileDialog::getSaveFileName (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -1373,13 +1373,13 @@ static void _call_f_getSaveFileUrl_13127 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QUrl &arg3 = args ? args.read (heap) : (const QUrl &)(QUrl()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - QString *arg5 = args ? args.read (heap) : (QString *)(0); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); - const QStringList &arg7 = args ? args.read (heap) : (const QStringList &)(QStringList()); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QUrl &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QUrl(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QString *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); + const QStringList &arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStringList(), heap); ret.write ((QUrl)QFileDialog::getSaveFileUrl (arg1, arg2, arg3, arg4, arg5, arg6, arg7)); } @@ -1402,9 +1402,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFileDialog::tr (arg1, arg2, arg3)); } @@ -1427,9 +1427,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFileDialog::trUtf8 (arg1, arg2, arg3)); } @@ -2550,8 +2550,8 @@ static void _call_ctor_QFileDialog_Adaptor_3702 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write (new QFileDialog_Adaptor (arg1, arg2)); } @@ -2575,10 +2575,10 @@ static void _call_ctor_QFileDialog_Adaptor_7066 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QFileDialog_Adaptor (arg1, arg2, arg3, arg4)); } @@ -2654,7 +2654,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->fp_QFileDialog_adjustPosition_1315 (arg1); } @@ -2773,9 +2773,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->fp_QFileDialog_create_2208 (arg1, arg2, arg3); } @@ -2794,7 +2794,7 @@ static void _call_emitter_currentChanged_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_currentChanged_2025 (arg1); } @@ -2812,7 +2812,7 @@ static void _call_emitter_currentUrlChanged_1701 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_currentUrlChanged_1701 (arg1); } @@ -2830,7 +2830,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_customContextMenuRequested_1916 (arg1); } @@ -2874,8 +2874,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileDialog_Adaptor *)cls)->fp_QFileDialog_destroy_1620 (arg1, arg2); } @@ -2894,7 +2894,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_destroyed_1302 (arg1); } @@ -2912,7 +2912,7 @@ static void _call_emitter_directoryEntered_2025 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_directoryEntered_2025 (arg1); } @@ -2930,7 +2930,7 @@ static void _call_emitter_directoryUrlEntered_1701 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_directoryUrlEntered_1701 (arg1); } @@ -3184,7 +3184,7 @@ static void _call_emitter_fileSelected_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_fileSelected_2025 (arg1); } @@ -3202,7 +3202,7 @@ static void _call_emitter_filesSelected_2437 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_filesSelected_2437 (arg1); } @@ -3220,7 +3220,7 @@ static void _call_emitter_filterSelected_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_filterSelected_2025 (arg1); } @@ -3238,7 +3238,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_finished_767 (arg1); } @@ -3492,7 +3492,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileDialog_Adaptor *)cls)->fp_QFileDialog_isSignalConnected_c2394 (arg1)); } @@ -3836,7 +3836,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFileDialog_Adaptor *)cls)->fp_QFileDialog_receivers_c1731 (arg1)); } @@ -4112,7 +4112,7 @@ static void _call_emitter_urlSelected_1701 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_urlSelected_1701 (arg1); } @@ -4130,7 +4130,7 @@ static void _call_emitter_urlsSelected_2316 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_urlsSelected_2316 (arg1); } @@ -4172,7 +4172,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_windowIconChanged_1787 (arg1); } @@ -4190,7 +4190,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_windowIconTextChanged_2025 (arg1); } @@ -4208,7 +4208,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFileDialog_Adaptor *)cls)->emitter_QFileDialog_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileIconProvider.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileIconProvider.cc index 104474710..3d3d4fec3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileIconProvider.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileIconProvider.cc @@ -52,7 +52,7 @@ static void _call_f_icon_c3064 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QIcon)((QFileIconProvider *)cls)->icon (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -71,7 +71,7 @@ static void _call_f_icon_c2174 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QFileIconProvider *)cls)->icon (arg1)); } @@ -105,7 +105,7 @@ static void _call_f_setOptions_3582 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileIconProvider *)cls)->setOptions (arg1); } @@ -125,7 +125,7 @@ static void _call_f_type_c2174 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFileInfo &arg1 = args.read (heap); + const QFileInfo &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFileIconProvider *)cls)->type (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc index 644592a3a..8d3f09279 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFileSystemModel.cc @@ -79,7 +79,7 @@ static void _call_f_canFetchMore_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel *)cls)->canFetchMore (arg1)); } @@ -98,7 +98,7 @@ static void _call_f_columnCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QFileSystemModel *)cls)->columnCount (arg1)); } @@ -119,8 +119,8 @@ static void _call_f_data_c3054 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::DisplayRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QFileSystemModel *)cls)->data (arg1, arg2)); } @@ -147,11 +147,11 @@ static void _call_f_dropMimeData_7425 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const QModelIndex &arg5 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const QModelIndex &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel *)cls)->dropMimeData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, arg4, arg5)); } @@ -170,7 +170,7 @@ static void _call_f_fetchMore_2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->fetchMore (arg1); } @@ -190,7 +190,7 @@ static void _call_f_fileIcon_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QFileSystemModel *)cls)->fileIcon (arg1)); } @@ -209,7 +209,7 @@ static void _call_f_fileInfo_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QFileInfo)((QFileSystemModel *)cls)->fileInfo (arg1)); } @@ -228,7 +228,7 @@ static void _call_f_fileName_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFileSystemModel *)cls)->fileName (arg1)); } @@ -247,7 +247,7 @@ static void _call_f_filePath_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFileSystemModel *)cls)->filePath (arg1)); } @@ -281,7 +281,7 @@ static void _call_f_flags_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QFileSystemModel *)cls)->flags (arg1)); } @@ -300,7 +300,7 @@ static void _call_f_hasChildren_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((bool)((QFileSystemModel *)cls)->hasChildren (arg1)); } @@ -323,9 +323,9 @@ static void _call_f_headerData_c3231 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QFileSystemModel *)cls)->headerData (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3)); } @@ -363,9 +363,9 @@ static void _call_f_index_c3713 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((QModelIndex)((QFileSystemModel *)cls)->index (arg1, arg2, arg3)); } @@ -386,8 +386,8 @@ static void _call_f_index_c2684 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QFileSystemModel *)cls)->index (arg1, arg2)); } @@ -406,7 +406,7 @@ static void _call_f_isDir_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel *)cls)->isDir (arg1)); } @@ -440,7 +440,7 @@ static void _call_f_lastModified_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDateTime)((QFileSystemModel *)cls)->lastModified (arg1)); } @@ -459,7 +459,7 @@ static void _call_f_mimeData_c3010 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QMimeData *)((QFileSystemModel *)cls)->mimeData (arg1)); } @@ -495,8 +495,8 @@ static void _call_f_mkdir_4312 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel *)cls)->mkdir (arg1, arg2)); } @@ -515,7 +515,7 @@ static void _call_f_myComputer_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(Qt::DisplayRole); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::DisplayRole, heap); ret.write ((QVariant)((QFileSystemModel *)cls)->myComputer (arg1)); } @@ -564,7 +564,7 @@ static void _call_f_parent_c2395 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel *)cls)->parent (arg1)); } @@ -583,7 +583,7 @@ static void _call_f_permissions_c2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QFileSystemModel *)cls)->permissions (arg1)); } @@ -602,7 +602,7 @@ static void _call_f_remove_2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel *)cls)->remove (arg1)); } @@ -636,7 +636,7 @@ static void _call_f_rmdir_2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel *)cls)->rmdir (arg1)); } @@ -685,7 +685,7 @@ static void _call_f_rowCount_c2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args ? args.read (heap) : (const QModelIndex &)(QModelIndex()); + const QModelIndex &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QModelIndex(), heap); ret.write ((int)((QFileSystemModel *)cls)->rowCount (arg1)); } @@ -708,9 +708,9 @@ static void _call_f_setData_5065 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(Qt::EditRole); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::EditRole, heap); ret.write ((bool)((QFileSystemModel *)cls)->setData (arg1, arg2, arg3)); } @@ -729,7 +729,7 @@ static void _call_f_setFilter_2230 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->setFilter (arg1); } @@ -749,7 +749,7 @@ static void _call_f_setIconProvider_2323 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFileIconProvider *arg1 = args.read (heap); + QFileIconProvider *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->setIconProvider (arg1); } @@ -769,7 +769,7 @@ static void _call_f_setNameFilterDisables_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->setNameFilterDisables (arg1); } @@ -789,7 +789,7 @@ static void _call_f_setNameFilters_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->setNameFilters (arg1); } @@ -809,7 +809,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->setReadOnly (arg1); } @@ -829,7 +829,7 @@ static void _call_f_setResolveSymlinks_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->setResolveSymlinks (arg1); } @@ -849,7 +849,7 @@ static void _call_f_setRootPath_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel *)cls)->setRootPath (arg1)); } @@ -868,7 +868,7 @@ static void _call_f_size_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((qint64)((QFileSystemModel *)cls)->size (arg1)); } @@ -889,8 +889,8 @@ static void _call_f_sort_2340 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel *)cls)->sort (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -925,7 +925,7 @@ static void _call_f_type_c2395 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QFileSystemModel *)cls)->type (arg1)); } @@ -948,9 +948,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFileSystemModel::tr (arg1, arg2, arg3)); } @@ -973,9 +973,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFileSystemModel::trUtf8 (arg1, arg2, arg3)); } @@ -1908,7 +1908,7 @@ static void _call_ctor_QFileSystemModel_Adaptor_1302 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFileSystemModel_Adaptor (arg1)); } @@ -1930,9 +1930,9 @@ static void _call_fp_beginInsertColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_beginInsertColumns_3713 (arg1, arg2, arg3); } @@ -1955,9 +1955,9 @@ static void _call_fp_beginInsertRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_beginInsertRows_3713 (arg1, arg2, arg3); } @@ -1984,11 +1984,11 @@ static void _call_fp_beginMoveColumns_6659 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_beginMoveColumns_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -2014,11 +2014,11 @@ static void _call_fp_beginMoveRows_6659 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - const QModelIndex &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QModelIndex &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_beginMoveRows_6659 (arg1, arg2, arg3, arg4, arg5)); } @@ -2040,9 +2040,9 @@ static void _call_fp_beginRemoveColumns_3713 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_beginRemoveColumns_3713 (arg1, arg2, arg3); } @@ -2065,9 +2065,9 @@ static void _call_fp_beginRemoveRows_3713 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_beginRemoveRows_3713 (arg1, arg2, arg3); } @@ -2184,8 +2184,8 @@ static void _call_fp_changePersistentIndex_4682 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_changePersistentIndex_4682 (arg1, arg2); } @@ -2206,8 +2206,8 @@ static void _call_fp_changePersistentIndexList_5912 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - const QList &arg2 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_changePersistentIndexList_5912 (arg1, arg2); } @@ -2277,9 +2277,9 @@ static void _call_fp_createIndex_c2374 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - void *arg3 = args ? args.read (heap) : (void *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + void *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_createIndex_c2374 (arg1, arg2, arg3)); } @@ -2301,9 +2301,9 @@ static void _call_fp_createIndex_c2657 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - quintptr arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + quintptr arg3 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_createIndex_c2657 (arg1, arg2, arg3)); } @@ -2375,9 +2375,9 @@ static void _call_emitter_dataChanged_7048 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); ((QFileSystemModel_Adaptor *)cls)->emitter_QFileSystemModel_dataChanged_7048 (arg1, arg2, arg3); } @@ -2401,10 +2401,10 @@ static void _call_fp_decodeData_5302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); - QDataStream &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); + QDataStream &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_decodeData_5302 (arg1, arg2, arg3, arg4)); } @@ -2422,7 +2422,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFileSystemModel_Adaptor *)cls)->emitter_QFileSystemModel_destroyed_1302 (arg1); } @@ -2440,7 +2440,7 @@ static void _call_emitter_directoryLoaded_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFileSystemModel_Adaptor *)cls)->emitter_QFileSystemModel_directoryLoaded_2025 (arg1); } @@ -2519,8 +2519,8 @@ static void _call_fp_encodeData_c4599 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); - QDataStream &arg2 = args.read (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); + QDataStream &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_encodeData_c4599 (arg1, arg2); } @@ -2721,9 +2721,9 @@ static void _call_emitter_fileRenamed_5859 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ((QFileSystemModel_Adaptor *)cls)->emitter_QFileSystemModel_fileRenamed_5859 (arg1, arg2, arg3); } @@ -2820,9 +2820,9 @@ static void _call_emitter_headerDataChanged_3231 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QFileSystemModel_Adaptor *)cls)->emitter_QFileSystemModel_headerDataChanged_3231 (arg1, arg2, arg3); } @@ -2927,7 +2927,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_isSignalConnected_c2394 (arg1)); } @@ -2970,8 +2970,8 @@ static void _call_emitter_layoutAboutToBeChanged_7947 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QFileSystemModel_Adaptor *)cls)->emitter_QFileSystemModel_layoutAboutToBeChanged_7947 (arg1, arg2); } @@ -2991,8 +2991,8 @@ static void _call_emitter_layoutChanged_7947 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args ? args.read & > (heap) : (const QList &)(QList()); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint)); + const QList &arg1 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QList(), heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemModel::NoLayoutChangeHint), heap); ((QFileSystemModel_Adaptor *)cls)->emitter_QFileSystemModel_layoutChanged_7947 (arg1, arg2); } @@ -3194,7 +3194,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFileSystemModel_Adaptor *)cls)->fp_QFileSystemModel_receivers_c1731 (arg1)); } @@ -3324,7 +3324,7 @@ static void _call_emitter_rootPathChanged_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFileSystemModel_Adaptor *)cls)->emitter_QFileSystemModel_rootPathChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFocusFrame.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFocusFrame.cc index 213310c96..166c0bed7 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFocusFrame.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFocusFrame.cc @@ -115,7 +115,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame *)cls)->setWidget (arg1); } @@ -154,9 +154,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFocusFrame::tr (arg1, arg2, arg3)); } @@ -179,9 +179,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFocusFrame::trUtf8 (arg1, arg2, arg3)); } @@ -1050,7 +1050,7 @@ static void _call_ctor_QFocusFrame_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFocusFrame_Adaptor (arg1)); } @@ -1192,9 +1192,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->fp_QFocusFrame_create_2208 (arg1, arg2, arg3); } @@ -1213,7 +1213,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QFocusFrame_Adaptor *)cls)->emitter_QFocusFrame_customContextMenuRequested_1916 (arg1); } @@ -1257,8 +1257,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->fp_QFocusFrame_destroy_1620 (arg1, arg2); } @@ -1277,7 +1277,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFocusFrame_Adaptor *)cls)->emitter_QFocusFrame_destroyed_1302 (arg1); } @@ -1677,7 +1677,7 @@ static void _call_fp_initStyleOption_c1865 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOption *arg1 = args.read (heap); + QStyleOption *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFocusFrame_Adaptor *)cls)->fp_QFocusFrame_initStyleOption_c1865 (arg1); } @@ -1743,7 +1743,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFocusFrame_Adaptor *)cls)->fp_QFocusFrame_isSignalConnected_c2394 (arg1)); } @@ -2067,7 +2067,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFocusFrame_Adaptor *)cls)->fp_QFocusFrame_receivers_c1731 (arg1)); } @@ -2333,7 +2333,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QFocusFrame_Adaptor *)cls)->emitter_QFocusFrame_windowIconChanged_1787 (arg1); } @@ -2351,7 +2351,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFocusFrame_Adaptor *)cls)->emitter_QFocusFrame_windowIconTextChanged_2025 (arg1); } @@ -2369,7 +2369,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFocusFrame_Adaptor *)cls)->emitter_QFocusFrame_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc index 348cbe5b5..a43870562 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontComboBox.cc @@ -152,7 +152,7 @@ static void _call_f_setCurrentFont_1801 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox *)cls)->setCurrentFont (arg1); } @@ -172,7 +172,7 @@ static void _call_f_setFontFilters_3550 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox *)cls)->setFontFilters (arg1); } @@ -192,7 +192,7 @@ static void _call_f_setWritingSystem_3214 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox *)cls)->setWritingSystem (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -246,9 +246,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFontComboBox::tr (arg1, arg2, arg3)); } @@ -271,9 +271,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFontComboBox::trUtf8 (arg1, arg2, arg3)); } @@ -1242,7 +1242,7 @@ static void _call_ctor_QFontComboBox_Adaptor_1315 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFontComboBox_Adaptor (arg1)); } @@ -1284,7 +1284,7 @@ static void _call_emitter_activated_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_activated_767 (arg1); } @@ -1302,7 +1302,7 @@ static void _call_emitter_activated_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_activated_2025 (arg1); } @@ -1420,9 +1420,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->fp_QFontComboBox_create_2208 (arg1, arg2, arg3); } @@ -1441,7 +1441,7 @@ static void _call_emitter_currentFontChanged_1801 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_currentFontChanged_1801 (arg1); } @@ -1459,7 +1459,7 @@ static void _call_emitter_currentIndexChanged_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_currentIndexChanged_767 (arg1); } @@ -1477,7 +1477,7 @@ static void _call_emitter_currentIndexChanged_2025 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_currentIndexChanged_2025 (arg1); } @@ -1495,7 +1495,7 @@ static void _call_emitter_currentTextChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_currentTextChanged_2025 (arg1); } @@ -1513,7 +1513,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_customContextMenuRequested_1916 (arg1); } @@ -1557,8 +1557,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->fp_QFontComboBox_destroy_1620 (arg1, arg2); } @@ -1577,7 +1577,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_destroyed_1302 (arg1); } @@ -1715,7 +1715,7 @@ static void _call_emitter_editTextChanged_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_editTextChanged_2025 (arg1); } @@ -1991,7 +1991,7 @@ static void _call_emitter_highlighted_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_highlighted_767 (arg1); } @@ -2009,7 +2009,7 @@ static void _call_emitter_highlighted_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_highlighted_2025 (arg1); } @@ -2051,7 +2051,7 @@ static void _call_fp_initStyleOption_c2658 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionComboBox *arg1 = args.read (heap); + QStyleOptionComboBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontComboBox_Adaptor *)cls)->fp_QFontComboBox_initStyleOption_c2658 (arg1); } @@ -2117,7 +2117,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontComboBox_Adaptor *)cls)->fp_QFontComboBox_isSignalConnected_c2394 (arg1)); } @@ -2441,7 +2441,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFontComboBox_Adaptor *)cls)->fp_QFontComboBox_receivers_c1731 (arg1)); } @@ -2727,7 +2727,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_windowIconChanged_1787 (arg1); } @@ -2745,7 +2745,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_windowIconTextChanged_2025 (arg1); } @@ -2763,7 +2763,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFontComboBox_Adaptor *)cls)->emitter_QFontComboBox_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc index b17726798..e5b96c71f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFontDialog.cc @@ -147,8 +147,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog *)cls)->open (arg1, arg2); } @@ -198,7 +198,7 @@ static void _call_f_setCurrentFont_1801 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog *)cls)->setCurrentFont (arg1); } @@ -220,8 +220,8 @@ static void _call_f_setOption_4020 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -241,7 +241,7 @@ static void _call_f_setOptions_3960 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog *)cls)->setOptions (arg1); } @@ -261,7 +261,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog *)cls)->setVisible (arg1); } @@ -281,7 +281,7 @@ static void _call_f_testOption_c3264 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QFontDialog *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -302,8 +302,8 @@ static void _call_f_getFont_2257 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + bool *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QFont)QFontDialog::getFont (arg1, arg2)); } @@ -330,11 +330,11 @@ static void _call_f_getFont_9719 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool *arg1 = args.read (heap); - const QFont &arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - QFlags arg5 = args ? args.read > (heap) : (QFlags)(0); + bool *arg1 = gsi::arg_reader() (args, heap); + const QFont &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QFont)QFontDialog::getFont (arg1, arg2, arg3, arg4, arg5)); } @@ -357,9 +357,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFontDialog::tr (arg1, arg2, arg3)); } @@ -382,9 +382,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFontDialog::trUtf8 (arg1, arg2, arg3)); } @@ -1390,7 +1390,7 @@ static void _call_ctor_QFontDialog_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFontDialog_Adaptor (arg1)); } @@ -1410,8 +1410,8 @@ static void _call_ctor_QFontDialog_Adaptor_3008 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QFont &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFontDialog_Adaptor (arg1, arg2)); } @@ -1487,7 +1487,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->fp_QFontDialog_adjustPosition_1315 (arg1); } @@ -1606,9 +1606,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->fp_QFontDialog_create_2208 (arg1, arg2, arg3); } @@ -1627,7 +1627,7 @@ static void _call_emitter_currentFontChanged_1801 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ((QFontDialog_Adaptor *)cls)->emitter_QFontDialog_currentFontChanged_1801 (arg1); } @@ -1645,7 +1645,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QFontDialog_Adaptor *)cls)->emitter_QFontDialog_customContextMenuRequested_1916 (arg1); } @@ -1689,8 +1689,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFontDialog_Adaptor *)cls)->fp_QFontDialog_destroy_1620 (arg1, arg2); } @@ -1709,7 +1709,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFontDialog_Adaptor *)cls)->emitter_QFontDialog_destroyed_1302 (arg1); } @@ -1963,7 +1963,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QFontDialog_Adaptor *)cls)->emitter_QFontDialog_finished_767 (arg1); } @@ -2080,7 +2080,7 @@ static void _call_emitter_fontSelected_1801 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); ((QFontDialog_Adaptor *)cls)->emitter_QFontDialog_fontSelected_1801 (arg1); } @@ -2235,7 +2235,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFontDialog_Adaptor *)cls)->fp_QFontDialog_isSignalConnected_c2394 (arg1)); } @@ -2579,7 +2579,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFontDialog_Adaptor *)cls)->fp_QFontDialog_receivers_c1731 (arg1)); } @@ -2879,7 +2879,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QFontDialog_Adaptor *)cls)->emitter_QFontDialog_windowIconChanged_1787 (arg1); } @@ -2897,7 +2897,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFontDialog_Adaptor *)cls)->emitter_QFontDialog_windowIconTextChanged_2025 (arg1); } @@ -2915,7 +2915,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFontDialog_Adaptor *)cls)->emitter_QFontDialog_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc index 06ca32749..eb8020a94 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFormLayout.cc @@ -76,7 +76,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addItem (arg1); } @@ -98,8 +98,8 @@ static void _call_f_addRow_2522 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -121,8 +121,8 @@ static void _call_f_addRow_2548 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QLayout *arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QLayout *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -144,8 +144,8 @@ static void _call_f_addRow_3232 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -167,8 +167,8 @@ static void _call_f_addRow_3258 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QLayout *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QLayout *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1, arg2); } @@ -188,7 +188,7 @@ static void _call_f_addRow_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1); } @@ -208,7 +208,7 @@ static void _call_f_addRow_1341 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->addRow (arg1); } @@ -292,9 +292,9 @@ static void _call_f_getItemPosition_c4166 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int *arg2 = args.read (heap); - qt_gsi::Converter::target_type * arg3 = args.read::target_type * > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + qt_gsi::Converter::target_type * arg3 = gsi::arg_reader::target_type * >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->getItemPosition (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).ptr()); } @@ -318,9 +318,9 @@ static void _call_f_getLayoutPosition_c4740 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); - int *arg2 = args.read (heap); - qt_gsi::Converter::target_type * arg3 = args.read::target_type * > (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + qt_gsi::Converter::target_type * arg3 = gsi::arg_reader::target_type * >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->getLayoutPosition (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).ptr()); } @@ -344,9 +344,9 @@ static void _call_f_getWidgetPosition_c4714 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int *arg2 = args.read (heap); - qt_gsi::Converter::target_type * arg3 = args.read::target_type * > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + qt_gsi::Converter::target_type * arg3 = gsi::arg_reader::target_type * >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->getWidgetPosition (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).ptr()); } @@ -381,7 +381,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFormLayout *)cls)->heightForWidth (arg1)); } @@ -419,9 +419,9 @@ static void _call_f_insertRow_3181 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -445,9 +445,9 @@ static void _call_f_insertRow_3207 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - QLayout *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + QLayout *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -471,9 +471,9 @@ static void _call_f_insertRow_3891 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -497,9 +497,9 @@ static void _call_f_insertRow_3917 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QLayout *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QLayout *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2, arg3); } @@ -521,8 +521,8 @@ static void _call_f_insertRow_1974 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2); } @@ -544,8 +544,8 @@ static void _call_f_insertRow_2000 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QLayout *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QLayout *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->insertRow (arg1, arg2); } @@ -583,8 +583,8 @@ static void _call_f_itemAt_c3135 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QLayoutItem *)((QFormLayout *)cls)->itemAt (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -603,7 +603,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QFormLayout *)cls)->itemAt (arg1)); } @@ -637,7 +637,7 @@ static void _call_f_labelForField_c1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QFormLayout *)cls)->labelForField (arg1)); } @@ -656,7 +656,7 @@ static void _call_f_labelForField_c1341 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QFormLayout *)cls)->labelForField (arg1)); } @@ -720,7 +720,7 @@ static void _call_f_setFieldGrowthPolicy_3418 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setFieldGrowthPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -740,7 +740,7 @@ static void _call_f_setFormAlignment_2750 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setFormAlignment (arg1); } @@ -760,7 +760,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setGeometry (arg1); } @@ -780,7 +780,7 @@ static void _call_f_setHorizontalSpacing_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setHorizontalSpacing (arg1); } @@ -804,9 +804,9 @@ static void _call_f_setItem_4767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QLayoutItem *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QLayoutItem *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setItem (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -826,7 +826,7 @@ static void _call_f_setLabelAlignment_2750 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setLabelAlignment (arg1); } @@ -850,9 +850,9 @@ static void _call_f_setLayout_4368 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QLayout *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QLayout *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setLayout (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -872,7 +872,7 @@ static void _call_f_setRowWrapPolicy_3021 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setRowWrapPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -892,7 +892,7 @@ static void _call_f_setSpacing_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setSpacing (arg1); } @@ -912,7 +912,7 @@ static void _call_f_setVerticalSpacing_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setVerticalSpacing (arg1); } @@ -936,9 +936,9 @@ static void _call_f_setWidget_4342 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QWidget *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout *)cls)->setWidget (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -988,7 +988,7 @@ static void _call_f_takeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QFormLayout *)cls)->takeAt (arg1)); } @@ -1026,9 +1026,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFormLayout::tr (arg1, arg2, arg3)); } @@ -1051,9 +1051,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFormLayout::trUtf8 (arg1, arg2, arg3)); } @@ -1630,7 +1630,7 @@ static void _call_ctor_QFormLayout_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QFormLayout_Adaptor (arg1)); } @@ -1648,7 +1648,7 @@ static void _call_fp_addChildLayout_1341 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->fp_QFormLayout_addChildLayout_1341 (arg1); @@ -1668,7 +1668,7 @@ static void _call_fp_addChildWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->fp_QFormLayout_addChildWidget_1315 (arg1); } @@ -1711,7 +1711,7 @@ static void _call_fp_adoptLayout_1341 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFormLayout_Adaptor *)cls)->fp_QFormLayout_adoptLayout_1341 (arg1)); } @@ -1729,7 +1729,7 @@ static void _call_fp_alignmentRect_c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QFormLayout_Adaptor *)cls)->fp_QFormLayout_alignmentRect_c1792 (arg1)); } @@ -1833,7 +1833,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFormLayout_Adaptor *)cls)->emitter_QFormLayout_destroyed_1302 (arg1); } @@ -2066,7 +2066,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFormLayout_Adaptor *)cls)->fp_QFormLayout_isSignalConnected_c2394 (arg1)); } @@ -2187,7 +2187,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFormLayout_Adaptor *)cls)->fp_QFormLayout_receivers_c1731 (arg1)); } @@ -2361,7 +2361,7 @@ static void _call_fp_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFormLayout_Adaptor *)cls)->fp_QFormLayout_widgetEvent_1217 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc index b2b70ae0c..3d731bae7 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQFrame.cc @@ -220,7 +220,7 @@ static void _call_f_setFrameRect_1792 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame *)cls)->setFrameRect (arg1); } @@ -240,7 +240,7 @@ static void _call_f_setFrameShadow_1738 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame *)cls)->setFrameShadow (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -260,7 +260,7 @@ static void _call_f_setFrameShape_1621 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame *)cls)->setFrameShape (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -280,7 +280,7 @@ static void _call_f_setFrameStyle_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame *)cls)->setFrameStyle (arg1); } @@ -300,7 +300,7 @@ static void _call_f_setLineWidth_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame *)cls)->setLineWidth (arg1); } @@ -320,7 +320,7 @@ static void _call_f_setMidLineWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame *)cls)->setMidLineWidth (arg1); } @@ -359,9 +359,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFrame::tr (arg1, arg2, arg3)); } @@ -384,9 +384,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QFrame::trUtf8 (arg1, arg2, arg3)); } @@ -1280,8 +1280,8 @@ static void _call_ctor_QFrame_Adaptor_3702 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QFrame_Adaptor (arg1, arg2)); } @@ -1423,9 +1423,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->fp_QFrame_create_2208 (arg1, arg2, arg3); } @@ -1444,7 +1444,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QFrame_Adaptor *)cls)->emitter_QFrame_customContextMenuRequested_1916 (arg1); } @@ -1488,8 +1488,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->fp_QFrame_destroy_1620 (arg1, arg2); } @@ -1508,7 +1508,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QFrame_Adaptor *)cls)->emitter_QFrame_destroyed_1302 (arg1); } @@ -1622,7 +1622,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->fp_QFrame_drawFrame_1426 (arg1); } @@ -1927,7 +1927,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QFrame_Adaptor *)cls)->fp_QFrame_initStyleOption_c2356 (arg1); } @@ -1993,7 +1993,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QFrame_Adaptor *)cls)->fp_QFrame_isSignalConnected_c2394 (arg1)); } @@ -2317,7 +2317,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QFrame_Adaptor *)cls)->fp_QFrame_receivers_c1731 (arg1)); } @@ -2583,7 +2583,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QFrame_Adaptor *)cls)->emitter_QFrame_windowIconChanged_1787 (arg1); } @@ -2601,7 +2601,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFrame_Adaptor *)cls)->emitter_QFrame_windowIconTextChanged_2025 (arg1); } @@ -2619,7 +2619,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QFrame_Adaptor *)cls)->emitter_QFrame_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGesture.cc index 5aca23ce2..1e94f0b87 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGesture.cc @@ -130,7 +130,7 @@ static void _call_f_setGestureCancelPolicy_3309 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture *)cls)->setGestureCancelPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -150,7 +150,7 @@ static void _call_f_setHotSpot_1986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGesture *)cls)->setHotSpot (arg1); } @@ -205,9 +205,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGesture::tr (arg1, arg2, arg3)); } @@ -230,9 +230,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGesture::trUtf8 (arg1, arg2, arg3)); } @@ -425,7 +425,7 @@ static void _call_ctor_QGesture_Adaptor_1302 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGesture_Adaptor (arg1)); } @@ -491,7 +491,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGesture_Adaptor *)cls)->emitter_QGesture_destroyed_1302 (arg1); } @@ -582,7 +582,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGesture_Adaptor *)cls)->fp_QGesture_isSignalConnected_c2394 (arg1)); } @@ -600,7 +600,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGesture_Adaptor *)cls)->fp_QGesture_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureEvent.cc index 01b886dbd..c30bd6619 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureEvent.cc @@ -70,7 +70,7 @@ static void _call_f_accept_1438 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->accept (arg1); } @@ -90,7 +90,7 @@ static void _call_f_accept_1902 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->accept (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -140,7 +140,7 @@ static void _call_f_gesture_c1902 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QGesture *)((QGestureEvent *)cls)->gesture (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -190,7 +190,7 @@ static void _call_f_ignore_1438 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->ignore (arg1); } @@ -210,7 +210,7 @@ static void _call_f_ignore_1902 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->ignore (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -245,7 +245,7 @@ static void _call_f_isAccepted_c1438 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGestureEvent *)cls)->isAccepted (arg1)); } @@ -264,7 +264,7 @@ static void _call_f_isAccepted_c1902 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QGestureEvent *)cls)->isAccepted (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -283,7 +283,7 @@ static void _call_f_mapToGraphicsScene_c1986 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGestureEvent *)cls)->mapToGraphicsScene (arg1)); } @@ -302,7 +302,7 @@ static void _call_f_setAccepted_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->setAccepted (arg1); } @@ -324,8 +324,8 @@ static void _call_f_setAccepted_2194 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); - bool arg2 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->setAccepted (arg1, arg2); } @@ -347,8 +347,8 @@ static void _call_f_setAccepted_2658 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->setAccepted (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -368,7 +368,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureEvent *)cls)->setWidget (arg1); } @@ -457,7 +457,7 @@ static void _call_ctor_QGestureEvent_Adaptor_2930 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write (new QGestureEvent_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureRecognizer.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureRecognizer.cc index 3fbbac0a5..6fea3e137 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureRecognizer.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGestureRecognizer.cc @@ -53,7 +53,7 @@ static void _call_f_create_1302 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((QGesture *)((QGestureRecognizer *)cls)->create (arg1)); } @@ -76,9 +76,9 @@ static void _call_f_recognize_3741 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); - QObject *arg2 = args.read (heap); - QEvent *arg3 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = gsi::arg_reader() (args, heap); + QEvent *arg3 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QGestureRecognizer *)cls)->recognize (arg1, arg2, arg3)); } @@ -97,7 +97,7 @@ static void _call_f_reset_1438 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGesture *arg1 = args.read (heap); + QGesture *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGestureRecognizer *)cls)->reset (arg1); } @@ -117,7 +117,7 @@ static void _call_f_registerRecognizer_2486 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGestureRecognizer *arg1 = args.read (heap); + QGestureRecognizer *arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QGestureRecognizer::registerRecognizer (arg1))); } @@ -136,7 +136,7 @@ static void _call_f_unregisterRecognizer_1902 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QGestureRecognizer::unregisterRecognizer (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchor.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchor.cc index a592f2fd3..62374a6da 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchor.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchor.cc @@ -69,7 +69,7 @@ static void _call_f_setSizePolicy_2292 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor *)cls)->setSizePolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -89,7 +89,7 @@ static void _call_f_setSpacing_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchor *)cls)->setSpacing (arg1); } @@ -159,9 +159,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsAnchor::tr (arg1, arg2, arg3)); } @@ -184,9 +184,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsAnchor::trUtf8 (arg1, arg2, arg3)); } @@ -412,7 +412,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsAnchor_Adaptor *)cls)->emitter_QGraphicsAnchor_destroyed_1302 (arg1); } @@ -503,7 +503,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsAnchor_Adaptor *)cls)->fp_QGraphicsAnchor_isSignalConnected_c2394 (arg1)); } @@ -521,7 +521,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsAnchor_Adaptor *)cls)->fp_QGraphicsAnchor_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc index 5d913e628..758d24dbd 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsAnchorLayout.cc @@ -63,10 +63,10 @@ static void _call_f_addAnchor_8538 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QGraphicsLayoutItem *arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QGraphicsLayoutItem *arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QGraphicsAnchor *)((QGraphicsAnchorLayout *)cls)->addAnchor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -89,9 +89,9 @@ static void _call_f_addAnchors_7507 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - QGraphicsLayoutItem *arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::Horizontal | Qt::Vertical); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + QGraphicsLayoutItem *arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::Horizontal | Qt::Vertical, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout *)cls)->addAnchors (arg1, arg2, arg3); } @@ -117,10 +117,10 @@ static void _call_f_addCornerAnchors_7522 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QGraphicsLayoutItem *arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QGraphicsLayoutItem *arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout *)cls)->addCornerAnchors (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -146,10 +146,10 @@ static void _call_f_anchor_8538 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QGraphicsLayoutItem *arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args.read::target_type & > (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QGraphicsLayoutItem *arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QGraphicsAnchor *)((QGraphicsAnchorLayout *)cls)->anchor (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3, qt_gsi::QtToCppAdaptor(arg4).cref())); } @@ -214,7 +214,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsAnchorLayout *)cls)->itemAt (arg1)); } @@ -233,7 +233,7 @@ static void _call_f_removeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout *)cls)->removeAt (arg1); } @@ -253,7 +253,7 @@ static void _call_f_setGeometry_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout *)cls)->setGeometry (arg1); } @@ -273,7 +273,7 @@ static void _call_f_setHorizontalSpacing_1071 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout *)cls)->setHorizontalSpacing (arg1); } @@ -293,7 +293,7 @@ static void _call_f_setSpacing_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout *)cls)->setSpacing (arg1); } @@ -313,7 +313,7 @@ static void _call_f_setVerticalSpacing_1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout *)cls)->setVerticalSpacing (arg1); } @@ -561,7 +561,7 @@ static void _call_ctor_QGraphicsAnchorLayout_Adaptor_2557 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args ? args.read (heap) : (QGraphicsLayoutItem *)(0); + QGraphicsLayoutItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsAnchorLayout_Adaptor (arg1)); } @@ -579,7 +579,7 @@ static void _call_fp_addChildLayoutItem_2557 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->fp_QGraphicsAnchorLayout_addChildLayoutItem_2557 (arg1); } @@ -741,7 +741,7 @@ static void _call_fp_setGraphicsItem_1919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->fp_QGraphicsAnchorLayout_setGraphicsItem_1919 (arg1); } @@ -760,7 +760,7 @@ static void _call_fp_setOwnedByLayout_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsAnchorLayout_Adaptor *)cls)->fp_QGraphicsAnchorLayout_setOwnedByLayout_864 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc index c12c54d70..2b04562a0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsBlurEffect.cc @@ -103,7 +103,7 @@ static void _call_f_boundingRectFor_c1862 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsBlurEffect *)cls)->boundingRectFor (arg1)); } @@ -122,7 +122,7 @@ static void _call_f_setBlurHints_3948 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect *)cls)->setBlurHints (arg1); } @@ -142,7 +142,7 @@ static void _call_f_setBlurRadius_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect *)cls)->setBlurRadius (arg1); } @@ -166,9 +166,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsBlurEffect::tr (arg1, arg2, arg3)); } @@ -191,9 +191,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsBlurEffect::trUtf8 (arg1, arg2, arg3)); } @@ -477,7 +477,7 @@ static void _call_ctor_QGraphicsBlurEffect_Adaptor_1302 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsBlurEffect_Adaptor (arg1)); } @@ -495,7 +495,7 @@ static void _call_emitter_blurHintsChanged_3948 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ((QGraphicsBlurEffect_Adaptor *)cls)->emitter_QGraphicsBlurEffect_blurHintsChanged_3948 (arg1); } @@ -513,7 +513,7 @@ static void _call_emitter_blurRadiusChanged_1071 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QGraphicsBlurEffect_Adaptor *)cls)->emitter_QGraphicsBlurEffect_blurRadiusChanged_1071 (arg1); } @@ -602,7 +602,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsBlurEffect_Adaptor *)cls)->emitter_QGraphicsBlurEffect_destroyed_1302 (arg1); } @@ -668,7 +668,7 @@ static void _call_fp_drawSource_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsBlurEffect_Adaptor *)cls)->fp_QGraphicsBlurEffect_drawSource_1426 (arg1); } @@ -687,7 +687,7 @@ static void _call_emitter_enabledChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QGraphicsBlurEffect_Adaptor *)cls)->emitter_QGraphicsBlurEffect_enabledChanged_864 (arg1); } @@ -754,7 +754,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsBlurEffect_Adaptor *)cls)->fp_QGraphicsBlurEffect_isSignalConnected_c2394 (arg1)); } @@ -772,7 +772,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsBlurEffect_Adaptor *)cls)->fp_QGraphicsBlurEffect_receivers_c1731 (arg1)); } @@ -818,7 +818,7 @@ static void _call_fp_sourceBoundingRect_c2426 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); ret.write ((QRectF)((QGraphicsBlurEffect_Adaptor *)cls)->fp_QGraphicsBlurEffect_sourceBoundingRect_c2426 (arg1)); } @@ -878,9 +878,9 @@ static void _call_fp_sourcePixmap_c6763 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); - QPoint *arg2 = args ? args.read (heap) : (QPoint *)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); + QPoint *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect), heap); ret.write ((QPixmap)((QGraphicsBlurEffect_Adaptor *)cls)->fp_QGraphicsBlurEffect_sourcePixmap_c6763 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc index d8044f610..bf6a662bd 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsColorizeEffect.cc @@ -89,7 +89,7 @@ static void _call_f_setColor_1905 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect *)cls)->setColor (arg1); } @@ -109,7 +109,7 @@ static void _call_f_setStrength_1071 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect *)cls)->setStrength (arg1); } @@ -148,9 +148,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsColorizeEffect::tr (arg1, arg2, arg3)); } @@ -173,9 +173,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsColorizeEffect::trUtf8 (arg1, arg2, arg3)); } @@ -458,7 +458,7 @@ static void _call_ctor_QGraphicsColorizeEffect_Adaptor_1302 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsColorizeEffect_Adaptor (arg1)); } @@ -523,7 +523,7 @@ static void _call_emitter_colorChanged_1905 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsColorizeEffect_Adaptor *)cls)->emitter_QGraphicsColorizeEffect_colorChanged_1905 (arg1); } @@ -565,7 +565,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsColorizeEffect_Adaptor *)cls)->emitter_QGraphicsColorizeEffect_destroyed_1302 (arg1); } @@ -631,7 +631,7 @@ static void _call_fp_drawSource_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsColorizeEffect_Adaptor *)cls)->fp_QGraphicsColorizeEffect_drawSource_1426 (arg1); } @@ -650,7 +650,7 @@ static void _call_emitter_enabledChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QGraphicsColorizeEffect_Adaptor *)cls)->emitter_QGraphicsColorizeEffect_enabledChanged_864 (arg1); } @@ -717,7 +717,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsColorizeEffect_Adaptor *)cls)->fp_QGraphicsColorizeEffect_isSignalConnected_c2394 (arg1)); } @@ -735,7 +735,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsColorizeEffect_Adaptor *)cls)->fp_QGraphicsColorizeEffect_receivers_c1731 (arg1)); } @@ -781,7 +781,7 @@ static void _call_fp_sourceBoundingRect_c2426 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); ret.write ((QRectF)((QGraphicsColorizeEffect_Adaptor *)cls)->fp_QGraphicsColorizeEffect_sourceBoundingRect_c2426 (arg1)); } @@ -841,9 +841,9 @@ static void _call_fp_sourcePixmap_c6763 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); - QPoint *arg2 = args ? args.read (heap) : (QPoint *)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); + QPoint *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect), heap); ret.write ((QPixmap)((QGraphicsColorizeEffect_Adaptor *)cls)->fp_QGraphicsColorizeEffect_sourcePixmap_c6763 (arg1, arg2, arg3)); } @@ -861,7 +861,7 @@ static void _call_emitter_strengthChanged_1071 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QGraphicsColorizeEffect_Adaptor *)cls)->emitter_QGraphicsColorizeEffect_strengthChanged_1071 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc index 5f4027dd8..971d76dc6 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsDropShadowEffect.cc @@ -90,7 +90,7 @@ static void _call_f_boundingRectFor_c1862 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsDropShadowEffect *)cls)->boundingRectFor (arg1)); } @@ -139,7 +139,7 @@ static void _call_f_setBlurRadius_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect *)cls)->setBlurRadius (arg1); } @@ -159,7 +159,7 @@ static void _call_f_setColor_1905 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect *)cls)->setColor (arg1); } @@ -179,7 +179,7 @@ static void _call_f_setOffset_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect *)cls)->setOffset (arg1); } @@ -201,8 +201,8 @@ static void _call_f_setOffset_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect *)cls)->setOffset (arg1, arg2); } @@ -222,7 +222,7 @@ static void _call_f_setOffset_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect *)cls)->setOffset (arg1); } @@ -242,7 +242,7 @@ static void _call_f_setXOffset_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect *)cls)->setXOffset (arg1); } @@ -262,7 +262,7 @@ static void _call_f_setYOffset_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect *)cls)->setYOffset (arg1); } @@ -316,9 +316,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsDropShadowEffect::tr (arg1, arg2, arg3)); } @@ -341,9 +341,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsDropShadowEffect::trUtf8 (arg1, arg2, arg3)); } @@ -642,7 +642,7 @@ static void _call_ctor_QGraphicsDropShadowEffect_Adaptor_1302 (const qt_gsi::Gen { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsDropShadowEffect_Adaptor (arg1)); } @@ -660,7 +660,7 @@ static void _call_emitter_blurRadiusChanged_1071 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QGraphicsDropShadowEffect_Adaptor *)cls)->emitter_QGraphicsDropShadowEffect_blurRadiusChanged_1071 (arg1); } @@ -725,7 +725,7 @@ static void _call_emitter_colorChanged_1905 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsDropShadowEffect_Adaptor *)cls)->emitter_QGraphicsDropShadowEffect_colorChanged_1905 (arg1); } @@ -767,7 +767,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsDropShadowEffect_Adaptor *)cls)->emitter_QGraphicsDropShadowEffect_destroyed_1302 (arg1); } @@ -833,7 +833,7 @@ static void _call_fp_drawSource_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsDropShadowEffect_Adaptor *)cls)->fp_QGraphicsDropShadowEffect_drawSource_1426 (arg1); } @@ -852,7 +852,7 @@ static void _call_emitter_enabledChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QGraphicsDropShadowEffect_Adaptor *)cls)->emitter_QGraphicsDropShadowEffect_enabledChanged_864 (arg1); } @@ -919,7 +919,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsDropShadowEffect_Adaptor *)cls)->fp_QGraphicsDropShadowEffect_isSignalConnected_c2394 (arg1)); } @@ -937,7 +937,7 @@ static void _call_emitter_offsetChanged_1986 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsDropShadowEffect_Adaptor *)cls)->emitter_QGraphicsDropShadowEffect_offsetChanged_1986 (arg1); } @@ -955,7 +955,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsDropShadowEffect_Adaptor *)cls)->fp_QGraphicsDropShadowEffect_receivers_c1731 (arg1)); } @@ -1001,7 +1001,7 @@ static void _call_fp_sourceBoundingRect_c2426 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); ret.write ((QRectF)((QGraphicsDropShadowEffect_Adaptor *)cls)->fp_QGraphicsDropShadowEffect_sourceBoundingRect_c2426 (arg1)); } @@ -1061,9 +1061,9 @@ static void _call_fp_sourcePixmap_c6763 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); - QPoint *arg2 = args ? args.read (heap) : (QPoint *)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); + QPoint *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect), heap); ret.write ((QPixmap)((QGraphicsDropShadowEffect_Adaptor *)cls)->fp_QGraphicsDropShadowEffect_sourcePixmap_c6763 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEffect.cc index c40a5d58a..3e7b38f11 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEffect.cc @@ -88,7 +88,7 @@ static void _call_f_boundingRectFor_c1862 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsEffect *)cls)->boundingRectFor (arg1)); } @@ -122,7 +122,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect *)cls)->setEnabled (arg1); } @@ -162,9 +162,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsEffect::tr (arg1, arg2, arg3)); } @@ -187,9 +187,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsEffect::trUtf8 (arg1, arg2, arg3)); } @@ -460,7 +460,7 @@ static void _call_ctor_QGraphicsEffect_Adaptor_1302 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsEffect_Adaptor (arg1)); } @@ -549,7 +549,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsEffect_Adaptor *)cls)->emitter_QGraphicsEffect_destroyed_1302 (arg1); } @@ -615,7 +615,7 @@ static void _call_fp_drawSource_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEffect_Adaptor *)cls)->fp_QGraphicsEffect_drawSource_1426 (arg1); } @@ -634,7 +634,7 @@ static void _call_emitter_enabledChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QGraphicsEffect_Adaptor *)cls)->emitter_QGraphicsEffect_enabledChanged_864 (arg1); } @@ -701,7 +701,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEffect_Adaptor *)cls)->fp_QGraphicsEffect_isSignalConnected_c2394 (arg1)); } @@ -719,7 +719,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsEffect_Adaptor *)cls)->fp_QGraphicsEffect_receivers_c1731 (arg1)); } @@ -765,7 +765,7 @@ static void _call_fp_sourceBoundingRect_c2426 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); ret.write ((QRectF)((QGraphicsEffect_Adaptor *)cls)->fp_QGraphicsEffect_sourceBoundingRect_c2426 (arg1)); } @@ -825,9 +825,9 @@ static void _call_fp_sourcePixmap_c6763 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); - QPoint *arg2 = args ? args.read (heap) : (QPoint *)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); + QPoint *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect), heap); ret.write ((QPixmap)((QGraphicsEffect_Adaptor *)cls)->fp_QGraphicsEffect_sourcePixmap_c6763 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc index 359a39881..8c2047963 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsEllipseItem.cc @@ -94,7 +94,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem *)cls)->contains (arg1)); } @@ -113,7 +113,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsEllipseItem *)cls)->isObscuredBy (arg1)); } @@ -151,9 +151,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem *)cls)->paint (arg1, arg2, arg3); } @@ -188,7 +188,7 @@ static void _call_f_setRect_1862 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem *)cls)->setRect (arg1); } @@ -214,10 +214,10 @@ static void _call_f_setRect_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem *)cls)->setRect (arg1, arg2, arg3, arg4); } @@ -237,7 +237,7 @@ static void _call_f_setSpanAngle_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem *)cls)->setSpanAngle (arg1); } @@ -257,7 +257,7 @@ static void _call_f_setStartAngle_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsEllipseItem *)cls)->setStartAngle (arg1); } @@ -995,7 +995,7 @@ static void _call_ctor_QGraphicsEllipseItem_Adaptor_1919 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsEllipseItem_Adaptor (arg1)); } @@ -1015,8 +1015,8 @@ static void _call_ctor_QGraphicsEllipseItem_Adaptor_3673 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsEllipseItem_Adaptor (arg1, arg2)); } @@ -1042,11 +1042,11 @@ static void _call_ctor_QGraphicsEllipseItem_Adaptor_5771 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - QGraphicsItem *arg5 = args ? args.read (heap) : (QGraphicsItem *)(0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsEllipseItem_Adaptor (arg1, arg2, arg3, arg4, arg5)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc index d8f9e26b1..48a9e4725 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsGridLayout.cc @@ -66,12 +66,12 @@ static void _call_f_addItem_7835 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->addItem (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -97,10 +97,10 @@ static void _call_f_addItem_6517 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(0); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->addItem (arg1, arg2, arg3, arg4); } @@ -120,7 +120,7 @@ static void _call_f_alignment_c2557 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QGraphicsGridLayout *)cls)->alignment (arg1)); } @@ -139,7 +139,7 @@ static void _call_f_columnAlignment_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QGraphicsGridLayout *)cls)->columnAlignment (arg1)); } @@ -173,7 +173,7 @@ static void _call_f_columnMaximumWidth_c767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->columnMaximumWidth (arg1)); } @@ -192,7 +192,7 @@ static void _call_f_columnMinimumWidth_c767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->columnMinimumWidth (arg1)); } @@ -211,7 +211,7 @@ static void _call_f_columnPreferredWidth_c767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->columnPreferredWidth (arg1)); } @@ -230,7 +230,7 @@ static void _call_f_columnSpacing_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->columnSpacing (arg1)); } @@ -249,7 +249,7 @@ static void _call_f_columnStretchFactor_c767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsGridLayout *)cls)->columnStretchFactor (arg1)); } @@ -316,8 +316,8 @@ static void _call_f_itemAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsGridLayout *)cls)->itemAt (arg1, arg2)); } @@ -336,7 +336,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsGridLayout *)cls)->itemAt (arg1)); } @@ -355,7 +355,7 @@ static void _call_f_removeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->removeAt (arg1); } @@ -375,7 +375,7 @@ static void _call_f_removeItem_2557 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->removeItem (arg1); } @@ -395,7 +395,7 @@ static void _call_f_rowAlignment_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QGraphicsGridLayout *)cls)->rowAlignment (arg1)); } @@ -429,7 +429,7 @@ static void _call_f_rowMaximumHeight_c767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->rowMaximumHeight (arg1)); } @@ -448,7 +448,7 @@ static void _call_f_rowMinimumHeight_c767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->rowMinimumHeight (arg1)); } @@ -467,7 +467,7 @@ static void _call_f_rowPreferredHeight_c767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->rowPreferredHeight (arg1)); } @@ -486,7 +486,7 @@ static void _call_f_rowSpacing_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsGridLayout *)cls)->rowSpacing (arg1)); } @@ -505,7 +505,7 @@ static void _call_f_rowStretchFactor_c767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsGridLayout *)cls)->rowStretchFactor (arg1)); } @@ -526,8 +526,8 @@ static void _call_f_setAlignment_5199 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setAlignment (arg1, arg2); } @@ -549,8 +549,8 @@ static void _call_f_setColumnAlignment_3409 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setColumnAlignment (arg1, arg2); } @@ -572,8 +572,8 @@ static void _call_f_setColumnFixedWidth_1730 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setColumnFixedWidth (arg1, arg2); } @@ -595,8 +595,8 @@ static void _call_f_setColumnMaximumWidth_1730 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setColumnMaximumWidth (arg1, arg2); } @@ -618,8 +618,8 @@ static void _call_f_setColumnMinimumWidth_1730 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setColumnMinimumWidth (arg1, arg2); } @@ -641,8 +641,8 @@ static void _call_f_setColumnPreferredWidth_1730 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setColumnPreferredWidth (arg1, arg2); } @@ -664,8 +664,8 @@ static void _call_f_setColumnSpacing_1730 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setColumnSpacing (arg1, arg2); } @@ -687,8 +687,8 @@ static void _call_f_setColumnStretchFactor_1426 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setColumnStretchFactor (arg1, arg2); } @@ -708,7 +708,7 @@ static void _call_f_setGeometry_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setGeometry (arg1); } @@ -728,7 +728,7 @@ static void _call_f_setHorizontalSpacing_1071 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setHorizontalSpacing (arg1); } @@ -750,8 +750,8 @@ static void _call_f_setRowAlignment_3409 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setRowAlignment (arg1, arg2); } @@ -773,8 +773,8 @@ static void _call_f_setRowFixedHeight_1730 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setRowFixedHeight (arg1, arg2); } @@ -796,8 +796,8 @@ static void _call_f_setRowMaximumHeight_1730 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setRowMaximumHeight (arg1, arg2); } @@ -819,8 +819,8 @@ static void _call_f_setRowMinimumHeight_1730 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setRowMinimumHeight (arg1, arg2); } @@ -842,8 +842,8 @@ static void _call_f_setRowPreferredHeight_1730 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setRowPreferredHeight (arg1, arg2); } @@ -865,8 +865,8 @@ static void _call_f_setRowSpacing_1730 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setRowSpacing (arg1, arg2); } @@ -888,8 +888,8 @@ static void _call_f_setRowStretchFactor_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setRowStretchFactor (arg1, arg2); } @@ -909,7 +909,7 @@ static void _call_f_setSpacing_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setSpacing (arg1); } @@ -929,7 +929,7 @@ static void _call_f_setVerticalSpacing_1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout *)cls)->setVerticalSpacing (arg1); } @@ -951,8 +951,8 @@ static void _call_f_sizeHint_c3330 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args ? args.read (heap) : (const QSizeF &)(QSizeF()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsGridLayout *)cls)->sizeHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1230,7 +1230,7 @@ static void _call_ctor_QGraphicsGridLayout_Adaptor_2557 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args ? args.read (heap) : (QGraphicsLayoutItem *)(0); + QGraphicsLayoutItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsGridLayout_Adaptor (arg1)); } @@ -1248,7 +1248,7 @@ static void _call_fp_addChildLayoutItem_2557 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->fp_QGraphicsGridLayout_addChildLayoutItem_2557 (arg1); } @@ -1410,7 +1410,7 @@ static void _call_fp_setGraphicsItem_1919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->fp_QGraphicsGridLayout_setGraphicsItem_1919 (arg1); } @@ -1429,7 +1429,7 @@ static void _call_fp_setOwnedByLayout_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsGridLayout_Adaptor *)cls)->fp_QGraphicsGridLayout_setOwnedByLayout_864 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItem.cc index ae06d9303..43b3ae7c7 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItem.cc @@ -120,7 +120,7 @@ static void _call_f_advance_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->advance (arg1); } @@ -155,7 +155,7 @@ static void _call_f_boundingRegion_c2350 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRegion)((QGraphicsItem *)cls)->boundingRegion (arg1)); } @@ -267,8 +267,8 @@ static void _call_f_collidesWithItem_c4977 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItem *)cls)->collidesWithItem (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -289,8 +289,8 @@ static void _call_f_collidesWithPath_c4877 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write ((bool)((QGraphicsItem *)cls)->collidesWithPath (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -309,7 +309,7 @@ static void _call_f_collidingItems_c2471 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsItem *)cls)->collidingItems (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -328,7 +328,7 @@ static void _call_f_commonAncestorItem_c2614 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsItem *)((QGraphicsItem *)cls)->commonAncestorItem (arg1)); } @@ -347,7 +347,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem *)cls)->contains (arg1)); } @@ -381,7 +381,7 @@ static void _call_f_data_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QGraphicsItem *)cls)->data (arg1)); } @@ -400,7 +400,7 @@ static void _call_f_deviceTransform_c2350 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTransform)((QGraphicsItem *)cls)->deviceTransform (arg1)); } @@ -438,9 +438,9 @@ static void _call_f_ensureVisible_3180 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args ? args.read (heap) : (const QRectF &)(QRectF()); - int arg2 = args ? args.read (heap) : (int)(50); - int arg3 = args ? args.read (heap) : (int)(50); + const QRectF &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->ensureVisible (arg1, arg2, arg3); } @@ -470,12 +470,12 @@ static void _call_f_ensureVisible_5278 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - int arg5 = args ? args.read (heap) : (int)(50); - int arg6 = args ? args.read (heap) : (int)(50); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); + int arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->ensureVisible (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -708,7 +708,7 @@ static void _call_f_installSceneEventFilter_1919 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->installSceneEventFilter (arg1); } @@ -743,7 +743,7 @@ static void _call_f_isAncestorOf_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem *)cls)->isAncestorOf (arg1)); } @@ -792,7 +792,7 @@ static void _call_f_isObscured_c1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args ? args.read (heap) : (const QRectF &)(QRectF()); + const QRectF &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); ret.write ((bool)((QGraphicsItem *)cls)->isObscured (arg1)); } @@ -817,10 +817,10 @@ static void _call_f_isObscured_c3960 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem *)cls)->isObscured (arg1, arg2, arg3, arg4)); } @@ -839,7 +839,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem *)cls)->isObscuredBy (arg1)); } @@ -918,7 +918,7 @@ static void _call_f_isVisibleTo_c2614 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItem *)cls)->isVisibleTo (arg1)); } @@ -969,8 +969,8 @@ static void _call_f_itemTransform_c3556 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QTransform)((QGraphicsItem *)cls)->itemTransform (arg1, arg2)); } @@ -991,8 +991,8 @@ static void _call_f_mapFromItem_c4492 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapFromItem (arg1, arg2)); } @@ -1013,8 +1013,8 @@ static void _call_f_mapFromItem_c4368 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromItem (arg1, arg2)); } @@ -1035,8 +1035,8 @@ static void _call_f_mapFromItem_c4714 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QPolygonF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QPolygonF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromItem (arg1, arg2)); } @@ -1057,8 +1057,8 @@ static void _call_f_mapFromItem_c5020 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QPainterPath &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QPainterPath &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsItem *)cls)->mapFromItem (arg1, arg2)); } @@ -1081,9 +1081,9 @@ static void _call_f_mapFromItem_c4540 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapFromItem (arg1, arg2, arg3)); } @@ -1110,11 +1110,11 @@ static void _call_f_mapFromItem_c6466 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromItem (arg1, arg2, arg3, arg4, arg5)); } @@ -1133,7 +1133,7 @@ static void _call_f_mapFromParent_c1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapFromParent (arg1)); } @@ -1152,7 +1152,7 @@ static void _call_f_mapFromParent_c1862 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromParent (arg1)); } @@ -1171,7 +1171,7 @@ static void _call_f_mapFromParent_c2208 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromParent (arg1)); } @@ -1190,7 +1190,7 @@ static void _call_f_mapFromParent_c2514 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsItem *)cls)->mapFromParent (arg1)); } @@ -1211,8 +1211,8 @@ static void _call_f_mapFromParent_c2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapFromParent (arg1, arg2)); } @@ -1237,10 +1237,10 @@ static void _call_f_mapFromParent_c3960 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromParent (arg1, arg2, arg3, arg4)); } @@ -1259,7 +1259,7 @@ static void _call_f_mapFromScene_c1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapFromScene (arg1)); } @@ -1278,7 +1278,7 @@ static void _call_f_mapFromScene_c1862 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromScene (arg1)); } @@ -1297,7 +1297,7 @@ static void _call_f_mapFromScene_c2208 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromScene (arg1)); } @@ -1316,7 +1316,7 @@ static void _call_f_mapFromScene_c2514 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsItem *)cls)->mapFromScene (arg1)); } @@ -1337,8 +1337,8 @@ static void _call_f_mapFromScene_c2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapFromScene (arg1, arg2)); } @@ -1363,10 +1363,10 @@ static void _call_f_mapFromScene_c3960 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapFromScene (arg1, arg2, arg3, arg4)); } @@ -1387,8 +1387,8 @@ static void _call_f_mapRectFromItem_c4368 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectFromItem (arg1, arg2)); } @@ -1415,11 +1415,11 @@ static void _call_f_mapRectFromItem_c6466 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectFromItem (arg1, arg2, arg3, arg4, arg5)); } @@ -1438,7 +1438,7 @@ static void _call_f_mapRectFromParent_c1862 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectFromParent (arg1)); } @@ -1463,10 +1463,10 @@ static void _call_f_mapRectFromParent_c3960 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectFromParent (arg1, arg2, arg3, arg4)); } @@ -1485,7 +1485,7 @@ static void _call_f_mapRectFromScene_c1862 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectFromScene (arg1)); } @@ -1510,10 +1510,10 @@ static void _call_f_mapRectFromScene_c3960 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectFromScene (arg1, arg2, arg3, arg4)); } @@ -1534,8 +1534,8 @@ static void _call_f_mapRectToItem_c4368 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectToItem (arg1, arg2)); } @@ -1562,11 +1562,11 @@ static void _call_f_mapRectToItem_c6466 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectToItem (arg1, arg2, arg3, arg4, arg5)); } @@ -1585,7 +1585,7 @@ static void _call_f_mapRectToParent_c1862 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectToParent (arg1)); } @@ -1610,10 +1610,10 @@ static void _call_f_mapRectToParent_c3960 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectToParent (arg1, arg2, arg3, arg4)); } @@ -1632,7 +1632,7 @@ static void _call_f_mapRectToScene_c1862 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectToScene (arg1)); } @@ -1657,10 +1657,10 @@ static void _call_f_mapRectToScene_c3960 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsItem *)cls)->mapRectToScene (arg1, arg2, arg3, arg4)); } @@ -1681,8 +1681,8 @@ static void _call_f_mapToItem_c4492 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapToItem (arg1, arg2)); } @@ -1703,8 +1703,8 @@ static void _call_f_mapToItem_c4368 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QRectF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToItem (arg1, arg2)); } @@ -1725,8 +1725,8 @@ static void _call_f_mapToItem_c4714 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QPolygonF &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QPolygonF &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToItem (arg1, arg2)); } @@ -1747,8 +1747,8 @@ static void _call_f_mapToItem_c5020 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const QPainterPath &arg2 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const QPainterPath &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsItem *)cls)->mapToItem (arg1, arg2)); } @@ -1771,9 +1771,9 @@ static void _call_f_mapToItem_c4540 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapToItem (arg1, arg2, arg3)); } @@ -1800,11 +1800,11 @@ static void _call_f_mapToItem_c6466 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - double arg5 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + double arg5 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToItem (arg1, arg2, arg3, arg4, arg5)); } @@ -1823,7 +1823,7 @@ static void _call_f_mapToParent_c1986 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapToParent (arg1)); } @@ -1842,7 +1842,7 @@ static void _call_f_mapToParent_c1862 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToParent (arg1)); } @@ -1861,7 +1861,7 @@ static void _call_f_mapToParent_c2208 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToParent (arg1)); } @@ -1880,7 +1880,7 @@ static void _call_f_mapToParent_c2514 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsItem *)cls)->mapToParent (arg1)); } @@ -1901,8 +1901,8 @@ static void _call_f_mapToParent_c2034 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapToParent (arg1, arg2)); } @@ -1927,10 +1927,10 @@ static void _call_f_mapToParent_c3960 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToParent (arg1, arg2, arg3, arg4)); } @@ -1949,7 +1949,7 @@ static void _call_f_mapToScene_c1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapToScene (arg1)); } @@ -1968,7 +1968,7 @@ static void _call_f_mapToScene_c1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToScene (arg1)); } @@ -1987,7 +1987,7 @@ static void _call_f_mapToScene_c2208 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToScene (arg1)); } @@ -2006,7 +2006,7 @@ static void _call_f_mapToScene_c2514 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsItem *)cls)->mapToScene (arg1)); } @@ -2027,8 +2027,8 @@ static void _call_f_mapToScene_c2034 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItem *)cls)->mapToScene (arg1, arg2)); } @@ -2053,10 +2053,10 @@ static void _call_f_mapToScene_c3960 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsItem *)cls)->mapToScene (arg1, arg2, arg3, arg4)); } @@ -2092,8 +2092,8 @@ static void _call_f_moveBy_2034 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->moveBy (arg1, arg2); } @@ -2147,9 +2147,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->paint (arg1, arg2, arg3); } @@ -2259,7 +2259,7 @@ static void _call_f_removeSceneEventFilter_1919 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->removeSceneEventFilter (arg1); } @@ -2420,9 +2420,9 @@ static void _call_f_scroll_3788 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - const QRectF &arg3 = args ? args.read (heap) : (const QRectF &)(QRectF()); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const QRectF &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->scroll (arg1, arg2, arg3); } @@ -2442,7 +2442,7 @@ static void _call_f_setAcceptDrops_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setAcceptDrops (arg1); } @@ -2462,7 +2462,7 @@ static void _call_f_setAcceptHoverEvents_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setAcceptHoverEvents (arg1); } @@ -2482,7 +2482,7 @@ static void _call_f_setAcceptTouchEvents_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setAcceptTouchEvents (arg1); } @@ -2502,7 +2502,7 @@ static void _call_f_setAcceptedMouseButtons_2602 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setAcceptedMouseButtons (arg1); } @@ -2522,7 +2522,7 @@ static void _call_f_setActive_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setActive (arg1); } @@ -2542,7 +2542,7 @@ static void _call_f_setBoundingRegionGranularity_1071 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setBoundingRegionGranularity (arg1); } @@ -2564,8 +2564,8 @@ static void _call_f_setCacheMode_4403 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSize &arg2 = args ? args.read (heap) : (const QSize &)(QSize()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSize &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSize(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setCacheMode (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -2585,7 +2585,7 @@ static void _call_f_setCursor_2032 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCursor &arg1 = args.read (heap); + const QCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setCursor (arg1); } @@ -2607,8 +2607,8 @@ static void _call_f_setData_2778 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setData (arg1, arg2); } @@ -2628,7 +2628,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setEnabled (arg1); } @@ -2648,7 +2648,7 @@ static void _call_f_setFiltersChildEvents_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setFiltersChildEvents (arg1); } @@ -2670,8 +2670,8 @@ static void _call_f_setFlag_4199 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setFlag (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -2691,7 +2691,7 @@ static void _call_f_setFlags_4139 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setFlags (arg1); } @@ -2711,7 +2711,7 @@ static void _call_f_setFocus_1877 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setFocus (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -2731,7 +2731,7 @@ static void _call_f_setFocusProxy_1919 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setFocusProxy (arg1); } @@ -2751,7 +2751,7 @@ static void _call_f_setGraphicsEffect_2109 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsEffect *arg1 = args.read (heap); + QGraphicsEffect *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setGraphicsEffect (arg1); } @@ -2771,7 +2771,7 @@ static void _call_f_setGroup_2444 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItemGroup *arg1 = args.read (heap); + QGraphicsItemGroup *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setGroup (arg1); } @@ -2791,7 +2791,7 @@ static void _call_f_setHandlesChildEvents_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setHandlesChildEvents (arg1); } @@ -2811,7 +2811,7 @@ static void _call_f_setInputMethodHints_2985 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setInputMethodHints (arg1); } @@ -2833,8 +2833,8 @@ static void _call_f_setMatrix_2779 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setMatrix (arg1, arg2); } @@ -2854,7 +2854,7 @@ static void _call_f_setOpacity_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setOpacity (arg1); } @@ -2874,7 +2874,7 @@ static void _call_f_setPanelModality_3180 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setPanelModality (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -2894,7 +2894,7 @@ static void _call_f_setParentItem_1919 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setParentItem (arg1); } @@ -2914,7 +2914,7 @@ static void _call_f_setPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setPos (arg1); } @@ -2936,8 +2936,8 @@ static void _call_f_setPos_2034 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setPos (arg1, arg2); } @@ -2957,7 +2957,7 @@ static void _call_f_setRotation_1071 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setRotation (arg1); } @@ -2977,7 +2977,7 @@ static void _call_f_setScale_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setScale (arg1); } @@ -2997,7 +2997,7 @@ static void _call_f_setSelected_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setSelected (arg1); } @@ -3017,7 +3017,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setToolTip (arg1); } @@ -3039,8 +3039,8 @@ static void _call_f_setTransform_3106 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setTransform (arg1, arg2); } @@ -3060,7 +3060,7 @@ static void _call_f_setTransformOriginPoint_1986 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setTransformOriginPoint (arg1); } @@ -3082,8 +3082,8 @@ static void _call_f_setTransformOriginPoint_2034 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setTransformOriginPoint (arg1, arg2); } @@ -3103,7 +3103,7 @@ static void _call_f_setTransformations_3968 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setTransformations (arg1); } @@ -3123,7 +3123,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setVisible (arg1); } @@ -3143,7 +3143,7 @@ static void _call_f_setX_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setX (arg1); } @@ -3163,7 +3163,7 @@ static void _call_f_setY_1071 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setY (arg1); } @@ -3183,7 +3183,7 @@ static void _call_f_setZValue_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->setZValue (arg1); } @@ -3234,7 +3234,7 @@ static void _call_f_stackBefore_2614 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->stackBefore (arg1); } @@ -3437,7 +3437,7 @@ static void _call_f_update_1862 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args ? args.read (heap) : (const QRectF &)(QRectF()); + const QRectF &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->update (arg1); } @@ -3463,10 +3463,10 @@ static void _call_f_update_3960 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItem *)cls)->update (arg1, arg2, arg3, arg4); } @@ -4349,7 +4349,7 @@ static void _call_ctor_QGraphicsItem_Adaptor_1919 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsItem_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemAnimation.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemAnimation.cc index 7d4503257..2ce9f14b0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemAnimation.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemAnimation.cc @@ -89,7 +89,7 @@ static void _call_f_horizontalScaleAt_c1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsItemAnimation *)cls)->horizontalScaleAt (arg1)); } @@ -108,7 +108,7 @@ static void _call_f_horizontalShearAt_c1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsItemAnimation *)cls)->horizontalShearAt (arg1)); } @@ -142,7 +142,7 @@ static void _call_f_matrixAt_c1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QMatrix)((QGraphicsItemAnimation *)cls)->matrixAt (arg1)); } @@ -161,7 +161,7 @@ static void _call_f_posAt_c1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsItemAnimation *)cls)->posAt (arg1)); } @@ -211,7 +211,7 @@ static void _call_f_rotationAt_c1071 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsItemAnimation *)cls)->rotationAt (arg1)); } @@ -260,7 +260,7 @@ static void _call_f_setItem_1919 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setItem (arg1); } @@ -282,8 +282,8 @@ static void _call_f_setPosAt_2949 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - const QPointF &arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setPosAt (arg1, arg2); } @@ -305,8 +305,8 @@ static void _call_f_setRotationAt_2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setRotationAt (arg1, arg2); } @@ -330,9 +330,9 @@ static void _call_f_setScaleAt_2997 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setScaleAt (arg1, arg2, arg3); } @@ -356,9 +356,9 @@ static void _call_f_setShearAt_2997 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setShearAt (arg1, arg2, arg3); } @@ -378,7 +378,7 @@ static void _call_f_setStep_1071 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setStep (arg1); } @@ -398,7 +398,7 @@ static void _call_f_setTimeLine_1494 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTimeLine *arg1 = args.read (heap); + QTimeLine *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setTimeLine (arg1); } @@ -422,9 +422,9 @@ static void _call_f_setTranslationAt_2997 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemAnimation *)cls)->setTranslationAt (arg1, arg2, arg3); } @@ -489,7 +489,7 @@ static void _call_f_verticalScaleAt_c1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsItemAnimation *)cls)->verticalScaleAt (arg1)); } @@ -508,7 +508,7 @@ static void _call_f_verticalShearAt_c1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsItemAnimation *)cls)->verticalShearAt (arg1)); } @@ -527,7 +527,7 @@ static void _call_f_xTranslationAt_c1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsItemAnimation *)cls)->xTranslationAt (arg1)); } @@ -546,7 +546,7 @@ static void _call_f_yTranslationAt_c1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsItemAnimation *)cls)->yTranslationAt (arg1)); } @@ -569,9 +569,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsItemAnimation::tr (arg1, arg2, arg3)); } @@ -594,9 +594,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsItemAnimation::trUtf8 (arg1, arg2, arg3)); } @@ -839,7 +839,7 @@ static void _call_ctor_QGraphicsItemAnimation_Adaptor_1302 (const qt_gsi::Generi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsItemAnimation_Adaptor (arg1)); } @@ -953,7 +953,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsItemAnimation_Adaptor *)cls)->emitter_QGraphicsItemAnimation_destroyed_1302 (arg1); } @@ -1044,7 +1044,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemAnimation_Adaptor *)cls)->fp_QGraphicsItemAnimation_isSignalConnected_c2394 (arg1)); } @@ -1062,7 +1062,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsItemAnimation_Adaptor *)cls)->fp_QGraphicsItemAnimation_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc index abe950d8e..8f7543fe0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsItemGroup.cc @@ -76,7 +76,7 @@ static void _call_f_addToGroup_1919 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup *)cls)->addToGroup (arg1); @@ -112,7 +112,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsItemGroup *)cls)->isObscuredBy (arg1)); } @@ -150,9 +150,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup *)cls)->paint (arg1, arg2, arg3); } @@ -172,7 +172,7 @@ static void _call_f_removeFromGroup_1919 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsItemGroup *)cls)->removeFromGroup (arg1); } @@ -834,7 +834,7 @@ static void _call_ctor_QGraphicsItemGroup_Adaptor_1919 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsItemGroup_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc index 42ed4c34e..3bad044b3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayout.cc @@ -93,10 +93,10 @@ static void _call_f_getContentsMargins_c4704 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout *)cls)->getContentsMargins (arg1, arg2, arg3, arg4); } @@ -147,7 +147,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsLayout *)cls)->itemAt (arg1)); } @@ -166,7 +166,7 @@ static void _call_f_removeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout *)cls)->removeAt (arg1); } @@ -192,10 +192,10 @@ static void _call_f_setContentsMargins_3960 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout *)cls)->setContentsMargins (arg1, arg2, arg3, arg4); } @@ -231,7 +231,7 @@ static void _call_f_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout *)cls)->widgetEvent (arg1); } @@ -266,7 +266,7 @@ static void _call_f_setInstantInvalidatePropagation_864 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QGraphicsLayout::setInstantInvalidatePropagation (arg1); } @@ -501,7 +501,7 @@ static void _call_ctor_QGraphicsLayout_Adaptor_2557 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args ? args.read (heap) : (QGraphicsLayoutItem *)(0); + QGraphicsLayoutItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsLayout_Adaptor (arg1)); } @@ -519,7 +519,7 @@ static void _call_fp_addChildLayoutItem_2557 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->fp_QGraphicsLayout_addChildLayoutItem_2557 (arg1); } @@ -681,7 +681,7 @@ static void _call_fp_setGraphicsItem_1919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->fp_QGraphicsLayout_setGraphicsItem_1919 (arg1); } @@ -700,7 +700,7 @@ static void _call_fp_setOwnedByLayout_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayout_Adaptor *)cls)->fp_QGraphicsLayout_setOwnedByLayout_864 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayoutItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayoutItem.cc index e72394333..b763c7685 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayoutItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLayoutItem.cc @@ -71,8 +71,8 @@ static void _call_f_effectiveSizeHint_c3330 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args ? args.read (heap) : (const QSizeF &)(QSizeF()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsLayoutItem *)cls)->effectiveSizeHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -112,10 +112,10 @@ static void _call_f_getContentsMargins_c4704 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->getContentsMargins (arg1, arg2, arg3, arg4); } @@ -330,7 +330,7 @@ static void _call_f_setGeometry_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setGeometry (arg1); } @@ -350,7 +350,7 @@ static void _call_f_setMaximumHeight_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMaximumHeight (arg1); } @@ -370,7 +370,7 @@ static void _call_f_setMaximumSize_1875 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMaximumSize (arg1); } @@ -392,8 +392,8 @@ static void _call_f_setMaximumSize_2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMaximumSize (arg1, arg2); } @@ -413,7 +413,7 @@ static void _call_f_setMaximumWidth_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMaximumWidth (arg1); } @@ -433,7 +433,7 @@ static void _call_f_setMinimumHeight_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMinimumHeight (arg1); } @@ -453,7 +453,7 @@ static void _call_f_setMinimumSize_1875 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMinimumSize (arg1); } @@ -475,8 +475,8 @@ static void _call_f_setMinimumSize_2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMinimumSize (arg1, arg2); } @@ -496,7 +496,7 @@ static void _call_f_setMinimumWidth_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setMinimumWidth (arg1); } @@ -516,7 +516,7 @@ static void _call_f_setParentLayoutItem_2557 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setParentLayoutItem (arg1); } @@ -536,7 +536,7 @@ static void _call_f_setPreferredHeight_1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setPreferredHeight (arg1); } @@ -556,7 +556,7 @@ static void _call_f_setPreferredSize_1875 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setPreferredSize (arg1); } @@ -578,8 +578,8 @@ static void _call_f_setPreferredSize_2034 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setPreferredSize (arg1, arg2); } @@ -599,7 +599,7 @@ static void _call_f_setPreferredWidth_1071 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setPreferredWidth (arg1); } @@ -619,7 +619,7 @@ static void _call_f_setSizePolicy_2429 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizePolicy &arg1 = args.read (heap); + const QSizePolicy &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setSizePolicy (arg1); } @@ -643,9 +643,9 @@ static void _call_f_setSizePolicy_7191 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::DefaultType)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::DefaultType), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem *)cls)->setSizePolicy (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -853,8 +853,8 @@ static void _call_ctor_QGraphicsLayoutItem_Adaptor_3313 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args ? args.read (heap) : (QGraphicsLayoutItem *)(0); - bool arg2 = args ? args.read (heap) : (bool)(false); + QGraphicsLayoutItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write (new QGraphicsLayoutItem_Adaptor (arg1, arg2)); } @@ -929,7 +929,7 @@ static void _call_fp_setGraphicsItem_1919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem_Adaptor *)cls)->fp_QGraphicsLayoutItem_setGraphicsItem_1919 (arg1); } @@ -948,7 +948,7 @@ static void _call_fp_setOwnedByLayout_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLayoutItem_Adaptor *)cls)->fp_QGraphicsLayoutItem_setOwnedByLayout_864 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc index 714f91096..b001199f5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLineItem.cc @@ -94,7 +94,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem *)cls)->contains (arg1)); } @@ -113,7 +113,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsLineItem *)cls)->isObscuredBy (arg1)); } @@ -166,9 +166,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem *)cls)->paint (arg1, arg2, arg3); } @@ -203,7 +203,7 @@ static void _call_f_setLine_1856 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); + const QLineF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem *)cls)->setLine (arg1); } @@ -229,10 +229,10 @@ static void _call_f_setLine_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem *)cls)->setLine (arg1, arg2, arg3, arg4); } @@ -252,7 +252,7 @@ static void _call_f_setPen_1685 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPen &arg1 = args.read (heap); + const QPen &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLineItem *)cls)->setPen (arg1); } @@ -958,7 +958,7 @@ static void _call_ctor_QGraphicsLineItem_Adaptor_1919 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsLineItem_Adaptor (arg1)); } @@ -978,8 +978,8 @@ static void _call_ctor_QGraphicsLineItem_Adaptor_3667 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); + const QLineF &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsLineItem_Adaptor (arg1, arg2)); } @@ -1005,11 +1005,11 @@ static void _call_ctor_QGraphicsLineItem_Adaptor_5771 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - QGraphicsItem *arg5 = args ? args.read (heap) : (QGraphicsItem *)(0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsLineItem_Adaptor (arg1, arg2, arg3, arg4, arg5)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc index 33bbbc8d2..f3be5a75c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsLinearLayout.cc @@ -56,7 +56,7 @@ static void _call_f_addItem_2557 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->addItem (arg1); } @@ -76,7 +76,7 @@ static void _call_f_addStretch_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->addStretch (arg1); } @@ -96,7 +96,7 @@ static void _call_f_alignment_c2557 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); ret.write > ((QFlags)((QGraphicsLinearLayout *)cls)->alignment (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_dump_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->dump (arg1); } @@ -152,8 +152,8 @@ static void _call_f_insertItem_3216 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QGraphicsLayoutItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QGraphicsLayoutItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->insertItem (arg1, arg2); } @@ -175,8 +175,8 @@ static void _call_f_insertStretch_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(1); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->insertStretch (arg1, arg2); } @@ -212,7 +212,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsLayoutItem *)((QGraphicsLinearLayout *)cls)->itemAt (arg1)); } @@ -231,7 +231,7 @@ static void _call_f_itemSpacing_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((double)((QGraphicsLinearLayout *)cls)->itemSpacing (arg1)); } @@ -265,7 +265,7 @@ static void _call_f_removeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->removeAt (arg1); } @@ -285,7 +285,7 @@ static void _call_f_removeItem_2557 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->removeItem (arg1); } @@ -307,8 +307,8 @@ static void _call_f_setAlignment_5199 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->setAlignment (arg1, arg2); } @@ -328,7 +328,7 @@ static void _call_f_setGeometry_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->setGeometry (arg1); } @@ -350,8 +350,8 @@ static void _call_f_setItemSpacing_1730 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - double arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->setItemSpacing (arg1, arg2); } @@ -371,7 +371,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -391,7 +391,7 @@ static void _call_f_setSpacing_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->setSpacing (arg1); } @@ -413,8 +413,8 @@ static void _call_f_setStretchFactor_3216 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout *)cls)->setStretchFactor (arg1, arg2); } @@ -436,8 +436,8 @@ static void _call_f_sizeHint_c3330 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QSizeF &arg2 = args ? args.read (heap) : (const QSizeF &)(QSizeF()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QSizeF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSizeF(), heap); ret.write ((QSizeF)((QGraphicsLinearLayout *)cls)->sizeHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -471,7 +471,7 @@ static void _call_f_stretchFactor_c2557 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsLinearLayout *)cls)->stretchFactor (arg1)); } @@ -723,7 +723,7 @@ static void _call_ctor_QGraphicsLinearLayout_Adaptor_2557 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args ? args.read (heap) : (QGraphicsLayoutItem *)(0); + QGraphicsLayoutItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsLinearLayout_Adaptor (arg1)); } @@ -743,8 +743,8 @@ static void _call_ctor_QGraphicsLinearLayout_Adaptor_4362 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QGraphicsLayoutItem *arg2 = args ? args.read (heap) : (QGraphicsLayoutItem *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QGraphicsLayoutItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsLinearLayout_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -762,7 +762,7 @@ static void _call_fp_addChildLayoutItem_2557 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayoutItem *arg1 = args.read (heap); + QGraphicsLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->fp_QGraphicsLinearLayout_addChildLayoutItem_2557 (arg1); } @@ -924,7 +924,7 @@ static void _call_fp_setGraphicsItem_1919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->fp_QGraphicsLinearLayout_setGraphicsItem_1919 (arg1); } @@ -943,7 +943,7 @@ static void _call_fp_setOwnedByLayout_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsLinearLayout_Adaptor *)cls)->fp_QGraphicsLinearLayout_setOwnedByLayout_864 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc index 71392b8d5..e589ad3b8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsObject.cc @@ -111,8 +111,8 @@ static void _call_f_grabGesture_4352 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::GestureFlags()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::GestureFlags(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject *)cls)->grabGesture (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -132,7 +132,7 @@ static void _call_f_ungrabGesture_1902 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsObject *)cls)->ungrabGesture (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -156,9 +156,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsObject::tr (arg1, arg2, arg3)); } @@ -181,9 +181,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsObject::trUtf8 (arg1, arg2, arg3)); } @@ -1087,7 +1087,7 @@ static void _call_ctor_QGraphicsObject_Adaptor_1919 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsObject_Adaptor (arg1)); } @@ -1324,7 +1324,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsObject_Adaptor *)cls)->emitter_QGraphicsObject_destroyed_1302 (arg1); } @@ -1752,7 +1752,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsObject_Adaptor *)cls)->fp_QGraphicsObject_isSignalConnected_c2394 (arg1)); } @@ -2032,7 +2032,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsObject_Adaptor *)cls)->fp_QGraphicsObject_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc index 5eb71a611..1270efa42 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsOpacityEffect.cc @@ -104,7 +104,7 @@ static void _call_f_setOpacity_1071 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect *)cls)->setOpacity (arg1); } @@ -124,7 +124,7 @@ static void _call_f_setOpacityMask_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect *)cls)->setOpacityMask (arg1); } @@ -148,9 +148,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsOpacityEffect::tr (arg1, arg2, arg3)); } @@ -173,9 +173,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsOpacityEffect::trUtf8 (arg1, arg2, arg3)); } @@ -458,7 +458,7 @@ static void _call_ctor_QGraphicsOpacityEffect_Adaptor_1302 (const qt_gsi::Generi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsOpacityEffect_Adaptor (arg1)); } @@ -547,7 +547,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsOpacityEffect_Adaptor *)cls)->emitter_QGraphicsOpacityEffect_destroyed_1302 (arg1); } @@ -613,7 +613,7 @@ static void _call_fp_drawSource_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsOpacityEffect_Adaptor *)cls)->fp_QGraphicsOpacityEffect_drawSource_1426 (arg1); } @@ -632,7 +632,7 @@ static void _call_emitter_enabledChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QGraphicsOpacityEffect_Adaptor *)cls)->emitter_QGraphicsOpacityEffect_enabledChanged_864 (arg1); } @@ -699,7 +699,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsOpacityEffect_Adaptor *)cls)->fp_QGraphicsOpacityEffect_isSignalConnected_c2394 (arg1)); } @@ -717,7 +717,7 @@ static void _call_emitter_opacityChanged_1071 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QGraphicsOpacityEffect_Adaptor *)cls)->emitter_QGraphicsOpacityEffect_opacityChanged_1071 (arg1); } @@ -735,7 +735,7 @@ static void _call_emitter_opacityMaskChanged_1910 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsOpacityEffect_Adaptor *)cls)->emitter_QGraphicsOpacityEffect_opacityMaskChanged_1910 (arg1); } @@ -753,7 +753,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsOpacityEffect_Adaptor *)cls)->fp_QGraphicsOpacityEffect_receivers_c1731 (arg1)); } @@ -799,7 +799,7 @@ static void _call_fp_sourceBoundingRect_c2426 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); ret.write ((QRectF)((QGraphicsOpacityEffect_Adaptor *)cls)->fp_QGraphicsOpacityEffect_sourceBoundingRect_c2426 (arg1)); } @@ -859,9 +859,9 @@ static void _call_fp_sourcePixmap_c6763 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates)); - QPoint *arg2 = args ? args.read (heap) : (QPoint *)(0); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::LogicalCoordinates), heap); + QPoint *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QGraphicsEffect::PadToEffectiveBoundingRect), heap); ret.write ((QPixmap)((QGraphicsOpacityEffect_Adaptor *)cls)->fp_QGraphicsOpacityEffect_sourcePixmap_c6763 (arg1, arg2, arg3)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc index 965bb0386..b0ea33607 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPathItem.cc @@ -94,7 +94,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem *)cls)->contains (arg1)); } @@ -113,7 +113,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPathItem *)cls)->isObscuredBy (arg1)); } @@ -151,9 +151,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem *)cls)->paint (arg1, arg2, arg3); } @@ -188,7 +188,7 @@ static void _call_f_setPath_2514 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPathItem *)cls)->setPath (arg1); } @@ -879,7 +879,7 @@ static void _call_ctor_QGraphicsPathItem_Adaptor_1919 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsPathItem_Adaptor (arg1)); } @@ -899,8 +899,8 @@ static void _call_ctor_QGraphicsPathItem_Adaptor_4325 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsPathItem_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc index ae26c9330..036cc10d9 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPixmapItem.cc @@ -93,7 +93,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem *)cls)->contains (arg1)); } @@ -112,7 +112,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPixmapItem *)cls)->isObscuredBy (arg1)); } @@ -165,9 +165,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem *)cls)->paint (arg1, arg2, arg3); } @@ -202,7 +202,7 @@ static void _call_f_setOffset_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem *)cls)->setOffset (arg1); } @@ -224,8 +224,8 @@ static void _call_f_setOffset_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem *)cls)->setOffset (arg1, arg2); } @@ -245,7 +245,7 @@ static void _call_f_setPixmap_2017 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem *)cls)->setPixmap (arg1); } @@ -265,7 +265,7 @@ static void _call_f_setShapeMode_3358 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem *)cls)->setShapeMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -285,7 +285,7 @@ static void _call_f_setTransformationMode_2633 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPixmapItem *)cls)->setTransformationMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1013,7 +1013,7 @@ static void _call_ctor_QGraphicsPixmapItem_Adaptor_1919 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsPixmapItem_Adaptor (arg1)); } @@ -1033,8 +1033,8 @@ static void _call_ctor_QGraphicsPixmapItem_Adaptor_3828 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsPixmapItem_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc index c10e3ffdb..dd34bea4d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsPolygonItem.cc @@ -94,7 +94,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem *)cls)->contains (arg1)); } @@ -128,7 +128,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsPolygonItem *)cls)->isObscuredBy (arg1)); } @@ -166,9 +166,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem *)cls)->paint (arg1, arg2, arg3); } @@ -203,7 +203,7 @@ static void _call_f_setFillRule_1548 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem *)cls)->setFillRule (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -223,7 +223,7 @@ static void _call_f_setPolygon_2208 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsPolygonItem *)cls)->setPolygon (arg1); } @@ -916,7 +916,7 @@ static void _call_ctor_QGraphicsPolygonItem_Adaptor_1919 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsPolygonItem_Adaptor (arg1)); } @@ -936,8 +936,8 @@ static void _call_ctor_QGraphicsPolygonItem_Adaptor_4019 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsPolygonItem_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc index 2afe442a1..4f20117ee 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsProxyWidget.cc @@ -110,7 +110,7 @@ static void _call_f_createProxyForChildWidget_1315 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsProxyWidget *)((QGraphicsProxyWidget *)cls)->createProxyForChildWidget (arg1)); } @@ -133,9 +133,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget *)cls)->paint (arg1, arg2, arg3); } @@ -155,7 +155,7 @@ static void _call_f_setGeometry_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget *)cls)->setGeometry (arg1); } @@ -175,7 +175,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget *)cls)->setWidget (arg1); } @@ -195,7 +195,7 @@ static void _call_f_subWidgetRect_c2010 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QGraphicsProxyWidget *)cls)->subWidgetRect (arg1)); } @@ -248,9 +248,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsProxyWidget::tr (arg1, arg2, arg3)); } @@ -273,9 +273,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsProxyWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1504,8 +1504,8 @@ static void _call_ctor_QGraphicsProxyWidget_Adaptor_4306 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QGraphicsProxyWidget_Adaptor (arg1, arg2)); } @@ -1790,7 +1790,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsProxyWidget_Adaptor *)cls)->emitter_QGraphicsProxyWidget_destroyed_1302 (arg1); } @@ -2384,7 +2384,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsProxyWidget_Adaptor *)cls)->fp_QGraphicsProxyWidget_isSignalConnected_c2394 (arg1)); } @@ -2610,7 +2610,7 @@ static void _call_fp_newProxyWidget_2010 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsProxyWidget *)((QGraphicsProxyWidget_Adaptor *)cls)->fp_QGraphicsProxyWidget_newProxyWidget_2010 (arg1)); } @@ -2796,7 +2796,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsProxyWidget_Adaptor *)cls)->fp_QGraphicsProxyWidget_receivers_c1731 (arg1)); } @@ -3009,7 +3009,7 @@ static void _call_fp_setGraphicsItem_1919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->fp_QGraphicsProxyWidget_setGraphicsItem_1919 (arg1); } @@ -3028,7 +3028,7 @@ static void _call_fp_setOwnedByLayout_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsProxyWidget_Adaptor *)cls)->fp_QGraphicsProxyWidget_setOwnedByLayout_864 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc index 269deb58f..e7b1287b6 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRectItem.cc @@ -94,7 +94,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem *)cls)->contains (arg1)); } @@ -113,7 +113,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRectItem *)cls)->isObscuredBy (arg1)); } @@ -151,9 +151,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem *)cls)->paint (arg1, arg2, arg3); } @@ -188,7 +188,7 @@ static void _call_f_setRect_1862 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem *)cls)->setRect (arg1); } @@ -214,10 +214,10 @@ static void _call_f_setRect_3960 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRectItem *)cls)->setRect (arg1, arg2, arg3, arg4); } @@ -921,7 +921,7 @@ static void _call_ctor_QGraphicsRectItem_Adaptor_1919 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsRectItem_Adaptor (arg1)); } @@ -941,8 +941,8 @@ static void _call_ctor_QGraphicsRectItem_Adaptor_3673 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsRectItem_Adaptor (arg1, arg2)); } @@ -968,11 +968,11 @@ static void _call_ctor_QGraphicsRectItem_Adaptor_5771 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - QGraphicsItem *arg5 = args ? args.read (heap) : (QGraphicsItem *)(0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsRectItem_Adaptor (arg1, arg2, arg3, arg4, arg5)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc index 1c7cd43be..5e28630d3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsRotation.cc @@ -86,7 +86,7 @@ static void _call_f_applyTo_c1556 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMatrix4x4 *arg1 = args.read (heap); + QMatrix4x4 *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation *)cls)->applyTo (arg1); } @@ -136,7 +136,7 @@ static void _call_f_setAngle_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation *)cls)->setAngle (arg1); } @@ -156,7 +156,7 @@ static void _call_f_setAxis_2140 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation *)cls)->setAxis (arg1); } @@ -176,7 +176,7 @@ static void _call_f_setAxis_1154 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation *)cls)->setAxis (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -196,7 +196,7 @@ static void _call_f_setOrigin_2140 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsRotation *)cls)->setOrigin (arg1); } @@ -220,9 +220,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsRotation::tr (arg1, arg2, arg3)); } @@ -245,9 +245,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsRotation::trUtf8 (arg1, arg2, arg3)); } @@ -482,7 +482,7 @@ static void _call_ctor_QGraphicsRotation_Adaptor_1302 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsRotation_Adaptor (arg1)); } @@ -600,7 +600,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsRotation_Adaptor *)cls)->emitter_QGraphicsRotation_destroyed_1302 (arg1); } @@ -691,7 +691,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsRotation_Adaptor *)cls)->fp_QGraphicsRotation_isSignalConnected_c2394 (arg1)); } @@ -723,7 +723,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsRotation_Adaptor *)cls)->fp_QGraphicsRotation_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc index 2120979eb..96779896a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScale.cc @@ -71,7 +71,7 @@ static void _call_f_applyTo_c1556 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMatrix4x4 *arg1 = args.read (heap); + QMatrix4x4 *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale *)cls)->applyTo (arg1); } @@ -106,7 +106,7 @@ static void _call_f_setOrigin_2140 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVector3D &arg1 = args.read (heap); + const QVector3D &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale *)cls)->setOrigin (arg1); } @@ -126,7 +126,7 @@ static void _call_f_setXScale_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale *)cls)->setXScale (arg1); } @@ -146,7 +146,7 @@ static void _call_f_setYScale_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale *)cls)->setYScale (arg1); } @@ -166,7 +166,7 @@ static void _call_f_setZScale_1071 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScale *)cls)->setZScale (arg1); } @@ -235,9 +235,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsScale::tr (arg1, arg2, arg3)); } @@ -260,9 +260,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsScale::trUtf8 (arg1, arg2, arg3)); } @@ -512,7 +512,7 @@ static void _call_ctor_QGraphicsScale_Adaptor_1302 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsScale_Adaptor (arg1)); } @@ -602,7 +602,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsScale_Adaptor *)cls)->emitter_QGraphicsScale_destroyed_1302 (arg1); } @@ -693,7 +693,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScale_Adaptor *)cls)->fp_QGraphicsScale_isSignalConnected_c2394 (arg1)); } @@ -725,7 +725,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsScale_Adaptor *)cls)->fp_QGraphicsScale_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScene.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScene.cc index b0437144f..8d08c5465 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScene.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsScene.cc @@ -116,9 +116,9 @@ static void _call_f_addEllipse_5241 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPen &arg2 = args ? args.read (heap) : (const QPen &)(QPen()); - const QBrush &arg3 = args ? args.read (heap) : (const QBrush &)(QBrush()); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPen &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); + const QBrush &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QBrush(), heap); ret.write ((QGraphicsEllipseItem *)((QGraphicsScene *)cls)->addEllipse (arg1, arg2, arg3)); } @@ -147,12 +147,12 @@ static void _call_f_addEllipse_7339 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - const QPen &arg5 = args ? args.read (heap) : (const QPen &)(QPen()); - const QBrush &arg6 = args ? args.read (heap) : (const QBrush &)(QBrush()); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + const QPen &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); + const QBrush &arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QBrush(), heap); ret.write ((QGraphicsEllipseItem *)((QGraphicsScene *)cls)->addEllipse (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -171,7 +171,7 @@ static void _call_f_addItem_1919 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->addItem (arg1); @@ -194,8 +194,8 @@ static void _call_f_addLine_3433 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLineF &arg1 = args.read (heap); - const QPen &arg2 = args ? args.read (heap) : (const QPen &)(QPen()); + const QLineF &arg1 = gsi::arg_reader() (args, heap); + const QPen &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); ret.write ((QGraphicsLineItem *)((QGraphicsScene *)cls)->addLine (arg1, arg2)); } @@ -222,11 +222,11 @@ static void _call_f_addLine_5537 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - const QPen &arg5 = args ? args.read (heap) : (const QPen &)(QPen()); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + const QPen &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); ret.write ((QGraphicsLineItem *)((QGraphicsScene *)cls)->addLine (arg1, arg2, arg3, arg4, arg5)); } @@ -249,9 +249,9 @@ static void _call_f_addPath_5893 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const QPen &arg2 = args ? args.read (heap) : (const QPen &)(QPen()); - const QBrush &arg3 = args ? args.read (heap) : (const QBrush &)(QBrush()); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const QPen &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); + const QBrush &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QBrush(), heap); ret.write ((QGraphicsPathItem *)((QGraphicsScene *)cls)->addPath (arg1, arg2, arg3)); } @@ -270,7 +270,7 @@ static void _call_f_addPixmap_2017 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsPixmapItem *)((QGraphicsScene *)cls)->addPixmap (arg1)); } @@ -293,9 +293,9 @@ static void _call_f_addPolygon_5587 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); - const QPen &arg2 = args ? args.read (heap) : (const QPen &)(QPen()); - const QBrush &arg3 = args ? args.read (heap) : (const QBrush &)(QBrush()); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); + const QPen &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); + const QBrush &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QBrush(), heap); ret.write ((QGraphicsPolygonItem *)((QGraphicsScene *)cls)->addPolygon (arg1, arg2, arg3)); } @@ -318,9 +318,9 @@ static void _call_f_addRect_5241 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const QPen &arg2 = args ? args.read (heap) : (const QPen &)(QPen()); - const QBrush &arg3 = args ? args.read (heap) : (const QBrush &)(QBrush()); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const QPen &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); + const QBrush &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QBrush(), heap); ret.write ((QGraphicsRectItem *)((QGraphicsScene *)cls)->addRect (arg1, arg2, arg3)); } @@ -349,12 +349,12 @@ static void _call_f_addRect_7339 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - const QPen &arg5 = args ? args.read (heap) : (const QPen &)(QPen()); - const QBrush &arg6 = args ? args.read (heap) : (const QBrush &)(QBrush()); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + const QPen &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPen(), heap); + const QBrush &arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QBrush(), heap); ret.write ((QGraphicsRectItem *)((QGraphicsScene *)cls)->addRect (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -375,8 +375,8 @@ static void _call_f_addSimpleText_3718 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QFont &arg2 = args ? args.read (heap) : (const QFont &)(QFont()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QFont &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QFont(), heap); ret.write ((QGraphicsSimpleTextItem *)((QGraphicsScene *)cls)->addSimpleText (arg1, arg2)); } @@ -397,8 +397,8 @@ static void _call_f_addText_3718 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QFont &arg2 = args ? args.read (heap) : (const QFont &)(QFont()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QFont &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QFont(), heap); ret.write ((QGraphicsTextItem *)((QGraphicsScene *)cls)->addText (arg1, arg2)); } @@ -419,8 +419,8 @@ static void _call_f_addWidget_3702 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QGraphicsProxyWidget *)((QGraphicsScene *)cls)->addWidget (arg1, arg2)); } @@ -535,8 +535,8 @@ static void _call_f_collidingItems_c4977 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsScene *)cls)->collidingItems (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -555,7 +555,7 @@ static void _call_f_createItemGroup_3411 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ret.write ((QGraphicsItemGroup *)((QGraphicsScene *)cls)->createItemGroup (arg1)); } @@ -574,7 +574,7 @@ static void _call_f_destroyItemGroup_2444 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItemGroup *arg1 = args.read (heap); + QGraphicsItemGroup *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->destroyItemGroup (arg1); } @@ -669,7 +669,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsScene *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -696,11 +696,11 @@ static void _call_f_invalidate_7495 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - QFlags arg5 = args ? args.read > (heap) : (QFlags)(QGraphicsScene::AllLayers); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + QFlags arg5 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QGraphicsScene::AllLayers, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->invalidate (arg1, arg2, arg3, arg4, arg5); } @@ -722,8 +722,8 @@ static void _call_f_invalidate_5397 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args ? args.read (heap) : (const QRectF &)(QRectF()); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QGraphicsScene::AllLayers); + const QRectF &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QGraphicsScene::AllLayers, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->invalidate (arg1, arg2); } @@ -775,8 +775,8 @@ static void _call_f_itemAt_c4228 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const QTransform &arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const QTransform &arg2 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsItem *)((QGraphicsScene *)cls)->itemAt (arg1, arg2)); } @@ -799,9 +799,9 @@ static void _call_f_itemAt_c4276 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - const QTransform &arg3 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + const QTransform &arg3 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsItem *)((QGraphicsScene *)cls)->itemAt (arg1, arg2, arg3)); } @@ -835,7 +835,7 @@ static void _call_f_items_c1681 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::DescendingOrder)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::DescendingOrder), heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -860,10 +860,10 @@ static void _call_f_items_c8164 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::DescendingOrder)); - const QTransform &arg4 = args ? args.read (heap) : (const QTransform &)(QTransform()); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::DescendingOrder), heap); + const QTransform &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTransform(), heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -888,10 +888,10 @@ static void _call_f_items_c8040 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::DescendingOrder)); - const QTransform &arg4 = args ? args.read (heap) : (const QTransform &)(QTransform()); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::DescendingOrder), heap); + const QTransform &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTransform(), heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -916,10 +916,10 @@ static void _call_f_items_c8386 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::DescendingOrder)); - const QTransform &arg4 = args ? args.read (heap) : (const QTransform &)(QTransform()); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::DescendingOrder), heap); + const QTransform &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTransform(), heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -944,10 +944,10 @@ static void _call_f_items_c8692 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::DescendingOrder)); - const QTransform &arg4 = args ? args.read (heap) : (const QTransform &)(QTransform()); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::DescendingOrder), heap); + const QTransform &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTransform(), heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -978,13 +978,13 @@ static void _call_f_items_c10138 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg6 = args.read::target_type & > (heap); - const QTransform &arg7 = args ? args.read (heap) : (const QTransform &)(QTransform()); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg6 = gsi::arg_reader::target_type & >() (args, heap); + const QTransform &arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTransform(), heap); ret.write > ((QList)((QGraphicsScene *)cls)->items (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref(), qt_gsi::QtToCppAdaptor(arg6).cref(), arg7)); } @@ -1063,7 +1063,7 @@ static void _call_f_removeItem_1919 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->removeItem (arg1); } @@ -1089,10 +1089,10 @@ static void _call_f_render_7083 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args ? args.read (heap) : (const QRectF &)(QRectF()); - const QRectF &arg3 = args ? args.read (heap) : (const QRectF &)(QRectF()); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::KeepAspectRatio)); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); + const QRectF &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::KeepAspectRatio), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->render (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -1159,8 +1159,8 @@ static void _call_f_sendEvent_3028 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QEvent *arg2 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QEvent *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScene *)cls)->sendEvent (arg1, arg2)); } @@ -1179,7 +1179,7 @@ static void _call_f_setActivePanel_1919 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setActivePanel (arg1); } @@ -1199,7 +1199,7 @@ static void _call_f_setActiveWindow_2132 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsWidget *arg1 = args.read (heap); + QGraphicsWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setActiveWindow (arg1); } @@ -1219,7 +1219,7 @@ static void _call_f_setBackgroundBrush_1910 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setBackgroundBrush (arg1); } @@ -1239,7 +1239,7 @@ static void _call_f_setBspTreeDepth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setBspTreeDepth (arg1); } @@ -1259,7 +1259,7 @@ static void _call_f_setFocus_1877 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setFocus (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1281,8 +1281,8 @@ static void _call_f_setFocusItem_3688 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason)); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::OtherFocusReason), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setFocusItem (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1302,7 +1302,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setFont (arg1); } @@ -1322,7 +1322,7 @@ static void _call_f_setForegroundBrush_1910 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setForegroundBrush (arg1); } @@ -1342,7 +1342,7 @@ static void _call_f_setItemIndexMethod_3456 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setItemIndexMethod (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1362,7 +1362,7 @@ static void _call_f_setMinimumRenderSize_1071 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setMinimumRenderSize (arg1); } @@ -1382,7 +1382,7 @@ static void _call_f_setPalette_2113 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setPalette (arg1); } @@ -1402,7 +1402,7 @@ static void _call_f_setSceneRect_1862 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setSceneRect (arg1); } @@ -1428,10 +1428,10 @@ static void _call_f_setSceneRect_3960 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setSceneRect (arg1, arg2, arg3, arg4); } @@ -1453,8 +1453,8 @@ static void _call_f_setSelectionArea_4756 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const QTransform &arg2 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const QTransform &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setSelectionArea (arg1, arg2); } @@ -1478,9 +1478,9 @@ static void _call_f_setSelectionArea_7119 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); - const QTransform &arg3 = args ? args.read (heap) : (const QTransform &)(QTransform()); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); + const QTransform &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTransform(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setSelectionArea (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -1506,10 +1506,10 @@ static void _call_f_setSelectionArea_10038 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); - const QTransform &arg4 = args ? args.read (heap) : (const QTransform &)(QTransform()); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); + const QTransform &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTransform(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setSelectionArea (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), arg4); } @@ -1529,7 +1529,7 @@ static void _call_f_setSortCacheEnabled_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setSortCacheEnabled (arg1); } @@ -1549,7 +1549,7 @@ static void _call_f_setStickyFocus_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setStickyFocus (arg1); } @@ -1569,7 +1569,7 @@ static void _call_f_setStyle_1232 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle *arg1 = args.read (heap); + QStyle *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->setStyle (arg1); } @@ -1625,10 +1625,10 @@ static void _call_f_update_3960 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->update (arg1, arg2, arg3, arg4); } @@ -1648,7 +1648,7 @@ static void _call_f_update_1862 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args ? args.read (heap) : (const QRectF &)(QRectF()); + const QRectF &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsScene *)cls)->update (arg1); } @@ -1702,9 +1702,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsScene::tr (arg1, arg2, arg3)); } @@ -1727,9 +1727,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsScene::trUtf8 (arg1, arg2, arg3)); } @@ -2353,7 +2353,7 @@ static void _call_ctor_QGraphicsScene_Adaptor_1302 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsScene_Adaptor (arg1)); } @@ -2373,8 +2373,8 @@ static void _call_ctor_QGraphicsScene_Adaptor_3056 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsScene_Adaptor (arg1, arg2)); } @@ -2400,11 +2400,11 @@ static void _call_ctor_QGraphicsScene_Adaptor_5154 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - QObject *arg5 = args ? args.read (heap) : (QObject *)(0); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + QObject *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsScene_Adaptor (arg1, arg2, arg3, arg4, arg5)); } @@ -2422,7 +2422,7 @@ static void _call_emitter_changed_2477 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ((QGraphicsScene_Adaptor *)cls)->emitter_QGraphicsScene_changed_2477 (arg1); } @@ -2512,7 +2512,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsScene_Adaptor *)cls)->emitter_QGraphicsScene_destroyed_1302 (arg1); } @@ -2781,9 +2781,9 @@ static void _call_emitter_focusItemChanged_5499 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); - QGraphicsItem *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); ((QGraphicsScene_Adaptor *)cls)->emitter_QGraphicsScene_focusItemChanged_5499 (arg1, arg2, arg3); } @@ -2801,7 +2801,7 @@ static void _call_fp_focusNextPrevChild_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScene_Adaptor *)cls)->fp_QGraphicsScene_focusNextPrevChild_864 (arg1)); } @@ -2914,7 +2914,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsScene_Adaptor *)cls)->fp_QGraphicsScene_isSignalConnected_c2394 (arg1)); } @@ -3076,7 +3076,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsScene_Adaptor *)cls)->fp_QGraphicsScene_receivers_c1731 (arg1)); } @@ -3094,7 +3094,7 @@ static void _call_emitter_sceneRectChanged_1862 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsScene_Adaptor *)cls)->emitter_QGraphicsScene_sceneRectChanged_1862 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneContextMenuEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneContextMenuEvent.cc index 40f5a1f28..d41199f9d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneContextMenuEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneContextMenuEvent.cc @@ -128,7 +128,7 @@ static void _call_f_setModifiers_3077 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneContextMenuEvent *)cls)->setModifiers (arg1); } @@ -148,7 +148,7 @@ static void _call_f_setPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneContextMenuEvent *)cls)->setPos (arg1); } @@ -168,7 +168,7 @@ static void _call_f_setReason_4220 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneContextMenuEvent *)cls)->setReason (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -188,7 +188,7 @@ static void _call_f_setScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneContextMenuEvent *)cls)->setScenePos (arg1); } @@ -208,7 +208,7 @@ static void _call_f_setScreenPos_1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneContextMenuEvent *)cls)->setScreenPos (arg1); } @@ -279,7 +279,7 @@ static void _call_ctor_QGraphicsSceneContextMenuEvent_Adaptor_1565 (const qt_gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::None)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::None), heap); ret.write (new QGraphicsSceneContextMenuEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneDragDropEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneDragDropEvent.cc index 6543ef318..eab05ff60 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneDragDropEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneDragDropEvent.cc @@ -205,7 +205,7 @@ static void _call_f_setButtons_2602 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setButtons (arg1); } @@ -225,7 +225,7 @@ static void _call_f_setDropAction_1760 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setDropAction (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -245,7 +245,7 @@ static void _call_f_setMimeData_2168 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setMimeData (arg1); } @@ -265,7 +265,7 @@ static void _call_f_setModifiers_3077 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setModifiers (arg1); } @@ -285,7 +285,7 @@ static void _call_f_setPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setPos (arg1); } @@ -305,7 +305,7 @@ static void _call_f_setPossibleActions_2456 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setPossibleActions (arg1); } @@ -325,7 +325,7 @@ static void _call_f_setProposedAction_1760 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setProposedAction (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -345,7 +345,7 @@ static void _call_f_setScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setScenePos (arg1); } @@ -365,7 +365,7 @@ static void _call_f_setScreenPos_1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setScreenPos (arg1); } @@ -385,7 +385,7 @@ static void _call_f_setSource_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneDragDropEvent *)cls)->setSource (arg1); } @@ -482,7 +482,7 @@ static void _call_ctor_QGraphicsSceneDragDropEvent_Adaptor_1565 (const qt_gsi::G { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::None)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::None), heap); ret.write (new QGraphicsSceneDragDropEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneEvent.cc index 51b0b3723..ceb235137 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneEvent.cc @@ -51,7 +51,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneEvent *)cls)->setWidget (arg1); } @@ -123,7 +123,7 @@ static void _call_ctor_QGraphicsSceneEvent_Adaptor_1565 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write (new QGraphicsSceneEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHelpEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHelpEvent.cc index fe5ec3a6e..067b5dbb9 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHelpEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHelpEvent.cc @@ -83,7 +83,7 @@ static void _call_f_setScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHelpEvent *)cls)->setScenePos (arg1); } @@ -103,7 +103,7 @@ static void _call_f_setScreenPos_1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHelpEvent *)cls)->setScreenPos (arg1); } @@ -168,7 +168,7 @@ static void _call_ctor_QGraphicsSceneHelpEvent_Adaptor_1565 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::None)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::None), heap); ret.write (new QGraphicsSceneHelpEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHoverEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHoverEvent.cc index 02839f0b7..d25d2954b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHoverEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneHoverEvent.cc @@ -158,7 +158,7 @@ static void _call_f_setLastPos_1986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHoverEvent *)cls)->setLastPos (arg1); } @@ -178,7 +178,7 @@ static void _call_f_setLastScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHoverEvent *)cls)->setLastScenePos (arg1); } @@ -198,7 +198,7 @@ static void _call_f_setLastScreenPos_1916 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHoverEvent *)cls)->setLastScreenPos (arg1); } @@ -218,7 +218,7 @@ static void _call_f_setModifiers_3077 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHoverEvent *)cls)->setModifiers (arg1); } @@ -238,7 +238,7 @@ static void _call_f_setPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHoverEvent *)cls)->setPos (arg1); } @@ -258,7 +258,7 @@ static void _call_f_setScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHoverEvent *)cls)->setScenePos (arg1); } @@ -278,7 +278,7 @@ static void _call_f_setScreenPos_1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneHoverEvent *)cls)->setScreenPos (arg1); } @@ -353,7 +353,7 @@ static void _call_ctor_QGraphicsSceneHoverEvent_Adaptor_1565 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::None)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::None), heap); ret.write (new QGraphicsSceneHoverEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMouseEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMouseEvent.cc index cf6ab29c7..50a11326a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMouseEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMouseEvent.cc @@ -68,7 +68,7 @@ static void _call_f_buttonDownPos_c1906 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPointF)((QGraphicsSceneMouseEvent *)cls)->buttonDownPos (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -87,7 +87,7 @@ static void _call_f_buttonDownScenePos_c1906 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPointF)((QGraphicsSceneMouseEvent *)cls)->buttonDownScenePos (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -106,7 +106,7 @@ static void _call_f_buttonDownScreenPos_c1906 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPoint)((QGraphicsSceneMouseEvent *)cls)->buttonDownScreenPos (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -260,7 +260,7 @@ static void _call_f_setButton_1906 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setButton (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -282,8 +282,8 @@ static void _call_f_setButtonDownPos_3784 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPointF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setButtonDownPos (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -305,8 +305,8 @@ static void _call_f_setButtonDownScenePos_3784 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPointF &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setButtonDownScenePos (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -328,8 +328,8 @@ static void _call_f_setButtonDownScreenPos_3714 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPoint &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setButtonDownScreenPos (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -349,7 +349,7 @@ static void _call_f_setButtons_2602 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setButtons (arg1); } @@ -369,7 +369,7 @@ static void _call_f_setFlags_2858 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setFlags (arg1); } @@ -389,7 +389,7 @@ static void _call_f_setLastPos_1986 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setLastPos (arg1); } @@ -409,7 +409,7 @@ static void _call_f_setLastScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setLastScenePos (arg1); } @@ -429,7 +429,7 @@ static void _call_f_setLastScreenPos_1916 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setLastScreenPos (arg1); } @@ -449,7 +449,7 @@ static void _call_f_setModifiers_3077 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setModifiers (arg1); } @@ -469,7 +469,7 @@ static void _call_f_setPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setPos (arg1); } @@ -489,7 +489,7 @@ static void _call_f_setScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setScenePos (arg1); } @@ -509,7 +509,7 @@ static void _call_f_setScreenPos_1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setScreenPos (arg1); } @@ -529,7 +529,7 @@ static void _call_f_setSource_2409 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMouseEvent *)cls)->setSource (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -633,7 +633,7 @@ static void _call_ctor_QGraphicsSceneMouseEvent_Adaptor_1565 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::None)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::None), heap); ret.write (new QGraphicsSceneMouseEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMoveEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMoveEvent.cc index f81157335..710630769 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMoveEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneMoveEvent.cc @@ -82,7 +82,7 @@ static void _call_f_setNewPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMoveEvent *)cls)->setNewPos (arg1); } @@ -102,7 +102,7 @@ static void _call_f_setOldPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneMoveEvent *)cls)->setOldPos (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneResizeEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneResizeEvent.cc index 3e06b67ac..dd15c8d00 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneResizeEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneResizeEvent.cc @@ -82,7 +82,7 @@ static void _call_f_setNewSize_1875 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneResizeEvent *)cls)->setNewSize (arg1); } @@ -102,7 +102,7 @@ static void _call_f_setOldSize_1875 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneResizeEvent *)cls)->setOldSize (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneWheelEvent.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneWheelEvent.cc index 901e6b9af..a04360787 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneWheelEvent.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSceneWheelEvent.cc @@ -158,7 +158,7 @@ static void _call_f_setButtons_2602 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneWheelEvent *)cls)->setButtons (arg1); } @@ -178,7 +178,7 @@ static void _call_f_setDelta_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneWheelEvent *)cls)->setDelta (arg1); } @@ -198,7 +198,7 @@ static void _call_f_setModifiers_3077 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneWheelEvent *)cls)->setModifiers (arg1); } @@ -218,7 +218,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneWheelEvent *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -238,7 +238,7 @@ static void _call_f_setPos_1986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneWheelEvent *)cls)->setPos (arg1); } @@ -258,7 +258,7 @@ static void _call_f_setScenePos_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneWheelEvent *)cls)->setScenePos (arg1); } @@ -278,7 +278,7 @@ static void _call_f_setScreenPos_1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSceneWheelEvent *)cls)->setScreenPos (arg1); } @@ -353,7 +353,7 @@ static void _call_ctor_QGraphicsSceneWheelEvent_Adaptor_1565 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QEvent::None)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QEvent::None), heap); ret.write (new QGraphicsSceneWheelEvent_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref())); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc index 871dc6425..5a8ec8b78 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsSimpleTextItem.cc @@ -95,7 +95,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem *)cls)->contains (arg1)); } @@ -129,7 +129,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsSimpleTextItem *)cls)->isObscuredBy (arg1)); } @@ -167,9 +167,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem *)cls)->paint (arg1, arg2, arg3); } @@ -189,7 +189,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem *)cls)->setFont (arg1); } @@ -209,7 +209,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsSimpleTextItem *)cls)->setText (arg1); } @@ -917,7 +917,7 @@ static void _call_ctor_QGraphicsSimpleTextItem_Adaptor_1919 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsSimpleTextItem_Adaptor (arg1)); } @@ -937,8 +937,8 @@ static void _call_ctor_QGraphicsSimpleTextItem_Adaptor_3836 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsSimpleTextItem_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc index 63915c286..0699db5e5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTextItem.cc @@ -130,7 +130,7 @@ static void _call_f_contains_c1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem *)cls)->contains (arg1)); } @@ -194,7 +194,7 @@ static void _call_f_isObscuredBy_c2614 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem *)cls)->isObscuredBy (arg1)); } @@ -247,9 +247,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->paint (arg1, arg2, arg3); } @@ -269,7 +269,7 @@ static void _call_f_setDefaultTextColor_1905 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setDefaultTextColor (arg1); } @@ -289,7 +289,7 @@ static void _call_f_setDocument_1955 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setDocument (arg1); } @@ -309,7 +309,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setFont (arg1); } @@ -329,7 +329,7 @@ static void _call_f_setHtml_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setHtml (arg1); } @@ -349,7 +349,7 @@ static void _call_f_setOpenExternalLinks_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setOpenExternalLinks (arg1); } @@ -369,7 +369,7 @@ static void _call_f_setPlainText_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setPlainText (arg1); } @@ -389,7 +389,7 @@ static void _call_f_setTabChangesFocus_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setTabChangesFocus (arg1); } @@ -409,7 +409,7 @@ static void _call_f_setTextCursor_2453 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setTextCursor (arg1); } @@ -429,7 +429,7 @@ static void _call_f_setTextInteractionFlags_3396 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setTextInteractionFlags (arg1); } @@ -449,7 +449,7 @@ static void _call_f_setTextWidth_1071 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTextItem *)cls)->setTextWidth (arg1); } @@ -593,9 +593,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsTextItem::tr (arg1, arg2, arg3)); } @@ -618,9 +618,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsTextItem::trUtf8 (arg1, arg2, arg3)); } @@ -1523,7 +1523,7 @@ static void _call_ctor_QGraphicsTextItem_Adaptor_1919 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsTextItem_Adaptor (arg1)); } @@ -1543,8 +1543,8 @@ static void _call_ctor_QGraphicsTextItem_Adaptor_3836 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QGraphicsItem *arg2 = args ? args.read (heap) : (QGraphicsItem *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QGraphicsItem *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsTextItem_Adaptor (arg1, arg2)); } @@ -1781,7 +1781,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsTextItem_Adaptor *)cls)->emitter_QGraphicsTextItem_destroyed_1302 (arg1); } @@ -2209,7 +2209,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTextItem_Adaptor *)cls)->fp_QGraphicsTextItem_isSignalConnected_c2394 (arg1)); } @@ -2301,7 +2301,7 @@ static void _call_emitter_linkActivated_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsTextItem_Adaptor *)cls)->emitter_QGraphicsTextItem_linkActivated_2025 (arg1); } @@ -2319,7 +2319,7 @@ static void _call_emitter_linkHovered_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsTextItem_Adaptor *)cls)->emitter_QGraphicsTextItem_linkHovered_2025 (arg1); } @@ -2525,7 +2525,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsTextItem_Adaptor *)cls)->fp_QGraphicsTextItem_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTransform.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTransform.cc index 974a6b481..3be33c8fd 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTransform.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsTransform.cc @@ -70,7 +70,7 @@ static void _call_f_applyTo_c1556 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMatrix4x4 *arg1 = args.read (heap); + QMatrix4x4 *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsTransform *)cls)->applyTo (arg1); } @@ -94,9 +94,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsTransform::tr (arg1, arg2, arg3)); } @@ -119,9 +119,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsTransform::trUtf8 (arg1, arg2, arg3)); } @@ -329,7 +329,7 @@ static void _call_ctor_QGraphicsTransform_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsTransform_Adaptor (arg1)); } @@ -419,7 +419,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsTransform_Adaptor *)cls)->emitter_QGraphicsTransform_destroyed_1302 (arg1); } @@ -510,7 +510,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsTransform_Adaptor *)cls)->fp_QGraphicsTransform_isSignalConnected_c2394 (arg1)); } @@ -528,7 +528,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsTransform_Adaptor *)cls)->fp_QGraphicsTransform_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc index b296843e7..6bb949e23 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsView.cc @@ -171,7 +171,7 @@ static void _call_f_centerOn_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->centerOn (arg1); } @@ -193,8 +193,8 @@ static void _call_f_centerOn_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->centerOn (arg1, arg2); } @@ -214,7 +214,7 @@ static void _call_f_centerOn_2614 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->centerOn (arg1); } @@ -253,9 +253,9 @@ static void _call_f_ensureVisible_3180 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(50); - int arg3 = args ? args.read (heap) : (int)(50); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->ensureVisible (arg1, arg2, arg3); } @@ -285,12 +285,12 @@ static void _call_f_ensureVisible_5278 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - int arg5 = args ? args.read (heap) : (int)(50); - int arg6 = args ? args.read (heap) : (int)(50); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); + int arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->ensureVisible (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -314,9 +314,9 @@ static void _call_f_ensureVisible_3932 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(50); - int arg3 = args ? args.read (heap) : (int)(50); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->ensureVisible (arg1, arg2, arg3); } @@ -338,8 +338,8 @@ static void _call_f_fitInView_4011 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio)); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->fitInView (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -367,11 +367,11 @@ static void _call_f_fitInView_6109 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio)); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->fitInView (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()); } @@ -393,8 +393,8 @@ static void _call_f_fitInView_4763 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QGraphicsItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio)); + const QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IgnoreAspectRatio), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->fitInView (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -429,7 +429,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QGraphicsView *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -450,8 +450,8 @@ static void _call_f_invalidateScene_5397 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args ? args.read (heap) : (const QRectF &)(QRectF()); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QGraphicsScene::AllLayers); + const QRectF &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QGraphicsScene::AllLayers, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->invalidateScene (arg1, arg2); } @@ -501,7 +501,7 @@ static void _call_f_itemAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsItem *)((QGraphicsView *)cls)->itemAt (arg1)); } @@ -522,8 +522,8 @@ static void _call_f_itemAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QGraphicsItem *)((QGraphicsView *)cls)->itemAt (arg1, arg2)); } @@ -557,7 +557,7 @@ static void _call_f_items_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QGraphicsView *)cls)->items (arg1)); } @@ -578,8 +578,8 @@ static void _call_f_items_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QGraphicsView *)cls)->items (arg1, arg2)); } @@ -600,8 +600,8 @@ static void _call_f_items_c4155 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const QRect &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsView *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -628,11 +628,11 @@ static void _call_f_items_c5107 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsView *)cls)->items (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -653,8 +653,8 @@ static void _call_f_items_c4501 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsView *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -675,8 +675,8 @@ static void _call_f_items_c4877 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape)); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::IntersectsItemShape), heap); ret.write > ((QList)((QGraphicsView *)cls)->items (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -695,7 +695,7 @@ static void _call_f_mapFromScene_c1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QGraphicsView *)cls)->mapFromScene (arg1)); } @@ -714,7 +714,7 @@ static void _call_f_mapFromScene_c1862 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QGraphicsView *)cls)->mapFromScene (arg1)); } @@ -733,7 +733,7 @@ static void _call_f_mapFromScene_c2208 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygonF &arg1 = args.read (heap); + const QPolygonF &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QGraphicsView *)cls)->mapFromScene (arg1)); } @@ -752,7 +752,7 @@ static void _call_f_mapFromScene_c2514 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsView *)cls)->mapFromScene (arg1)); } @@ -773,8 +773,8 @@ static void _call_f_mapFromScene_c2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QGraphicsView *)cls)->mapFromScene (arg1, arg2)); } @@ -799,10 +799,10 @@ static void _call_f_mapFromScene_c3960 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); ret.write ((QPolygon)((QGraphicsView *)cls)->mapFromScene (arg1, arg2, arg3, arg4)); } @@ -821,7 +821,7 @@ static void _call_f_mapToScene_c1916 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsView *)cls)->mapToScene (arg1)); } @@ -840,7 +840,7 @@ static void _call_f_mapToScene_c1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsView *)cls)->mapToScene (arg1)); } @@ -859,7 +859,7 @@ static void _call_f_mapToScene_c2138 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPolygon &arg1 = args.read (heap); + const QPolygon &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsView *)cls)->mapToScene (arg1)); } @@ -878,7 +878,7 @@ static void _call_f_mapToScene_c2514 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPainterPath &arg1 = args.read (heap); + const QPainterPath &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPainterPath)((QGraphicsView *)cls)->mapToScene (arg1)); } @@ -899,8 +899,8 @@ static void _call_f_mapToScene_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QPointF)((QGraphicsView *)cls)->mapToScene (arg1, arg2)); } @@ -925,10 +925,10 @@ static void _call_f_mapToScene_c2744 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write ((QPolygonF)((QGraphicsView *)cls)->mapToScene (arg1, arg2, arg3, arg4)); } @@ -983,10 +983,10 @@ static void _call_f_render_7013 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRectF &arg2 = args ? args.read (heap) : (const QRectF &)(QRectF()); - const QRect &arg3 = args ? args.read (heap) : (const QRect &)(QRect()); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::KeepAspectRatio)); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRectF &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(), heap); + const QRect &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRect(), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::KeepAspectRatio), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->render (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -1084,7 +1084,7 @@ static void _call_f_rotate_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->rotate (arg1); } @@ -1136,8 +1136,8 @@ static void _call_f_scale_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->scale (arg1, arg2); } @@ -1187,7 +1187,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setAlignment (arg1); } @@ -1207,7 +1207,7 @@ static void _call_f_setBackgroundBrush_1910 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setBackgroundBrush (arg1); } @@ -1227,7 +1227,7 @@ static void _call_f_setCacheMode_3792 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setCacheMode (arg1); } @@ -1247,7 +1247,7 @@ static void _call_f_setDragMode_2632 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setDragMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1267,7 +1267,7 @@ static void _call_f_setForegroundBrush_1910 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setForegroundBrush (arg1); } @@ -1287,7 +1287,7 @@ static void _call_f_setInteractive_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setInteractive (arg1); } @@ -1309,8 +1309,8 @@ static void _call_f_setMatrix_2779 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMatrix &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QMatrix &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setMatrix (arg1, arg2); } @@ -1332,8 +1332,8 @@ static void _call_f_setOptimizationFlag_4282 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setOptimizationFlag (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -1353,7 +1353,7 @@ static void _call_f_setOptimizationFlags_4222 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setOptimizationFlags (arg1); } @@ -1375,8 +1375,8 @@ static void _call_f_setRenderHint_3123 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setRenderHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -1396,7 +1396,7 @@ static void _call_f_setRenderHints_3063 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setRenderHints (arg1); } @@ -1416,7 +1416,7 @@ static void _call_f_setResizeAnchor_3328 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setResizeAnchor (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1436,7 +1436,7 @@ static void _call_f_setRubberBandSelectionMode_2471 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setRubberBandSelectionMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1456,7 +1456,7 @@ static void _call_f_setScene_2014 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsScene *arg1 = args.read (heap); + QGraphicsScene *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setScene (arg1); } @@ -1476,7 +1476,7 @@ static void _call_f_setSceneRect_1862 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setSceneRect (arg1); } @@ -1502,10 +1502,10 @@ static void _call_f_setSceneRect_3960 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setSceneRect (arg1, arg2, arg3, arg4); } @@ -1527,8 +1527,8 @@ static void _call_f_setTransform_3106 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(false); + const QTransform &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setTransform (arg1, arg2); } @@ -1548,7 +1548,7 @@ static void _call_f_setTransformationAnchor_3328 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setTransformationAnchor (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1568,7 +1568,7 @@ static void _call_f_setViewportUpdateMode_3725 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->setViewportUpdateMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1590,8 +1590,8 @@ static void _call_f_shear_2034 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->shear (arg1, arg2); } @@ -1658,8 +1658,8 @@ static void _call_f_translate_2034 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->translate (arg1, arg2); } @@ -1679,7 +1679,7 @@ static void _call_f_updateScene_2477 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->updateScene (arg1); } @@ -1699,7 +1699,7 @@ static void _call_f_updateSceneRect_1862 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView *)cls)->updateSceneRect (arg1); } @@ -1753,9 +1753,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsView::tr (arg1, arg2, arg3)); } @@ -1778,9 +1778,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsView::trUtf8 (arg1, arg2, arg3)); } @@ -2863,7 +2863,7 @@ static void _call_ctor_QGraphicsView_Adaptor_1315 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsView_Adaptor (arg1)); } @@ -2883,8 +2883,8 @@ static void _call_ctor_QGraphicsView_Adaptor_3221 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsScene *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QGraphicsScene *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGraphicsView_Adaptor (arg1, arg2)); } @@ -3026,9 +3026,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->fp_QGraphicsView_create_2208 (arg1, arg2, arg3); } @@ -3047,7 +3047,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsView_Adaptor *)cls)->emitter_QGraphicsView_customContextMenuRequested_1916 (arg1); } @@ -3091,8 +3091,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->fp_QGraphicsView_destroy_1620 (arg1, arg2); } @@ -3111,7 +3111,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsView_Adaptor *)cls)->emitter_QGraphicsView_destroyed_1302 (arg1); } @@ -3279,7 +3279,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->fp_QGraphicsView_drawFrame_1426 (arg1); } @@ -3584,7 +3584,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->fp_QGraphicsView_initStyleOption_c2356 (arg1); } @@ -3650,7 +3650,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsView_Adaptor *)cls)->fp_QGraphicsView_isSignalConnected_c2394 (arg1)); } @@ -3974,7 +3974,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsView_Adaptor *)cls)->fp_QGraphicsView_receivers_c1731 (arg1)); } @@ -4043,9 +4043,9 @@ static void _call_emitter_rubberBandChanged_2917 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QRect arg1 = args.read (heap); - QPointF arg2 = args.read (heap); - QPointF arg3 = args.read (heap); + QRect arg1 = gsi::arg_reader() (args, heap); + QPointF arg2 = gsi::arg_reader() (args, heap); + QPointF arg3 = gsi::arg_reader() (args, heap); ((QGraphicsView_Adaptor *)cls)->emitter_QGraphicsView_rubberBandChanged_2917 (arg1, arg2, arg3); } @@ -4124,10 +4124,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->fp_QGraphicsView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -4146,7 +4146,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsView_Adaptor *)cls)->fp_QGraphicsView_setViewportMargins_2115 (arg1); } @@ -4418,7 +4418,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsView_Adaptor *)cls)->emitter_QGraphicsView_windowIconChanged_1787 (arg1); } @@ -4436,7 +4436,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsView_Adaptor *)cls)->emitter_QGraphicsView_windowIconTextChanged_2025 (arg1); } @@ -4454,7 +4454,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QGraphicsView_Adaptor *)cls)->emitter_QGraphicsView_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc index 1b01ce0c3..bf7561937 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGraphicsWidget.cc @@ -124,7 +124,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->addAction (arg1); } @@ -144,7 +144,7 @@ static void _call_f_addActions_1780 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QList arg1 = args.read > (heap); + QList arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->addActions (arg1); } @@ -291,10 +291,10 @@ static void _call_f_getContentsMargins_c4704 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->getContentsMargins (arg1, arg2, arg3, arg4); } @@ -320,10 +320,10 @@ static void _call_f_getWindowFrameMargins_c4704 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double *arg1 = args.read (heap); - double *arg2 = args.read (heap); - double *arg3 = args.read (heap); - double *arg4 = args.read (heap); + double *arg1 = gsi::arg_reader() (args, heap); + double *arg2 = gsi::arg_reader() (args, heap); + double *arg3 = gsi::arg_reader() (args, heap); + double *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->getWindowFrameMargins (arg1, arg2, arg3, arg4); } @@ -345,8 +345,8 @@ static void _call_f_grabShortcut_4758 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::WindowShortcut)); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::WindowShortcut), heap); ret.write ((int)((QGraphicsWidget *)cls)->grabShortcut (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -367,8 +367,8 @@ static void _call_f_insertAction_2510 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - QAction *arg2 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + QAction *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->insertAction (arg1, arg2); } @@ -390,8 +390,8 @@ static void _call_f_insertActions_2981 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - QList arg2 = args.read > (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + QList arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->insertActions (arg1, arg2); } @@ -460,9 +460,9 @@ static void _call_f_paint_6301 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->paint (arg1, arg2, arg3); } @@ -486,9 +486,9 @@ static void _call_f_paintWindowFrame_6301 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionGraphicsItem *arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionGraphicsItem *arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->paintWindowFrame (arg1, arg2, arg3); } @@ -538,7 +538,7 @@ static void _call_f_releaseShortcut_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->releaseShortcut (arg1); } @@ -558,7 +558,7 @@ static void _call_f_removeAction_1309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->removeAction (arg1); } @@ -578,7 +578,7 @@ static void _call_f_resize_1875 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->resize (arg1); } @@ -600,8 +600,8 @@ static void _call_f_resize_2034 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->resize (arg1, arg2); } @@ -623,8 +623,8 @@ static void _call_f_setAttribute_3065 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setAttribute (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -644,7 +644,7 @@ static void _call_f_setAutoFillBackground_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setAutoFillBackground (arg1); } @@ -670,10 +670,10 @@ static void _call_f_setContentsMargins_3960 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setContentsMargins (arg1, arg2, arg3, arg4); } @@ -693,7 +693,7 @@ static void _call_f_setFocusPolicy_1885 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setFocusPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -713,7 +713,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setFont (arg1); } @@ -733,7 +733,7 @@ static void _call_f_setGeometry_1862 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setGeometry (arg1); } @@ -759,10 +759,10 @@ static void _call_f_setGeometry_3960 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setGeometry (arg1, arg2, arg3, arg4); } @@ -782,7 +782,7 @@ static void _call_f_setLayout_2158 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsLayout *arg1 = args.read (heap); + QGraphicsLayout *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setLayout (arg1); } @@ -802,7 +802,7 @@ static void _call_f_setLayoutDirection_2316 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setLayoutDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -822,7 +822,7 @@ static void _call_f_setPalette_2113 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setPalette (arg1); } @@ -844,8 +844,8 @@ static void _call_f_setShortcutAutoRepeat_1523 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setShortcutAutoRepeat (arg1, arg2); } @@ -867,8 +867,8 @@ static void _call_f_setShortcutEnabled_1523 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setShortcutEnabled (arg1, arg2); } @@ -888,7 +888,7 @@ static void _call_f_setStyle_1232 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle *arg1 = args.read (heap); + QStyle *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setStyle (arg1); } @@ -908,7 +908,7 @@ static void _call_f_setWindowFlags_2495 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setWindowFlags (arg1); } @@ -934,10 +934,10 @@ static void _call_f_setWindowFrameMargins_3960 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - double arg4 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + double arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setWindowFrameMargins (arg1, arg2, arg3, arg4); } @@ -957,7 +957,7 @@ static void _call_f_setWindowTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget *)cls)->setWindowTitle (arg1); } @@ -1022,7 +1022,7 @@ static void _call_f_testAttribute_c2309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QGraphicsWidget *)cls)->testAttribute (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -1165,8 +1165,8 @@ static void _call_f_setTabOrder_4156 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsWidget *arg1 = args.read (heap); - QGraphicsWidget *arg2 = args.read (heap); + QGraphicsWidget *arg1 = gsi::arg_reader() (args, heap); + QGraphicsWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QGraphicsWidget::setTabOrder (arg1, arg2); } @@ -1190,9 +1190,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsWidget::tr (arg1, arg2, arg3)); } @@ -1215,9 +1215,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGraphicsWidget::trUtf8 (arg1, arg2, arg3)); } @@ -2539,8 +2539,8 @@ static void _call_ctor_QGraphicsWidget_Adaptor_4306 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args ? args.read (heap) : (QGraphicsItem *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QGraphicsItem *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QGraphicsWidget_Adaptor (arg1, arg2)); } @@ -2825,7 +2825,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGraphicsWidget_Adaptor *)cls)->emitter_QGraphicsWidget_destroyed_1302 (arg1); } @@ -3419,7 +3419,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGraphicsWidget_Adaptor *)cls)->fp_QGraphicsWidget_isSignalConnected_c2394 (arg1)); } @@ -3813,7 +3813,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGraphicsWidget_Adaptor *)cls)->fp_QGraphicsWidget_receivers_c1731 (arg1)); } @@ -4026,7 +4026,7 @@ static void _call_fp_setGraphicsItem_1919 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsItem *arg1 = args.read (heap); + QGraphicsItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->fp_QGraphicsWidget_setGraphicsItem_1919 (arg1); } @@ -4045,7 +4045,7 @@ static void _call_fp_setOwnedByLayout_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGraphicsWidget_Adaptor *)cls)->fp_QGraphicsWidget_setOwnedByLayout_864 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc index 931f9cfda..68c5a385f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGridLayout.cc @@ -86,12 +86,12 @@ static void _call_f_addItem_7018 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(1); - int arg5 = args ? args.read (heap) : (int)(1); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->addItem (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -117,11 +117,11 @@ static void _call_f_addLayout_5301 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(0); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->addLayout (arg1, arg2, arg3, arg4); } @@ -151,13 +151,13 @@ static void _call_f_addLayout_6619 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->addLayout (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -177,7 +177,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->addWidget (arg1); } @@ -203,10 +203,10 @@ static void _call_f_addWidget_5275 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->addWidget (arg1, arg2, arg3, arg4); } @@ -236,12 +236,12 @@ static void _call_f_addWidget_6593 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->addWidget (arg1, arg2, arg3, arg4, arg5, arg6); } @@ -263,8 +263,8 @@ static void _call_f_cellRect_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QGridLayout *)cls)->cellRect (arg1, arg2)); } @@ -298,7 +298,7 @@ static void _call_f_columnMinimumWidth_c767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout *)cls)->columnMinimumWidth (arg1)); } @@ -317,7 +317,7 @@ static void _call_f_columnStretch_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout *)cls)->columnStretch (arg1)); } @@ -374,11 +374,11 @@ static void _call_f_getItemPosition_c4147 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); - int *arg5 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); + int *arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->getItemPosition (arg1, arg2, arg3, arg4, arg5); } @@ -413,7 +413,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout *)cls)->heightForWidth (arg1)); } @@ -463,7 +463,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QGridLayout *)cls)->itemAt (arg1)); } @@ -484,8 +484,8 @@ static void _call_f_itemAtPosition_c1426 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QGridLayout *)cls)->itemAtPosition (arg1, arg2)); } @@ -519,7 +519,7 @@ static void _call_f_minimumHeightForWidth_c767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout *)cls)->minimumHeightForWidth (arg1)); } @@ -583,7 +583,7 @@ static void _call_f_rowMinimumHeight_c767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout *)cls)->rowMinimumHeight (arg1)); } @@ -602,7 +602,7 @@ static void _call_f_rowStretch_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout *)cls)->rowStretch (arg1)); } @@ -623,8 +623,8 @@ static void _call_f_setColumnMinimumWidth_1426 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setColumnMinimumWidth (arg1, arg2); } @@ -646,8 +646,8 @@ static void _call_f_setColumnStretch_1426 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setColumnStretch (arg1, arg2); } @@ -669,8 +669,8 @@ static void _call_f_setDefaultPositioning_2572 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setDefaultPositioning (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -690,7 +690,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setGeometry (arg1); } @@ -710,7 +710,7 @@ static void _call_f_setHorizontalSpacing_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setHorizontalSpacing (arg1); } @@ -730,7 +730,7 @@ static void _call_f_setOriginCorner_1366 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setOriginCorner (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -752,8 +752,8 @@ static void _call_f_setRowMinimumHeight_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setRowMinimumHeight (arg1, arg2); } @@ -775,8 +775,8 @@ static void _call_f_setRowStretch_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setRowStretch (arg1, arg2); } @@ -796,7 +796,7 @@ static void _call_f_setSpacing_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setSpacing (arg1); } @@ -816,7 +816,7 @@ static void _call_f_setVerticalSpacing_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout *)cls)->setVerticalSpacing (arg1); } @@ -866,7 +866,7 @@ static void _call_f_takeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QGridLayout *)cls)->takeAt (arg1)); } @@ -904,9 +904,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGridLayout::tr (arg1, arg2, arg3)); } @@ -929,9 +929,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGridLayout::trUtf8 (arg1, arg2, arg3)); } @@ -1501,7 +1501,7 @@ static void _call_ctor_QGridLayout_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QGridLayout_Adaptor (arg1)); } @@ -1533,7 +1533,7 @@ static void _call_fp_addChildLayout_1341 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->fp_QGridLayout_addChildLayout_1341 (arg1); @@ -1553,7 +1553,7 @@ static void _call_fp_addChildWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->fp_QGridLayout_addChildWidget_1315 (arg1); } @@ -1596,7 +1596,7 @@ static void _call_fp_adoptLayout_1341 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGridLayout_Adaptor *)cls)->fp_QGridLayout_adoptLayout_1341 (arg1)); } @@ -1614,7 +1614,7 @@ static void _call_fp_alignmentRect_c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QGridLayout_Adaptor *)cls)->fp_QGridLayout_alignmentRect_c1792 (arg1)); } @@ -1718,7 +1718,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGridLayout_Adaptor *)cls)->emitter_QGridLayout_destroyed_1302 (arg1); } @@ -1951,7 +1951,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGridLayout_Adaptor *)cls)->fp_QGridLayout_isSignalConnected_c2394 (arg1)); } @@ -2072,7 +2072,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGridLayout_Adaptor *)cls)->fp_QGridLayout_receivers_c1731 (arg1)); } @@ -2246,7 +2246,7 @@ static void _call_fp_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGridLayout_Adaptor *)cls)->fp_QGridLayout_widgetEvent_1217 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc index e45a3330f..a2c0ed2f7 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQGroupBox.cc @@ -190,7 +190,7 @@ static void _call_f_setAlignment_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox *)cls)->setAlignment (arg1); } @@ -210,7 +210,7 @@ static void _call_f_setCheckable_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox *)cls)->setCheckable (arg1); } @@ -230,7 +230,7 @@ static void _call_f_setChecked_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox *)cls)->setChecked (arg1); } @@ -250,7 +250,7 @@ static void _call_f_setFlat_864 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox *)cls)->setFlat (arg1); } @@ -270,7 +270,7 @@ static void _call_f_setTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox *)cls)->setTitle (arg1); } @@ -309,9 +309,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGroupBox::tr (arg1, arg2, arg3)); } @@ -334,9 +334,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QGroupBox::trUtf8 (arg1, arg2, arg3)); } @@ -1240,7 +1240,7 @@ static void _call_ctor_QGroupBox_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGroupBox_Adaptor (arg1)); } @@ -1260,8 +1260,8 @@ static void _call_ctor_QGroupBox_Adaptor_3232 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QGroupBox_Adaptor (arg1, arg2)); } @@ -1351,7 +1351,7 @@ static void _call_emitter_clicked_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QGroupBox_Adaptor *)cls)->emitter_QGroupBox_clicked_864 (arg1); } @@ -1421,9 +1421,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->fp_QGroupBox_create_2208 (arg1, arg2, arg3); } @@ -1442,7 +1442,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QGroupBox_Adaptor *)cls)->emitter_QGroupBox_customContextMenuRequested_1916 (arg1); } @@ -1486,8 +1486,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->fp_QGroupBox_destroy_1620 (arg1, arg2); } @@ -1506,7 +1506,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QGroupBox_Adaptor *)cls)->emitter_QGroupBox_destroyed_1302 (arg1); } @@ -1906,7 +1906,7 @@ static void _call_fp_initStyleOption_c2687 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionGroupBox *arg1 = args.read (heap); + QStyleOptionGroupBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QGroupBox_Adaptor *)cls)->fp_QGroupBox_initStyleOption_c2687 (arg1); } @@ -1972,7 +1972,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QGroupBox_Adaptor *)cls)->fp_QGroupBox_isSignalConnected_c2394 (arg1)); } @@ -2296,7 +2296,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QGroupBox_Adaptor *)cls)->fp_QGroupBox_receivers_c1731 (arg1)); } @@ -2523,7 +2523,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QGroupBox_Adaptor *)cls)->emitter_QGroupBox_toggled_864 (arg1); } @@ -2580,7 +2580,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QGroupBox_Adaptor *)cls)->emitter_QGroupBox_windowIconChanged_1787 (arg1); } @@ -2598,7 +2598,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QGroupBox_Adaptor *)cls)->emitter_QGroupBox_windowIconTextChanged_2025 (arg1); } @@ -2616,7 +2616,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QGroupBox_Adaptor *)cls)->emitter_QGroupBox_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQHBoxLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQHBoxLayout.cc index a5da37a65..dfe15916e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQHBoxLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQHBoxLayout.cc @@ -80,9 +80,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QHBoxLayout::tr (arg1, arg2, arg3)); } @@ -105,9 +105,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QHBoxLayout::trUtf8 (arg1, arg2, arg3)); } @@ -651,7 +651,7 @@ static void _call_ctor_QHBoxLayout_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QHBoxLayout_Adaptor (arg1)); } @@ -669,7 +669,7 @@ static void _call_fp_addChildLayout_1341 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->fp_QHBoxLayout_addChildLayout_1341 (arg1); @@ -689,7 +689,7 @@ static void _call_fp_addChildWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->fp_QHBoxLayout_addChildWidget_1315 (arg1); } @@ -732,7 +732,7 @@ static void _call_fp_adoptLayout_1341 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHBoxLayout_Adaptor *)cls)->fp_QHBoxLayout_adoptLayout_1341 (arg1)); } @@ -750,7 +750,7 @@ static void _call_fp_alignmentRect_c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QHBoxLayout_Adaptor *)cls)->fp_QHBoxLayout_alignmentRect_c1792 (arg1)); } @@ -854,7 +854,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QHBoxLayout_Adaptor *)cls)->emitter_QHBoxLayout_destroyed_1302 (arg1); } @@ -1087,7 +1087,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHBoxLayout_Adaptor *)cls)->fp_QHBoxLayout_isSignalConnected_c2394 (arg1)); } @@ -1208,7 +1208,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHBoxLayout_Adaptor *)cls)->fp_QHBoxLayout_receivers_c1731 (arg1)); } @@ -1382,7 +1382,7 @@ static void _call_fp_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHBoxLayout_Adaptor *)cls)->fp_QHBoxLayout_widgetEvent_1217 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc index 55e86408b..a43cad6fa 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQHeaderView.cc @@ -202,9 +202,9 @@ static void _call_f_headerDataChanged_3231 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->headerDataChanged (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3); } @@ -239,7 +239,7 @@ static void _call_f_hideSection_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->hideSection (arg1); } @@ -274,7 +274,7 @@ static void _call_f_isSectionHidden_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView *)cls)->isSectionHidden (arg1)); } @@ -323,7 +323,7 @@ static void _call_f_logicalIndex_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->logicalIndex (arg1)); } @@ -342,7 +342,7 @@ static void _call_f_logicalIndexAt_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->logicalIndexAt (arg1)); } @@ -363,8 +363,8 @@ static void _call_f_logicalIndexAt_c1426 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->logicalIndexAt (arg1, arg2)); } @@ -383,7 +383,7 @@ static void _call_f_logicalIndexAt_c1916 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->logicalIndexAt (arg1)); } @@ -434,8 +434,8 @@ static void _call_f_moveSection_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->moveSection (arg1, arg2); } @@ -534,8 +534,8 @@ static void _call_f_resizeSection_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->resizeSection (arg1, arg2); } @@ -555,7 +555,7 @@ static void _call_f_resizeSections_2644 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->resizeSections (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -575,7 +575,7 @@ static void _call_f_restoreState_2309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView *)cls)->restoreState (arg1)); } @@ -609,7 +609,7 @@ static void _call_f_sectionPosition_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->sectionPosition (arg1)); } @@ -628,7 +628,7 @@ static void _call_f_sectionResizeMode_c767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QHeaderView *)cls)->sectionResizeMode (arg1))); } @@ -647,7 +647,7 @@ static void _call_f_sectionSize_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->sectionSize (arg1)); } @@ -666,7 +666,7 @@ static void _call_f_sectionSizeHint_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->sectionSizeHint (arg1)); } @@ -685,7 +685,7 @@ static void _call_f_sectionViewportPosition_c767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->sectionViewportPosition (arg1)); } @@ -764,7 +764,7 @@ static void _call_f_setCascadingSectionResizes_864 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setCascadingSectionResizes (arg1); } @@ -784,7 +784,7 @@ static void _call_f_setDefaultAlignment_2750 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setDefaultAlignment (arg1); } @@ -804,7 +804,7 @@ static void _call_f_setDefaultSectionSize_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setDefaultSectionSize (arg1); } @@ -824,7 +824,7 @@ static void _call_f_setHighlightSections_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setHighlightSections (arg1); } @@ -844,7 +844,7 @@ static void _call_f_setMaximumSectionSize_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setMaximumSectionSize (arg1); } @@ -864,7 +864,7 @@ static void _call_f_setMinimumSectionSize_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setMinimumSectionSize (arg1); } @@ -884,7 +884,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setModel (arg1); } @@ -904,7 +904,7 @@ static void _call_f_setOffset_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setOffset (arg1); } @@ -940,7 +940,7 @@ static void _call_f_setOffsetToSectionPosition_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setOffsetToSectionPosition (arg1); } @@ -960,7 +960,7 @@ static void _call_f_setResizeContentsPrecision_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setResizeContentsPrecision (arg1); } @@ -982,8 +982,8 @@ static void _call_f_setSectionHidden_1523 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setSectionHidden (arg1, arg2); } @@ -1003,7 +1003,7 @@ static void _call_f_setSectionResizeMode_2644 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setSectionResizeMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1025,8 +1025,8 @@ static void _call_f_setSectionResizeMode_3303 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setSectionResizeMode (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1046,7 +1046,7 @@ static void _call_f_setSectionsClickable_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setSectionsClickable (arg1); } @@ -1066,7 +1066,7 @@ static void _call_f_setSectionsMovable_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setSectionsMovable (arg1); } @@ -1088,8 +1088,8 @@ static void _call_f_setSortIndicator_2340 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setSortIndicator (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1109,7 +1109,7 @@ static void _call_f_setSortIndicatorShown_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setSortIndicatorShown (arg1); } @@ -1129,7 +1129,7 @@ static void _call_f_setStretchLastSection_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setStretchLastSection (arg1); } @@ -1149,7 +1149,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->setVisible (arg1); } @@ -1169,7 +1169,7 @@ static void _call_f_showSection_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->showSection (arg1); } @@ -1266,8 +1266,8 @@ static void _call_f_swapSections_1426 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView *)cls)->swapSections (arg1, arg2); } @@ -1287,7 +1287,7 @@ static void _call_f_visualIndex_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->visualIndex (arg1)); } @@ -1306,7 +1306,7 @@ static void _call_f_visualIndexAt_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView *)cls)->visualIndexAt (arg1)); } @@ -1329,9 +1329,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QHeaderView::tr (arg1, arg2, arg3)); } @@ -1354,9 +1354,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QHeaderView::trUtf8 (arg1, arg2, arg3)); } @@ -3244,8 +3244,8 @@ static void _call_ctor_QHeaderView_Adaptor_3120 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QHeaderView_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -3287,7 +3287,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_activated_2395 (arg1); } @@ -3353,7 +3353,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_clicked_2395 (arg1); } @@ -3474,9 +3474,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_create_2208 (arg1, arg2, arg3); } @@ -3522,7 +3522,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_customContextMenuRequested_1916 (arg1); } @@ -3596,8 +3596,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_destroy_1620 (arg1, arg2); } @@ -3616,7 +3616,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_destroyed_1302 (arg1); } @@ -3707,7 +3707,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_doubleClicked_2395 (arg1); } @@ -3797,7 +3797,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_drawFrame_1426 (arg1); } @@ -3931,7 +3931,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_entered_2395 (arg1); } @@ -4273,7 +4273,7 @@ static void _call_emitter_iconSizeChanged_1805 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_iconSizeChanged_1805 (arg1); } @@ -4338,7 +4338,7 @@ static void _call_fp_initStyleOption_c2450 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionHeader *arg1 = args.read (heap); + QStyleOptionHeader *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_initStyleOption_c2450 (arg1); } @@ -4389,8 +4389,8 @@ static void _call_fp_initializeSections_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_initializeSections_1426 (arg1, arg2); } @@ -4479,7 +4479,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QHeaderView_Adaptor *)cls)->fp_QHeaderView_isSignalConnected_c2394 (arg1)); } @@ -4883,7 +4883,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_pressed_2395 (arg1); } @@ -4901,7 +4901,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QHeaderView_Adaptor *)cls)->fp_QHeaderView_receivers_c1731 (arg1)); } @@ -5105,8 +5105,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_scrollDirtyRegion_1426 (arg1, arg2); } @@ -5152,7 +5152,7 @@ static void _call_emitter_sectionClicked_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionClicked_767 (arg1); } @@ -5172,8 +5172,8 @@ static void _call_emitter_sectionCountChanged_1426 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionCountChanged_1426 (arg1, arg2); } @@ -5191,7 +5191,7 @@ static void _call_emitter_sectionDoubleClicked_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionDoubleClicked_767 (arg1); } @@ -5209,7 +5209,7 @@ static void _call_emitter_sectionEntered_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionEntered_767 (arg1); } @@ -5227,7 +5227,7 @@ static void _call_emitter_sectionHandleDoubleClicked_767 (const qt_gsi::GenericM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionHandleDoubleClicked_767 (arg1); } @@ -5249,9 +5249,9 @@ static void _call_emitter_sectionMoved_2085 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionMoved_2085 (arg1, arg2, arg3); } @@ -5269,7 +5269,7 @@ static void _call_emitter_sectionPressed_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionPressed_767 (arg1); } @@ -5291,9 +5291,9 @@ static void _call_emitter_sectionResized_2085 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sectionResized_2085 (arg1, arg2, arg3); } @@ -5338,9 +5338,9 @@ static void _call_fp_sectionsAboutToBeRemoved_3713 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_sectionsAboutToBeRemoved_3713 (arg1, arg2, arg3); } @@ -5363,9 +5363,9 @@ static void _call_fp_sectionsInserted_3713 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_sectionsInserted_3713 (arg1, arg2, arg3); } @@ -5504,7 +5504,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setDirtyRegion_2006 (arg1); } @@ -5523,7 +5523,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setHorizontalStepsPerItem_767 (arg1); } @@ -5641,7 +5641,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setState_2776 (arg1); } @@ -5660,7 +5660,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setVerticalStepsPerItem_767 (arg1); } @@ -5685,10 +5685,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -5707,7 +5707,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_setViewportMargins_2115 (arg1); } @@ -5884,8 +5884,8 @@ static void _call_emitter_sortIndicatorChanged_2340 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_sortIndicatorChanged_2340 (arg1, arg2); } @@ -6094,7 +6094,7 @@ static void _call_fp_updateSection_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QHeaderView_Adaptor *)cls)->fp_QHeaderView_updateSection_767 (arg1); } @@ -6353,7 +6353,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_windowIconChanged_1787 (arg1); } @@ -6371,7 +6371,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_windowIconTextChanged_2025 (arg1); } @@ -6389,7 +6389,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QHeaderView_Adaptor *)cls)->emitter_QHeaderView_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc index af75f98db..007564bc9 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQInputDialog.cc @@ -144,7 +144,7 @@ static void _call_f_done_767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->done (arg1); } @@ -377,8 +377,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->open (arg1, arg2); } @@ -413,7 +413,7 @@ static void _call_f_setCancelButtonText_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setCancelButtonText (arg1); } @@ -433,7 +433,7 @@ static void _call_f_setComboBoxEditable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setComboBoxEditable (arg1); } @@ -453,7 +453,7 @@ static void _call_f_setComboBoxItems_2437 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setComboBoxItems (arg1); } @@ -473,7 +473,7 @@ static void _call_f_setDoubleDecimals_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setDoubleDecimals (arg1); } @@ -493,7 +493,7 @@ static void _call_f_setDoubleMaximum_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setDoubleMaximum (arg1); } @@ -513,7 +513,7 @@ static void _call_f_setDoubleMinimum_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setDoubleMinimum (arg1); } @@ -535,8 +535,8 @@ static void _call_f_setDoubleRange_2034 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setDoubleRange (arg1, arg2); } @@ -556,7 +556,7 @@ static void _call_f_setDoubleValue_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setDoubleValue (arg1); } @@ -576,7 +576,7 @@ static void _call_f_setInputMode_2670 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setInputMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -596,7 +596,7 @@ static void _call_f_setIntMaximum_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setIntMaximum (arg1); } @@ -616,7 +616,7 @@ static void _call_f_setIntMinimum_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setIntMinimum (arg1); } @@ -638,8 +638,8 @@ static void _call_f_setIntRange_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setIntRange (arg1, arg2); } @@ -659,7 +659,7 @@ static void _call_f_setIntStep_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setIntStep (arg1); } @@ -679,7 +679,7 @@ static void _call_f_setIntValue_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setIntValue (arg1); } @@ -699,7 +699,7 @@ static void _call_f_setLabelText_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setLabelText (arg1); } @@ -719,7 +719,7 @@ static void _call_f_setOkButtonText_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setOkButtonText (arg1); } @@ -741,8 +741,8 @@ static void _call_f_setOption_4262 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -762,7 +762,7 @@ static void _call_f_setOptions_4202 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setOptions (arg1); } @@ -782,7 +782,7 @@ static void _call_f_setTextEchoMode_2187 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setTextEchoMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -802,7 +802,7 @@ static void _call_f_setTextValue_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setTextValue (arg1); } @@ -822,7 +822,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog *)cls)->setVisible (arg1); } @@ -857,7 +857,7 @@ static void _call_f_testOption_c3506 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QInputDialog *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -922,15 +922,15 @@ static void _call_f_getDouble_12026 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - double arg4 = args ? args.read (heap) : (double)(0); - double arg5 = args ? args.read (heap) : (double)(-2147483647); - double arg6 = args ? args.read (heap) : (double)(2147483647); - int arg7 = args ? args.read (heap) : (int)(1); - bool *arg8 = args ? args.read (heap) : (bool *)(0); - QFlags arg9 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + double arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + double arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-2147483647, heap); + double arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (2147483647, heap); + int arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + bool *arg8 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg9 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((double)QInputDialog::getDouble (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)); } @@ -965,15 +965,15 @@ static void _call_f_getInt_11114 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - int arg4 = args ? args.read (heap) : (int)(0); - int arg5 = args ? args.read (heap) : (int)(-2147483647); - int arg6 = args ? args.read (heap) : (int)(2147483647); - int arg7 = args ? args.read (heap) : (int)(1); - bool *arg8 = args ? args.read (heap) : (bool *)(0); - QFlags arg9 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-2147483647, heap); + int arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (2147483647, heap); + int arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); + bool *arg8 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg9 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((int)QInputDialog::getInt (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)); } @@ -1008,15 +1008,15 @@ static void _call_f_getItem_15099 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QStringList &arg4 = args.read (heap); - int arg5 = args ? args.read (heap) : (int)(0); - bool arg6 = args ? args.read (heap) : (bool)(true); - bool *arg7 = args ? args.read (heap) : (bool *)(0); - QFlags arg8 = args ? args.read > (heap) : (QFlags)(0); - QFlags arg9 = args ? args.read > (heap) : (QFlags)(Qt::ImhNone); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QStringList &arg4 = gsi::arg_reader() (args, heap); + int arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + bool arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool *arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg8 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); + QFlags arg9 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::ImhNone, heap); ret.write ((QString)QInputDialog::getItem (arg1, arg2, arg3, arg4, arg5, arg6, arg7, arg8, arg9)); } @@ -1047,13 +1047,13 @@ static void _call_f_getMultiLineText_13272 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - bool *arg5 = args ? args.read (heap) : (bool *)(0); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); - QFlags arg7 = args ? args.read > (heap) : (QFlags)(Qt::ImhNone); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + bool *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); + QFlags arg7 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::ImhNone, heap); ret.write ((QString)QInputDialog::getMultiLineText (arg1, arg2, arg3, arg4, arg5, arg6, arg7)); } @@ -1086,14 +1086,14 @@ static void _call_f_getText_15351 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QLineEdit::Normal)); - const QString &arg5 = args ? args.read (heap) : (const QString &)(QString()); - bool *arg6 = args ? args.read (heap) : (bool *)(0); - QFlags arg7 = args ? args.read > (heap) : (QFlags)(0); - QFlags arg8 = args ? args.read > (heap) : (QFlags)(Qt::ImhNone); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QLineEdit::Normal), heap); + const QString &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + bool *arg6 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg7 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); + QFlags arg8 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::ImhNone, heap); ret.write ((QString)QInputDialog::getText (arg1, arg2, arg3, qt_gsi::QtToCppAdaptor(arg4).cref(), arg5, arg6, arg7, arg8)); } @@ -1116,9 +1116,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QInputDialog::tr (arg1, arg2, arg3)); } @@ -1141,9 +1141,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QInputDialog::trUtf8 (arg1, arg2, arg3)); } @@ -2210,8 +2210,8 @@ static void _call_ctor_QInputDialog_Adaptor_3702 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QInputDialog_Adaptor (arg1, arg2)); } @@ -2287,7 +2287,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->fp_QInputDialog_adjustPosition_1315 (arg1); } @@ -2406,9 +2406,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->fp_QInputDialog_create_2208 (arg1, arg2, arg3); } @@ -2427,7 +2427,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_customContextMenuRequested_1916 (arg1); } @@ -2471,8 +2471,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QInputDialog_Adaptor *)cls)->fp_QInputDialog_destroy_1620 (arg1, arg2); } @@ -2491,7 +2491,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_destroyed_1302 (arg1); } @@ -2557,7 +2557,7 @@ static void _call_emitter_doubleValueChanged_1071 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_doubleValueChanged_1071 (arg1); } @@ -2575,7 +2575,7 @@ static void _call_emitter_doubleValueSelected_1071 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_doubleValueSelected_1071 (arg1); } @@ -2781,7 +2781,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_finished_767 (arg1); } @@ -3035,7 +3035,7 @@ static void _call_emitter_intValueChanged_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_intValueChanged_767 (arg1); } @@ -3053,7 +3053,7 @@ static void _call_emitter_intValueSelected_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_intValueSelected_767 (arg1); } @@ -3071,7 +3071,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QInputDialog_Adaptor *)cls)->fp_QInputDialog_isSignalConnected_c2394 (arg1)); } @@ -3415,7 +3415,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QInputDialog_Adaptor *)cls)->fp_QInputDialog_receivers_c1731 (arg1)); } @@ -3652,7 +3652,7 @@ static void _call_emitter_textValueChanged_2025 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_textValueChanged_2025 (arg1); } @@ -3670,7 +3670,7 @@ static void _call_emitter_textValueSelected_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_textValueSelected_2025 (arg1); } @@ -3751,7 +3751,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_windowIconChanged_1787 (arg1); } @@ -3769,7 +3769,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_windowIconTextChanged_2025 (arg1); } @@ -3787,7 +3787,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QInputDialog_Adaptor *)cls)->emitter_QInputDialog_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc index c10c73883..64cb12732 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemDelegate.cc @@ -87,9 +87,9 @@ static void _call_f_createEditor_c6860 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QItemDelegate *)cls)->createEditor (arg1, arg2, arg3)); } @@ -142,9 +142,9 @@ static void _call_f_paint_c6971 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate *)cls)->paint (arg1, arg2, arg3); } @@ -164,7 +164,7 @@ static void _call_f_setClipping_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate *)cls)->setClipping (arg1); } @@ -186,8 +186,8 @@ static void _call_f_setEditorData_c3602 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate *)cls)->setEditorData (arg1, arg2); } @@ -207,7 +207,7 @@ static void _call_f_setItemEditorFactory_2445 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemEditorFactory *arg1 = args.read (heap); + QItemEditorFactory *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate *)cls)->setItemEditorFactory (arg1); } @@ -231,9 +231,9 @@ static void _call_f_setModelData_c5913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate *)cls)->setModelData (arg1, arg2, arg3); } @@ -255,8 +255,8 @@ static void _call_f_sizeHint_c5653 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QItemDelegate *)cls)->sizeHint (arg1, arg2)); } @@ -279,9 +279,9 @@ static void _call_f_updateEditorGeometry_c6860 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate *)cls)->updateEditorGeometry (arg1, arg2, arg3); } @@ -305,9 +305,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QItemDelegate::tr (arg1, arg2, arg3)); } @@ -330,9 +330,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QItemDelegate::trUtf8 (arg1, arg2, arg3)); } @@ -812,7 +812,7 @@ static void _call_ctor_QItemDelegate_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QItemDelegate_Adaptor (arg1)); } @@ -856,8 +856,8 @@ static void _call_emitter_closeEditor_4926 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemDelegate::NoHint)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemDelegate::NoHint), heap); ((QItemDelegate_Adaptor *)cls)->emitter_QItemDelegate_closeEditor_4926 (arg1, arg2); } @@ -875,7 +875,7 @@ static void _call_emitter_commitData_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ((QItemDelegate_Adaptor *)cls)->emitter_QItemDelegate_commitData_1315 (arg1); } @@ -948,8 +948,8 @@ static void _call_fp_decoration_c5377 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_decoration_c5377 (arg1, arg2)); } @@ -994,7 +994,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QItemDelegate_Adaptor *)cls)->emitter_QItemDelegate_destroyed_1302 (arg1); } @@ -1040,9 +1040,9 @@ static void _call_fp_doCheck_c7061 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_doCheck_c7061 (arg1, arg2, arg3)); } @@ -1068,11 +1068,11 @@ static void _call_fp_doLayout_c7101 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - QRect *arg2 = args.read (heap); - QRect *arg3 = args.read (heap); - QRect *arg4 = args.read (heap); - bool arg5 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + QRect *arg2 = gsi::arg_reader() (args, heap); + QRect *arg3 = gsi::arg_reader() (args, heap); + QRect *arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_doLayout_c7101 (arg1, arg2, arg3, arg4, arg5); } @@ -1095,9 +1095,9 @@ static void _call_fp_drawBackground_c6971 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_drawBackground_c6971 (arg1, arg2, arg3); } @@ -1358,7 +1358,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_isSignalConnected_c2394 (arg1)); } @@ -1425,7 +1425,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_receivers_c1731 (arg1)); } @@ -1447,9 +1447,9 @@ static void _call_fp_rect_c6312 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_rect_c6312 (arg1, arg2, arg3)); } @@ -1471,9 +1471,9 @@ static void _call_fp_selected_c4778 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); - const QPalette &arg2 = args.read (heap); - bool arg3 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); + const QPalette &arg2 = gsi::arg_reader() (args, heap); + bool arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap *)((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_selected_c4778 (arg1, arg2, arg3)); } @@ -1578,8 +1578,8 @@ static void _call_fp_setOptions_c5653 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); ret.write ((QStyleOptionViewItem)((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_setOptions_c5653 (arg1, arg2)); } @@ -1623,7 +1623,7 @@ static void _call_emitter_sizeHintChanged_2395 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QItemDelegate_Adaptor *)cls)->emitter_QItemDelegate_sizeHintChanged_2395 (arg1); } @@ -1647,10 +1647,10 @@ static void _call_fp_textRectangle_c6720 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - const QFont &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QFont &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QItemDelegate_Adaptor *)cls)->fp_QItemDelegate_textRectangle_c6720 (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorCreatorBase.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorCreatorBase.cc index fcf64c5d1..38615af43 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorCreatorBase.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorCreatorBase.cc @@ -51,7 +51,7 @@ static void _call_f_createWidget_c1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QItemEditorCreatorBase *)cls)->createWidget (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorFactory.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorFactory.cc index 145268e6e..3acefdc23 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorFactory.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQItemEditorFactory.cc @@ -54,8 +54,8 @@ static void _call_f_createEditor_c1974 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QItemEditorFactory *)cls)->createEditor (arg1, arg2)); } @@ -76,8 +76,8 @@ static void _call_f_registerEditor_3475 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QItemEditorCreatorBase *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QItemEditorCreatorBase *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QItemEditorFactory *)cls)->registerEditor (arg1, arg2); } @@ -97,7 +97,7 @@ static void _call_f_valuePropertyName_c767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QByteArray)((QItemEditorFactory *)cls)->valuePropertyName (arg1)); } @@ -131,7 +131,7 @@ static void _call_f_setDefaultFactory_2445 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemEditorFactory *arg1 = args.read (heap); + QItemEditorFactory *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QItemEditorFactory::setDefaultFactory (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQKeySequenceEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQKeySequenceEdit.cc index 1c21f2b1c..90b728fa4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQKeySequenceEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQKeySequenceEdit.cc @@ -145,7 +145,7 @@ static void _call_f_setKeySequence_2516 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit *)cls)->setKeySequence (arg1); } @@ -169,9 +169,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QKeySequenceEdit::tr (arg1, arg2, arg3)); } @@ -194,9 +194,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QKeySequenceEdit::trUtf8 (arg1, arg2, arg3)); } @@ -1087,7 +1087,7 @@ static void _call_ctor_QKeySequenceEdit_Adaptor_1315 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QKeySequenceEdit_Adaptor (arg1)); } @@ -1107,8 +1107,8 @@ static void _call_ctor_QKeySequenceEdit_Adaptor_3723 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QKeySequenceEdit_Adaptor (arg1, arg2)); } @@ -1250,9 +1250,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->fp_QKeySequenceEdit_create_2208 (arg1, arg2, arg3); } @@ -1271,7 +1271,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QKeySequenceEdit_Adaptor *)cls)->emitter_QKeySequenceEdit_customContextMenuRequested_1916 (arg1); } @@ -1315,8 +1315,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QKeySequenceEdit_Adaptor *)cls)->fp_QKeySequenceEdit_destroy_1620 (arg1, arg2); } @@ -1335,7 +1335,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QKeySequenceEdit_Adaptor *)cls)->emitter_QKeySequenceEdit_destroyed_1302 (arg1); } @@ -1796,7 +1796,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QKeySequenceEdit_Adaptor *)cls)->fp_QKeySequenceEdit_isSignalConnected_c2394 (arg1)); } @@ -1862,7 +1862,7 @@ static void _call_emitter_keySequenceChanged_2516 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); ((QKeySequenceEdit_Adaptor *)cls)->emitter_QKeySequenceEdit_keySequenceChanged_2516 (arg1); } @@ -2138,7 +2138,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QKeySequenceEdit_Adaptor *)cls)->fp_QKeySequenceEdit_receivers_c1731 (arg1)); } @@ -2404,7 +2404,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QKeySequenceEdit_Adaptor *)cls)->emitter_QKeySequenceEdit_windowIconChanged_1787 (arg1); } @@ -2422,7 +2422,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QKeySequenceEdit_Adaptor *)cls)->emitter_QKeySequenceEdit_windowIconTextChanged_2025 (arg1); } @@ -2440,7 +2440,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QKeySequenceEdit_Adaptor *)cls)->emitter_QKeySequenceEdit_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc index 92fb5d325..955af30e7 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLCDNumber.cc @@ -115,7 +115,7 @@ static void _call_f_checkOverflow_c1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLCDNumber *)cls)->checkOverflow (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_checkOverflow_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLCDNumber *)cls)->checkOverflow (arg1)); } @@ -168,7 +168,7 @@ static void _call_f_display_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber *)cls)->display (arg1); } @@ -188,7 +188,7 @@ static void _call_f_display_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber *)cls)->display (arg1); } @@ -208,7 +208,7 @@ static void _call_f_display_1071 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber *)cls)->display (arg1); } @@ -305,7 +305,7 @@ static void _call_f_setDigitCount_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber *)cls)->setDigitCount (arg1); } @@ -341,7 +341,7 @@ static void _call_f_setMode_1850 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber *)cls)->setMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -377,7 +377,7 @@ static void _call_f_setSegmentStyle_2713 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber *)cls)->setSegmentStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -397,7 +397,7 @@ static void _call_f_setSmallDecimalPoint_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber *)cls)->setSmallDecimalPoint (arg1); } @@ -466,9 +466,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QLCDNumber::tr (arg1, arg2, arg3)); } @@ -491,9 +491,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QLCDNumber::trUtf8 (arg1, arg2, arg3)); } @@ -1404,7 +1404,7 @@ static void _call_ctor_QLCDNumber_Adaptor_1315 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLCDNumber_Adaptor (arg1)); } @@ -1424,8 +1424,8 @@ static void _call_ctor_QLCDNumber_Adaptor_2979 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + unsigned int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLCDNumber_Adaptor (arg1, arg2)); } @@ -1567,9 +1567,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->fp_QLCDNumber_create_2208 (arg1, arg2, arg3); } @@ -1588,7 +1588,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QLCDNumber_Adaptor *)cls)->emitter_QLCDNumber_customContextMenuRequested_1916 (arg1); } @@ -1632,8 +1632,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->fp_QLCDNumber_destroy_1620 (arg1, arg2); } @@ -1652,7 +1652,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QLCDNumber_Adaptor *)cls)->emitter_QLCDNumber_destroyed_1302 (arg1); } @@ -1766,7 +1766,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->fp_QLCDNumber_drawFrame_1426 (arg1); } @@ -2071,7 +2071,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLCDNumber_Adaptor *)cls)->fp_QLCDNumber_initStyleOption_c2356 (arg1); } @@ -2137,7 +2137,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLCDNumber_Adaptor *)cls)->fp_QLCDNumber_isSignalConnected_c2394 (arg1)); } @@ -2475,7 +2475,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLCDNumber_Adaptor *)cls)->fp_QLCDNumber_receivers_c1731 (arg1)); } @@ -2741,7 +2741,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QLCDNumber_Adaptor *)cls)->emitter_QLCDNumber_windowIconChanged_1787 (arg1); } @@ -2759,7 +2759,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QLCDNumber_Adaptor *)cls)->emitter_QLCDNumber_windowIconTextChanged_2025 (arg1); } @@ -2777,7 +2777,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QLCDNumber_Adaptor *)cls)->emitter_QLCDNumber_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc index ec54909f4..e6d3e8af9 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLabel.cc @@ -193,7 +193,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLabel *)cls)->heightForWidth (arg1)); } @@ -347,7 +347,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setAlignment (arg1); } @@ -367,7 +367,7 @@ static void _call_f_setBuddy_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setBuddy (arg1); } @@ -387,7 +387,7 @@ static void _call_f_setIndent_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setIndent (arg1); } @@ -407,7 +407,7 @@ static void _call_f_setMargin_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setMargin (arg1); } @@ -427,7 +427,7 @@ static void _call_f_setMovie_1215 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMovie *arg1 = args.read (heap); + QMovie *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setMovie (arg1); } @@ -447,7 +447,7 @@ static void _call_f_setNum_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setNum (arg1); } @@ -467,7 +467,7 @@ static void _call_f_setNum_1071 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setNum (arg1); } @@ -487,7 +487,7 @@ static void _call_f_setOpenExternalLinks_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setOpenExternalLinks (arg1); } @@ -507,7 +507,7 @@ static void _call_f_setPicture_2126 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPicture &arg1 = args.read (heap); + const QPicture &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setPicture (arg1); } @@ -527,7 +527,7 @@ static void _call_f_setPixmap_2017 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setPixmap (arg1); } @@ -547,7 +547,7 @@ static void _call_f_setScaledContents_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setScaledContents (arg1); } @@ -569,8 +569,8 @@ static void _call_f_setSelection_1426 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setSelection (arg1, arg2); } @@ -590,7 +590,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setText (arg1); } @@ -610,7 +610,7 @@ static void _call_f_setTextFormat_1787 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setTextFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -630,7 +630,7 @@ static void _call_f_setTextInteractionFlags_3396 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setTextInteractionFlags (arg1); } @@ -650,7 +650,7 @@ static void _call_f_setWordWrap_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel *)cls)->setWordWrap (arg1); } @@ -749,9 +749,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QLabel::tr (arg1, arg2, arg3)); } @@ -774,9 +774,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QLabel::trUtf8 (arg1, arg2, arg3)); } @@ -1724,8 +1724,8 @@ static void _call_ctor_QLabel_Adaptor_3702 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QLabel_Adaptor (arg1, arg2)); } @@ -1747,9 +1747,9 @@ static void _call_ctor_QLabel_Adaptor_5619 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QLabel_Adaptor (arg1, arg2, arg3)); } @@ -1891,9 +1891,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->fp_QLabel_create_2208 (arg1, arg2, arg3); } @@ -1912,7 +1912,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QLabel_Adaptor *)cls)->emitter_QLabel_customContextMenuRequested_1916 (arg1); } @@ -1956,8 +1956,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->fp_QLabel_destroy_1620 (arg1, arg2); } @@ -1976,7 +1976,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QLabel_Adaptor *)cls)->emitter_QLabel_destroyed_1302 (arg1); } @@ -2090,7 +2090,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->fp_QLabel_drawFrame_1426 (arg1); } @@ -2395,7 +2395,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLabel_Adaptor *)cls)->fp_QLabel_initStyleOption_c2356 (arg1); } @@ -2461,7 +2461,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLabel_Adaptor *)cls)->fp_QLabel_isSignalConnected_c2394 (arg1)); } @@ -2551,7 +2551,7 @@ static void _call_emitter_linkActivated_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QLabel_Adaptor *)cls)->emitter_QLabel_linkActivated_2025 (arg1); } @@ -2569,7 +2569,7 @@ static void _call_emitter_linkHovered_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QLabel_Adaptor *)cls)->emitter_QLabel_linkHovered_2025 (arg1); } @@ -2821,7 +2821,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLabel_Adaptor *)cls)->fp_QLabel_receivers_c1731 (arg1)); } @@ -3087,7 +3087,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QLabel_Adaptor *)cls)->emitter_QLabel_windowIconChanged_1787 (arg1); } @@ -3105,7 +3105,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QLabel_Adaptor *)cls)->emitter_QLabel_windowIconTextChanged_2025 (arg1); } @@ -3123,7 +3123,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QLabel_Adaptor *)cls)->emitter_QLabel_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc index bd95d66b0..b15482037 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayout.cc @@ -90,7 +90,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->addItem (arg1); @@ -111,7 +111,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->addWidget (arg1); } @@ -227,10 +227,10 @@ static void _call_f_getContentsMargins_c3488 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->getContentsMargins (arg1, arg2, arg3, arg4); } @@ -250,7 +250,7 @@ static void _call_f_indexOf_c1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout *)cls)->indexOf (arg1)); } @@ -315,7 +315,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QLayout *)cls)->itemAt (arg1)); } @@ -424,7 +424,7 @@ static void _call_f_removeItem_1740 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->removeItem (arg1); } @@ -444,7 +444,7 @@ static void _call_f_removeWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->removeWidget (arg1); } @@ -468,9 +468,9 @@ static void _call_f_replaceWidget_5361 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(Qt::FindChildrenRecursively); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::FindChildrenRecursively, heap); ret.write ((QLayoutItem *)((QLayout *)cls)->replaceWidget (arg1, arg2, arg3)); } @@ -491,8 +491,8 @@ static void _call_f_setAlignment_3957 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QLayout *)cls)->setAlignment (arg1, arg2)); } @@ -513,8 +513,8 @@ static void _call_f_setAlignment_3983 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write ((bool)((QLayout *)cls)->setAlignment (arg1, arg2)); } @@ -533,7 +533,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setAlignment (arg1); } @@ -559,10 +559,10 @@ static void _call_f_setContentsMargins_2744 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setContentsMargins (arg1, arg2, arg3, arg4); } @@ -582,7 +582,7 @@ static void _call_f_setContentsMargins_2115 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setContentsMargins (arg1); } @@ -602,7 +602,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setEnabled (arg1); } @@ -622,7 +622,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setGeometry (arg1); } @@ -642,7 +642,7 @@ static void _call_f_setMargin_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setMargin (arg1); } @@ -662,7 +662,7 @@ static void _call_f_setMenuBar_1315 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setMenuBar (arg1); } @@ -682,7 +682,7 @@ static void _call_f_setSizeConstraint_2743 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setSizeConstraint (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -702,7 +702,7 @@ static void _call_f_setSpacing_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout *)cls)->setSpacing (arg1); } @@ -752,7 +752,7 @@ static void _call_f_takeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QLayout *)cls)->takeAt (arg1)); } @@ -771,7 +771,7 @@ static void _call_f_totalHeightForWidth_c767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout *)cls)->totalHeightForWidth (arg1)); } @@ -853,8 +853,8 @@ static void _call_f_closestAcceptableSize_3707 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)QLayout::closestAcceptableSize (arg1, arg2)); } @@ -877,9 +877,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QLayout::tr (arg1, arg2, arg3)); } @@ -902,9 +902,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QLayout::trUtf8 (arg1, arg2, arg3)); } @@ -1530,7 +1530,7 @@ static void _call_ctor_QLayout_Adaptor_1315 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QLayout_Adaptor (arg1)); } @@ -1562,7 +1562,7 @@ static void _call_fp_addChildLayout_1341 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->fp_QLayout_addChildLayout_1341 (arg1); @@ -1582,7 +1582,7 @@ static void _call_fp_addChildWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->fp_QLayout_addChildWidget_1315 (arg1); } @@ -1625,7 +1625,7 @@ static void _call_fp_adoptLayout_1341 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLayout_Adaptor *)cls)->fp_QLayout_adoptLayout_1341 (arg1)); } @@ -1643,7 +1643,7 @@ static void _call_fp_alignmentRect_c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QLayout_Adaptor *)cls)->fp_QLayout_alignmentRect_c1792 (arg1)); } @@ -1747,7 +1747,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QLayout_Adaptor *)cls)->emitter_QLayout_destroyed_1302 (arg1); } @@ -1980,7 +1980,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLayout_Adaptor *)cls)->fp_QLayout_isSignalConnected_c2394 (arg1)); } @@ -2101,7 +2101,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayout_Adaptor *)cls)->fp_QLayout_receivers_c1731 (arg1)); } @@ -2275,7 +2275,7 @@ static void _call_fp_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayout_Adaptor *)cls)->fp_QLayout_widgetEvent_1217 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayoutItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayoutItem.cc index 6903e64ba..b0f580f8f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLayoutItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLayoutItem.cc @@ -130,7 +130,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayoutItem *)cls)->heightForWidth (arg1)); } @@ -210,7 +210,7 @@ static void _call_f_minimumHeightForWidth_c767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLayoutItem *)cls)->minimumHeightForWidth (arg1)); } @@ -244,7 +244,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayoutItem *)cls)->setAlignment (arg1); } @@ -264,7 +264,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLayoutItem *)cls)->setGeometry (arg1); } @@ -625,7 +625,7 @@ static void _call_ctor_QLayoutItem_Adaptor_2750 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args ? args.read > (heap) : (QFlags)(0); + QFlags arg1 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QLayoutItem_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc index cee6bb59a..e8ace416b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQLineEdit.cc @@ -118,7 +118,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->addAction (arg1); } @@ -140,8 +140,8 @@ static void _call_f_addAction_4075 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->addAction (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -163,8 +163,8 @@ static void _call_f_addAction_4553 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QAction *)((QLineEdit *)cls)->addAction (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -278,8 +278,8 @@ static void _call_f_cursorBackward_1523 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(1); + bool arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->cursorBackward (arg1, arg2); } @@ -301,8 +301,8 @@ static void _call_f_cursorForward_1523 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(1); + bool arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->cursorForward (arg1, arg2); } @@ -352,7 +352,7 @@ static void _call_f_cursorPositionAt_1916 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLineEdit *)cls)->cursorPositionAt (arg1)); } @@ -371,7 +371,7 @@ static void _call_f_cursorWordBackward_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->cursorWordBackward (arg1); } @@ -391,7 +391,7 @@ static void _call_f_cursorWordForward_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->cursorWordForward (arg1); } @@ -504,7 +504,7 @@ static void _call_f_end_864 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->end (arg1); } @@ -524,7 +524,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineEdit *)cls)->event (arg1)); } @@ -549,10 +549,10 @@ static void _call_f_getTextMargins_c3488 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->getTextMargins (arg1, arg2, arg3, arg4); } @@ -617,7 +617,7 @@ static void _call_f_home_864 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->home (arg1); } @@ -652,7 +652,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QLineEdit *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -671,7 +671,7 @@ static void _call_f_insert_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->insert (arg1); } @@ -889,7 +889,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setAlignment (arg1); } @@ -909,7 +909,7 @@ static void _call_f_setClearButtonEnabled_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setClearButtonEnabled (arg1); } @@ -929,7 +929,7 @@ static void _call_f_setCompleter_1642 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCompleter *arg1 = args.read (heap); + QCompleter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setCompleter (arg1); } @@ -949,7 +949,7 @@ static void _call_f_setCursorMoveStyle_2323 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setCursorMoveStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -969,7 +969,7 @@ static void _call_f_setCursorPosition_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setCursorPosition (arg1); } @@ -989,7 +989,7 @@ static void _call_f_setDragEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setDragEnabled (arg1); } @@ -1009,7 +1009,7 @@ static void _call_f_setEchoMode_2187 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setEchoMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1029,7 +1029,7 @@ static void _call_f_setFrame_864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setFrame (arg1); } @@ -1049,7 +1049,7 @@ static void _call_f_setInputMask_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setInputMask (arg1); } @@ -1069,7 +1069,7 @@ static void _call_f_setMaxLength_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setMaxLength (arg1); } @@ -1089,7 +1089,7 @@ static void _call_f_setModified_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setModified (arg1); } @@ -1109,7 +1109,7 @@ static void _call_f_setPlaceholderText_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setPlaceholderText (arg1); } @@ -1129,7 +1129,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setReadOnly (arg1); } @@ -1151,8 +1151,8 @@ static void _call_f_setSelection_1426 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setSelection (arg1, arg2); } @@ -1172,7 +1172,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setText (arg1); } @@ -1198,10 +1198,10 @@ static void _call_f_setTextMargins_2744 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setTextMargins (arg1, arg2, arg3, arg4); } @@ -1221,7 +1221,7 @@ static void _call_f_setTextMargins_2115 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setTextMargins (arg1); } @@ -1241,7 +1241,7 @@ static void _call_f_setValidator_2332 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QValidator *arg1 = args.read (heap); + const QValidator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit *)cls)->setValidator (arg1); } @@ -1341,9 +1341,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QLineEdit::tr (arg1, arg2, arg3)); } @@ -1366,9 +1366,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QLineEdit::trUtf8 (arg1, arg2, arg3)); } @@ -2362,7 +2362,7 @@ static void _call_ctor_QLineEdit_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLineEdit_Adaptor (arg1)); } @@ -2382,8 +2382,8 @@ static void _call_ctor_QLineEdit_Adaptor_3232 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QLineEdit_Adaptor (arg1, arg2)); } @@ -2525,9 +2525,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->fp_QLineEdit_create_2208 (arg1, arg2, arg3); } @@ -2548,8 +2548,8 @@ static void _call_emitter_cursorPositionChanged_1426 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QLineEdit_Adaptor *)cls)->emitter_QLineEdit_cursorPositionChanged_1426 (arg1, arg2); } @@ -2581,7 +2581,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QLineEdit_Adaptor *)cls)->emitter_QLineEdit_customContextMenuRequested_1916 (arg1); } @@ -2625,8 +2625,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->fp_QLineEdit_destroy_1620 (arg1, arg2); } @@ -2645,7 +2645,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QLineEdit_Adaptor *)cls)->emitter_QLineEdit_destroyed_1302 (arg1); } @@ -3059,7 +3059,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QLineEdit_Adaptor *)cls)->fp_QLineEdit_initStyleOption_c2356 (arg1); } @@ -3125,7 +3125,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QLineEdit_Adaptor *)cls)->fp_QLineEdit_isSignalConnected_c2394 (arg1)); } @@ -3449,7 +3449,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QLineEdit_Adaptor *)cls)->fp_QLineEdit_receivers_c1731 (arg1)); } @@ -3680,7 +3680,7 @@ static void _call_emitter_textChanged_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QLineEdit_Adaptor *)cls)->emitter_QLineEdit_textChanged_2025 (arg1); } @@ -3698,7 +3698,7 @@ static void _call_emitter_textEdited_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QLineEdit_Adaptor *)cls)->emitter_QLineEdit_textEdited_2025 (arg1); } @@ -3779,7 +3779,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QLineEdit_Adaptor *)cls)->emitter_QLineEdit_windowIconChanged_1787 (arg1); } @@ -3797,7 +3797,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QLineEdit_Adaptor *)cls)->emitter_QLineEdit_windowIconTextChanged_2025 (arg1); } @@ -3815,7 +3815,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QLineEdit_Adaptor *)cls)->emitter_QLineEdit_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc index 1d503505b..a4163a000 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQListView.cc @@ -199,7 +199,7 @@ static void _call_f_indexAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QListView *)cls)->indexAt (arg1)); } @@ -218,7 +218,7 @@ static void _call_f_isRowHidden_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView *)cls)->isRowHidden (arg1)); } @@ -345,8 +345,8 @@ static void _call_f_scrollTo_5576 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->scrollTo (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -366,7 +366,7 @@ static void _call_f_setBatchSize_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setBatchSize (arg1); } @@ -386,7 +386,7 @@ static void _call_f_setFlow_1864 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setFlow (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -406,7 +406,7 @@ static void _call_f_setGridSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setGridSize (arg1); } @@ -426,7 +426,7 @@ static void _call_f_setLayoutMode_2483 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setLayoutMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -446,7 +446,7 @@ static void _call_f_setModelColumn_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setModelColumn (arg1); } @@ -466,7 +466,7 @@ static void _call_f_setMovement_2299 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setMovement (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -486,7 +486,7 @@ static void _call_f_setResizeMode_2471 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setResizeMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -506,7 +506,7 @@ static void _call_f_setRootIndex_2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setRootIndex (arg1); } @@ -528,8 +528,8 @@ static void _call_f_setRowHidden_1523 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setRowHidden (arg1, arg2); } @@ -549,7 +549,7 @@ static void _call_f_setSelectionRectVisible_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setSelectionRectVisible (arg1); } @@ -569,7 +569,7 @@ static void _call_f_setSpacing_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setSpacing (arg1); } @@ -589,7 +589,7 @@ static void _call_f_setUniformItemSizes_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setUniformItemSizes (arg1); } @@ -609,7 +609,7 @@ static void _call_f_setViewMode_2256 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setViewMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -629,7 +629,7 @@ static void _call_f_setWordWrap_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setWordWrap (arg1); } @@ -649,7 +649,7 @@ static void _call_f_setWrapping_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView *)cls)->setWrapping (arg1); } @@ -714,7 +714,7 @@ static void _call_f_visualRect_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QListView *)cls)->visualRect (arg1)); } @@ -752,9 +752,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QListView::tr (arg1, arg2, arg3)); } @@ -777,9 +777,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QListView::trUtf8 (arg1, arg2, arg3)); } @@ -2524,7 +2524,7 @@ static void _call_ctor_QListView_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QListView_Adaptor (arg1)); } @@ -2566,7 +2566,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_activated_2395 (arg1); } @@ -2632,7 +2632,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_clicked_2395 (arg1); } @@ -2767,9 +2767,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_create_2208 (arg1, arg2, arg3); } @@ -2815,7 +2815,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_customContextMenuRequested_1916 (arg1); } @@ -2889,8 +2889,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_destroy_1620 (arg1, arg2); } @@ -2909,7 +2909,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QListView_Adaptor *)cls)->emitter_QListView_destroyed_1302 (arg1); } @@ -3000,7 +3000,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_doubleClicked_2395 (arg1); } @@ -3090,7 +3090,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_drawFrame_1426 (arg1); } @@ -3224,7 +3224,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_entered_2395 (arg1); } @@ -3552,7 +3552,7 @@ static void _call_emitter_iconSizeChanged_1805 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_iconSizeChanged_1805 (arg1); } @@ -3593,7 +3593,7 @@ static void _call_emitter_indexesMoved_3010 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_indexesMoved_3010 (arg1); } @@ -3635,7 +3635,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_initStyleOption_c2356 (arg1); } @@ -3724,7 +3724,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListView_Adaptor *)cls)->fp_QListView_isSignalConnected_c2394 (arg1)); } @@ -4098,7 +4098,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_pressed_2395 (arg1); } @@ -4116,7 +4116,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListView_Adaptor *)cls)->fp_QListView_receivers_c1731 (arg1)); } @@ -4134,7 +4134,7 @@ static void _call_fp_rectForIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QListView_Adaptor *)cls)->fp_QListView_rectForIndex_c2395 (arg1)); } @@ -4197,8 +4197,8 @@ static void _call_fp_resizeContents_1426 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_resizeContents_1426 (arg1, arg2); } @@ -4345,8 +4345,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_scrollDirtyRegion_1426 (arg1, arg2); } @@ -4512,7 +4512,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_setDirtyRegion_2006 (arg1); } @@ -4531,7 +4531,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_setHorizontalStepsPerItem_767 (arg1); } @@ -4576,8 +4576,8 @@ static void _call_fp_setPositionForIndex_4203 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_setPositionForIndex_4203 (arg1, arg2); } @@ -4671,7 +4671,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_setState_2776 (arg1); } @@ -4690,7 +4690,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_setVerticalStepsPerItem_767 (arg1); } @@ -4715,10 +4715,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -4737,7 +4737,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListView_Adaptor *)cls)->fp_QListView_setViewportMargins_2115 (arg1); } @@ -5343,7 +5343,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_windowIconChanged_1787 (arg1); } @@ -5361,7 +5361,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_windowIconTextChanged_2025 (arg1); } @@ -5379,7 +5379,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QListView_Adaptor *)cls)->emitter_QListView_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc index 072b32e2c..1c3c16944 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidget.cc @@ -124,7 +124,7 @@ static void _call_f_addItem_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->addItem (arg1); } @@ -144,7 +144,7 @@ static void _call_f_addItem_2126 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->addItem (arg1); @@ -165,7 +165,7 @@ static void _call_f_addItems_2437 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->addItems (arg1); } @@ -201,7 +201,7 @@ static void _call_f_closePersistentEditor_2126 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->closePersistentEditor (arg1); } @@ -266,7 +266,7 @@ static void _call_f_dropEvent_1622 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDropEvent *arg1 = args.read (heap); + QDropEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->dropEvent (arg1); } @@ -286,7 +286,7 @@ static void _call_f_editItem_2126 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->editItem (arg1); } @@ -308,8 +308,8 @@ static void _call_f_findItems_c4233 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write > ((QList)((QListWidget *)cls)->findItems (arg1, arg2)); } @@ -330,8 +330,8 @@ static void _call_f_insertItem_2785 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QListWidgetItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QListWidgetItem *arg2 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->insertItem (arg1, arg2); @@ -354,8 +354,8 @@ static void _call_f_insertItem_2684 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->insertItem (arg1, arg2); } @@ -377,8 +377,8 @@ static void _call_f_insertItems_3096 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->insertItems (arg1, arg2); } @@ -398,7 +398,7 @@ static void _call_f_isItemHidden_c2821 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem *arg1 = args.read (heap); + const QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget *)cls)->isItemHidden (arg1)); } @@ -417,7 +417,7 @@ static void _call_f_isItemSelected_c2821 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem *arg1 = args.read (heap); + const QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget *)cls)->isItemSelected (arg1)); } @@ -451,7 +451,7 @@ static void _call_f_item_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QListWidgetItem *)((QListWidget *)cls)->item (arg1)); } @@ -470,7 +470,7 @@ static void _call_f_itemAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QListWidgetItem *)((QListWidget *)cls)->itemAt (arg1)); } @@ -491,8 +491,8 @@ static void _call_f_itemAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QListWidgetItem *)((QListWidget *)cls)->itemAt (arg1, arg2)); } @@ -511,7 +511,7 @@ static void _call_f_itemWidget_c2126 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QListWidget *)cls)->itemWidget (arg1)); } @@ -530,7 +530,7 @@ static void _call_f_openPersistentEditor_2126 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->openPersistentEditor (arg1); } @@ -550,7 +550,7 @@ static void _call_f_removeItemWidget_2126 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->removeItemWidget (arg1); } @@ -570,7 +570,7 @@ static void _call_f_row_c2821 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem *arg1 = args.read (heap); + const QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListWidget *)cls)->row (arg1)); } @@ -591,8 +591,8 @@ static void _call_f_scrollToItem_6002 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->scrollToItem (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -627,7 +627,7 @@ static void _call_f_setCurrentItem_2126 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setCurrentItem (arg1); } @@ -649,8 +649,8 @@ static void _call_f_setCurrentItem_6489 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setCurrentItem (arg1, arg2); } @@ -670,7 +670,7 @@ static void _call_f_setCurrentRow_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setCurrentRow (arg1); } @@ -692,8 +692,8 @@ static void _call_f_setCurrentRow_5130 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + int arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setCurrentRow (arg1, arg2); } @@ -715,8 +715,8 @@ static void _call_f_setItemHidden_3577 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setItemHidden (arg1, arg2); } @@ -738,8 +738,8 @@ static void _call_f_setItemSelected_3577 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setItemSelected (arg1, arg2); } @@ -761,8 +761,8 @@ static void _call_f_setItemWidget_3333 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setItemWidget (arg1, arg2); } @@ -782,7 +782,7 @@ static void _call_f_setSortingEnabled_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->setSortingEnabled (arg1); } @@ -802,7 +802,7 @@ static void _call_f_sortItems_1681 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget *)cls)->sortItems (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -822,7 +822,7 @@ static void _call_f_takeItem_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QListWidgetItem *)((QListWidget *)cls)->takeItem (arg1)); } @@ -841,7 +841,7 @@ static void _call_f_visualItemRect_c2821 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem *arg1 = args.read (heap); + const QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QListWidget *)cls)->visualItemRect (arg1)); } @@ -864,9 +864,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QListWidget::tr (arg1, arg2, arg3)); } @@ -889,9 +889,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QListWidget::trUtf8 (arg1, arg2, arg3)); } @@ -2771,7 +2771,7 @@ static void _call_ctor_QListWidget_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QListWidget_Adaptor (arg1)); } @@ -2813,7 +2813,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_activated_2395 (arg1); } @@ -2879,7 +2879,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_clicked_2395 (arg1); } @@ -3014,9 +3014,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_create_2208 (arg1, arg2, arg3); } @@ -3064,8 +3064,8 @@ static void _call_emitter_currentItemChanged_4144 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); - QListWidgetItem *arg2 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QListWidgetItem *arg2 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_currentItemChanged_4144 (arg1, arg2); } @@ -3083,7 +3083,7 @@ static void _call_emitter_currentRowChanged_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_currentRowChanged_767 (arg1); } @@ -3101,7 +3101,7 @@ static void _call_emitter_currentTextChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_currentTextChanged_2025 (arg1); } @@ -3119,7 +3119,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_customContextMenuRequested_1916 (arg1); } @@ -3193,8 +3193,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_destroy_1620 (arg1, arg2); } @@ -3213,7 +3213,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_destroyed_1302 (arg1); } @@ -3304,7 +3304,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_doubleClicked_2395 (arg1); } @@ -3394,7 +3394,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_drawFrame_1426 (arg1); } @@ -3557,7 +3557,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_entered_2395 (arg1); } @@ -3885,7 +3885,7 @@ static void _call_emitter_iconSizeChanged_1805 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_iconSizeChanged_1805 (arg1); } @@ -3926,7 +3926,7 @@ static void _call_fp_indexFromItem_c2126 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QListWidget_Adaptor *)cls)->fp_QListWidget_indexFromItem_c2126 (arg1)); } @@ -3944,7 +3944,7 @@ static void _call_emitter_indexesMoved_3010 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_indexesMoved_3010 (arg1); } @@ -3986,7 +3986,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_initStyleOption_c2356 (arg1); } @@ -4075,7 +4075,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidget_Adaptor *)cls)->fp_QListWidget_isSignalConnected_c2394 (arg1)); } @@ -4093,7 +4093,7 @@ static void _call_emitter_itemActivated_2126 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_itemActivated_2126 (arg1); } @@ -4111,7 +4111,7 @@ static void _call_emitter_itemChanged_2126 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_itemChanged_2126 (arg1); } @@ -4129,7 +4129,7 @@ static void _call_emitter_itemClicked_2126 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_itemClicked_2126 (arg1); } @@ -4147,7 +4147,7 @@ static void _call_emitter_itemDoubleClicked_2126 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_itemDoubleClicked_2126 (arg1); } @@ -4165,7 +4165,7 @@ static void _call_emitter_itemEntered_2126 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_itemEntered_2126 (arg1); } @@ -4183,7 +4183,7 @@ static void _call_fp_itemFromIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QListWidgetItem *)((QListWidget_Adaptor *)cls)->fp_QListWidget_itemFromIndex_c2395 (arg1)); } @@ -4201,7 +4201,7 @@ static void _call_emitter_itemPressed_2126 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidgetItem *arg1 = args.read (heap); + QListWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_itemPressed_2126 (arg1); } @@ -4233,7 +4233,7 @@ static void _call_fp_items_c2168 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QListWidget_Adaptor *)cls)->fp_QListWidget_items_c2168 (arg1)); } @@ -4649,7 +4649,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_pressed_2395 (arg1); } @@ -4667,7 +4667,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QListWidget_Adaptor *)cls)->fp_QListWidget_receivers_c1731 (arg1)); } @@ -4685,7 +4685,7 @@ static void _call_fp_rectForIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QListWidget_Adaptor *)cls)->fp_QListWidget_rectForIndex_c2395 (arg1)); } @@ -4748,8 +4748,8 @@ static void _call_fp_resizeContents_1426 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_resizeContents_1426 (arg1, arg2); } @@ -4896,8 +4896,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_scrollDirtyRegion_1426 (arg1, arg2); } @@ -5063,7 +5063,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_setDirtyRegion_2006 (arg1); } @@ -5082,7 +5082,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_setHorizontalStepsPerItem_767 (arg1); } @@ -5103,8 +5103,8 @@ static void _call_fp_setPositionForIndex_4203 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_setPositionForIndex_4203 (arg1, arg2); } @@ -5198,7 +5198,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_setState_2776 (arg1); } @@ -5217,7 +5217,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_setVerticalStepsPerItem_767 (arg1); } @@ -5242,10 +5242,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -5264,7 +5264,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidget_Adaptor *)cls)->fp_QListWidget_setViewportMargins_2115 (arg1); } @@ -5889,7 +5889,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_windowIconChanged_1787 (arg1); } @@ -5907,7 +5907,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_windowIconTextChanged_2025 (arg1); } @@ -5925,7 +5925,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QListWidget_Adaptor *)cls)->emitter_QListWidget_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidgetItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidgetItem.cc index 50ccbe489..1cd88f785 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidgetItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQListWidgetItem.cc @@ -117,7 +117,7 @@ static void _call_f_data_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QListWidgetItem *)cls)->data (arg1)); } @@ -241,7 +241,7 @@ static void _call_f_operator_lt__c2817 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem &arg1 = args.read (heap); + const QListWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QListWidgetItem *)cls)->operator< (arg1)); } @@ -260,7 +260,7 @@ static void _call_f_operator_eq__2817 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem &arg1 = args.read (heap); + const QListWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((QListWidgetItem &)((QListWidgetItem *)cls)->operator= (arg1)); } @@ -279,7 +279,7 @@ static void _call_f_read_1697 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->read (arg1); } @@ -299,7 +299,7 @@ static void _call_f_setBackground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setBackground (arg1); } @@ -319,7 +319,7 @@ static void _call_f_setBackgroundColor_1905 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setBackgroundColor (arg1); } @@ -339,7 +339,7 @@ static void _call_f_setCheckState_1740 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setCheckState (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -361,8 +361,8 @@ static void _call_f_setData_2778 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setData (arg1, arg2); } @@ -382,7 +382,7 @@ static void _call_f_setFlags_2222 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setFlags (arg1); } @@ -402,7 +402,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setFont (arg1); } @@ -422,7 +422,7 @@ static void _call_f_setForeground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setForeground (arg1); } @@ -442,7 +442,7 @@ static void _call_f_setHidden_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setHidden (arg1); } @@ -462,7 +462,7 @@ static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setIcon (arg1); } @@ -482,7 +482,7 @@ static void _call_f_setSelected_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setSelected (arg1); } @@ -502,7 +502,7 @@ static void _call_f_setSizeHint_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setSizeHint (arg1); } @@ -522,7 +522,7 @@ static void _call_f_setStatusTip_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setStatusTip (arg1); } @@ -542,7 +542,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setText (arg1); } @@ -562,7 +562,7 @@ static void _call_f_setTextAlignment_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setTextAlignment (arg1); } @@ -582,7 +582,7 @@ static void _call_f_setTextColor_1905 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setTextColor (arg1); } @@ -602,7 +602,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setToolTip (arg1); } @@ -622,7 +622,7 @@ static void _call_f_setWhatsThis_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->setWhatsThis (arg1); } @@ -762,7 +762,7 @@ static void _call_f_write_c1697 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QListWidgetItem *)cls)->write (arg1); } @@ -1023,8 +1023,8 @@ static void _call_ctor_QListWidgetItem_Adaptor_2386 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QListWidget *arg1 = args ? args.read (heap) : (QListWidget *)(0); - int arg2 = args ? args.read (heap) : (int)(QListWidgetItem::Type); + QListWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QListWidgetItem::Type, heap); QListWidgetItem_Adaptor *obj = new QListWidgetItem_Adaptor (arg1, arg2); if (arg1) { qt_gsi::qt_keep (obj); @@ -1050,9 +1050,9 @@ static void _call_ctor_QListWidgetItem_Adaptor_4303 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QListWidget *arg2 = args ? args.read (heap) : (QListWidget *)(0); - int arg3 = args ? args.read (heap) : (int)(QListWidgetItem::Type); + const QString &arg1 = gsi::arg_reader() (args, heap); + QListWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QListWidgetItem::Type, heap); ret.write (new QListWidgetItem_Adaptor (arg1, arg2, arg3)); } @@ -1076,10 +1076,10 @@ static void _call_ctor_QListWidgetItem_Adaptor_5982 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QListWidget *arg3 = args ? args.read (heap) : (QListWidget *)(0); - int arg4 = args ? args.read (heap) : (int)(QListWidgetItem::Type); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QListWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QListWidgetItem::Type, heap); ret.write (new QListWidgetItem_Adaptor (arg1, arg2, arg3, arg4)); } @@ -1097,7 +1097,7 @@ static void _call_ctor_QListWidgetItem_Adaptor_2817 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QListWidgetItem &arg1 = args.read (heap); + const QListWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write (new QListWidgetItem_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMainWindow.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMainWindow.cc index cf809f4f1..a97bd729a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMainWindow.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMainWindow.cc @@ -121,8 +121,8 @@ static void _call_f_addDockWidget_3715 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QDockWidget *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QDockWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->addDockWidget (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -146,9 +146,9 @@ static void _call_f_addDockWidget_5520 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QDockWidget *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QDockWidget *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->addDockWidget (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -170,8 +170,8 @@ static void _call_f_addToolBar_3103 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QToolBar *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QToolBar *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->addToolBar (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -191,7 +191,7 @@ static void _call_f_addToolBar_1394 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QToolBar *arg1 = args.read (heap); + QToolBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->addToolBar (arg1); } @@ -211,7 +211,7 @@ static void _call_f_addToolBar_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QToolBar *)((QMainWindow *)cls)->addToolBar (arg1)); } @@ -230,7 +230,7 @@ static void _call_f_addToolBarBreak_1817 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TopToolBarArea)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TopToolBarArea), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->addToolBarBreak (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -265,7 +265,7 @@ static void _call_f_corner_c1366 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QMainWindow *)cls)->corner (qt_gsi::QtToCppAdaptor(arg1).cref()))); } @@ -314,7 +314,7 @@ static void _call_f_dockWidgetArea_c1700 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDockWidget *arg1 = args.read (heap); + QDockWidget *arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QMainWindow *)cls)->dockWidgetArea (arg1))); } @@ -365,8 +365,8 @@ static void _call_f_insertToolBar_2680 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QToolBar *arg1 = args.read (heap); - QToolBar *arg2 = args.read (heap); + QToolBar *arg1 = gsi::arg_reader() (args, heap); + QToolBar *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->insertToolBar (arg1, arg2); } @@ -386,7 +386,7 @@ static void _call_f_insertToolBarBreak_1394 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QToolBar *arg1 = args.read (heap); + QToolBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->insertToolBarBreak (arg1); } @@ -436,7 +436,7 @@ static void _call_f_isSeparator_c1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow *)cls)->isSeparator (arg1)); } @@ -485,7 +485,7 @@ static void _call_f_removeDockWidget_1700 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDockWidget *arg1 = args.read (heap); + QDockWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->removeDockWidget (arg1); } @@ -505,7 +505,7 @@ static void _call_f_removeToolBar_1394 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QToolBar *arg1 = args.read (heap); + QToolBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->removeToolBar (arg1); } @@ -525,7 +525,7 @@ static void _call_f_removeToolBarBreak_1394 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QToolBar *arg1 = args.read (heap); + QToolBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->removeToolBarBreak (arg1); } @@ -545,7 +545,7 @@ static void _call_f_restoreDockWidget_1700 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDockWidget *arg1 = args.read (heap); + QDockWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow *)cls)->restoreDockWidget (arg1)); } @@ -566,8 +566,8 @@ static void _call_f_restoreState_2968 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QMainWindow *)cls)->restoreState (arg1, arg2)); } @@ -586,7 +586,7 @@ static void _call_f_saveState_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(0); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QByteArray)((QMainWindow *)cls)->saveState (arg1)); } @@ -605,7 +605,7 @@ static void _call_f_setAnimated_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setAnimated (arg1); } @@ -625,7 +625,7 @@ static void _call_f_setCentralWidget_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setCentralWidget (arg1); } @@ -647,8 +647,8 @@ static void _call_f_setCorner_3381 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setCorner (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -668,7 +668,7 @@ static void _call_f_setDockNestingEnabled_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setDockNestingEnabled (arg1); } @@ -688,7 +688,7 @@ static void _call_f_setDockOptions_3368 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setDockOptions (arg1); } @@ -708,7 +708,7 @@ static void _call_f_setDocumentMode_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setDocumentMode (arg1); } @@ -728,7 +728,7 @@ static void _call_f_setIconSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setIconSize (arg1); } @@ -748,7 +748,7 @@ static void _call_f_setMenuBar_1385 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenuBar *arg1 = args.read (heap); + QMenuBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setMenuBar (arg1); } @@ -768,7 +768,7 @@ static void _call_f_setMenuWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setMenuWidget (arg1); } @@ -788,7 +788,7 @@ static void _call_f_setStatusBar_1624 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStatusBar *arg1 = args.read (heap); + QStatusBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setStatusBar (arg1); } @@ -810,8 +810,8 @@ static void _call_f_setTabPosition_5367 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setTabPosition (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -831,7 +831,7 @@ static void _call_f_setTabShape_2300 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setTabShape (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -851,7 +851,7 @@ static void _call_f_setToolButtonStyle_2328 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setToolButtonStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -871,7 +871,7 @@ static void _call_f_setUnifiedTitleAndToolBarOnMac_864 (const qt_gsi::GenericMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->setUnifiedTitleAndToolBarOnMac (arg1); } @@ -895,9 +895,9 @@ static void _call_f_splitDockWidget_5097 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDockWidget *arg1 = args.read (heap); - QDockWidget *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); + QDockWidget *arg1 = gsi::arg_reader() (args, heap); + QDockWidget *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->splitDockWidget (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -932,7 +932,7 @@ static void _call_f_tabPosition_c2123 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QMainWindow *)cls)->tabPosition (qt_gsi::QtToCppAdaptor(arg1).cref()))); } @@ -966,7 +966,7 @@ static void _call_f_tabifiedDockWidgets_c1700 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDockWidget *arg1 = args.read (heap); + QDockWidget *arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QMainWindow *)cls)->tabifiedDockWidgets (arg1)); } @@ -987,8 +987,8 @@ static void _call_f_tabifyDockWidget_3292 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDockWidget *arg1 = args.read (heap); - QDockWidget *arg2 = args.read (heap); + QDockWidget *arg1 = gsi::arg_reader() (args, heap); + QDockWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow *)cls)->tabifyDockWidget (arg1, arg2); } @@ -1023,7 +1023,7 @@ static void _call_f_toolBarArea_c1394 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QToolBar *arg1 = args.read (heap); + QToolBar *arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QMainWindow *)cls)->toolBarArea (arg1))); } @@ -1042,7 +1042,7 @@ static void _call_f_toolBarBreak_c1394 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QToolBar *arg1 = args.read (heap); + QToolBar *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow *)cls)->toolBarBreak (arg1)); } @@ -1095,9 +1095,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMainWindow::tr (arg1, arg2, arg3)); } @@ -1120,9 +1120,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMainWindow::trUtf8 (arg1, arg2, arg3)); } @@ -2073,8 +2073,8 @@ static void _call_ctor_QMainWindow_Adaptor_3702 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QMainWindow_Adaptor (arg1, arg2)); } @@ -2216,9 +2216,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->fp_QMainWindow_create_2208 (arg1, arg2, arg3); } @@ -2256,7 +2256,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QMainWindow_Adaptor *)cls)->emitter_QMainWindow_customContextMenuRequested_1916 (arg1); } @@ -2300,8 +2300,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMainWindow_Adaptor *)cls)->fp_QMainWindow_destroy_1620 (arg1, arg2); } @@ -2320,7 +2320,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMainWindow_Adaptor *)cls)->emitter_QMainWindow_destroyed_1302 (arg1); } @@ -2696,7 +2696,7 @@ static void _call_emitter_iconSizeChanged_1805 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QMainWindow_Adaptor *)cls)->emitter_QMainWindow_iconSizeChanged_1805 (arg1); } @@ -2785,7 +2785,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMainWindow_Adaptor *)cls)->fp_QMainWindow_isSignalConnected_c2394 (arg1)); } @@ -3109,7 +3109,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMainWindow_Adaptor *)cls)->fp_QMainWindow_receivers_c1731 (arg1)); } @@ -3336,7 +3336,7 @@ static void _call_emitter_toolButtonStyleChanged_2328 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QMainWindow_Adaptor *)cls)->emitter_QMainWindow_toolButtonStyleChanged_2328 (arg1); } @@ -3393,7 +3393,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QMainWindow_Adaptor *)cls)->emitter_QMainWindow_windowIconChanged_1787 (arg1); } @@ -3411,7 +3411,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QMainWindow_Adaptor *)cls)->emitter_QMainWindow_windowIconTextChanged_2025 (arg1); } @@ -3429,7 +3429,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QMainWindow_Adaptor *)cls)->emitter_QMainWindow_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc index 8508dba46..bc41a1c88 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiArea.cc @@ -182,8 +182,8 @@ static void _call_f_addSubWindow_3702 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QMdiSubWindow *)((QMdiArea *)cls)->addSubWindow (arg1, arg2)); } @@ -310,7 +310,7 @@ static void _call_f_removeSubWindow_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->removeSubWindow (arg1); } @@ -330,7 +330,7 @@ static void _call_f_setActivationOrder_2432 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setActivationOrder (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -350,7 +350,7 @@ static void _call_f_setActiveSubWindow_1915 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMdiSubWindow *arg1 = args.read (heap); + QMdiSubWindow *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setActiveSubWindow (arg1); } @@ -370,7 +370,7 @@ static void _call_f_setBackground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setBackground (arg1); } @@ -390,7 +390,7 @@ static void _call_f_setDocumentMode_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setDocumentMode (arg1); } @@ -412,8 +412,8 @@ static void _call_f_setOption_3058 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -433,7 +433,7 @@ static void _call_f_setTabPosition_2656 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setTabPosition (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -453,7 +453,7 @@ static void _call_f_setTabShape_2300 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setTabShape (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -473,7 +473,7 @@ static void _call_f_setTabsClosable_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setTabsClosable (arg1); } @@ -493,7 +493,7 @@ static void _call_f_setTabsMovable_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setTabsMovable (arg1); } @@ -513,7 +513,7 @@ static void _call_f_setViewMode_2092 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea *)cls)->setViewMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -548,7 +548,7 @@ static void _call_f_subWindowList_c2432 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QMdiArea::CreationOrder)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QMdiArea::CreationOrder), heap); ret.write > ((QList)((QMdiArea *)cls)->subWindowList (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -627,7 +627,7 @@ static void _call_f_testOption_c2302 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QMdiArea *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -681,9 +681,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMdiArea::tr (arg1, arg2, arg3)); } @@ -706,9 +706,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMdiArea::trUtf8 (arg1, arg2, arg3)); } @@ -1698,7 +1698,7 @@ static void _call_ctor_QMdiArea_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMdiArea_Adaptor (arg1)); } @@ -1840,9 +1840,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->fp_QMdiArea_create_2208 (arg1, arg2, arg3); } @@ -1861,7 +1861,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QMdiArea_Adaptor *)cls)->emitter_QMdiArea_customContextMenuRequested_1916 (arg1); } @@ -1905,8 +1905,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->fp_QMdiArea_destroy_1620 (arg1, arg2); } @@ -1925,7 +1925,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMdiArea_Adaptor *)cls)->emitter_QMdiArea_destroyed_1302 (arg1); } @@ -2039,7 +2039,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->fp_QMdiArea_drawFrame_1426 (arg1); } @@ -2344,7 +2344,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->fp_QMdiArea_initStyleOption_c2356 (arg1); } @@ -2410,7 +2410,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiArea_Adaptor *)cls)->fp_QMdiArea_isSignalConnected_c2394 (arg1)); } @@ -2734,7 +2734,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMdiArea_Adaptor *)cls)->fp_QMdiArea_receivers_c1731 (arg1)); } @@ -2860,10 +2860,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->fp_QMdiArea_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -2882,7 +2882,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiArea_Adaptor *)cls)->fp_QMdiArea_setViewportMargins_2115 (arg1); } @@ -3011,7 +3011,7 @@ static void _call_emitter_subWindowActivated_1915 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMdiSubWindow *arg1 = args.read (heap); + QMdiSubWindow *arg1 = gsi::arg_reader() (args, heap); ((QMdiArea_Adaptor *)cls)->emitter_QMdiArea_subWindowActivated_1915 (arg1); } @@ -3172,7 +3172,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QMdiArea_Adaptor *)cls)->emitter_QMdiArea_windowIconChanged_1787 (arg1); } @@ -3190,7 +3190,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QMdiArea_Adaptor *)cls)->emitter_QMdiArea_windowIconTextChanged_2025 (arg1); } @@ -3208,7 +3208,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QMdiArea_Adaptor *)cls)->emitter_QMdiArea_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc index bc3ab92bd..75f09f27f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMdiSubWindow.cc @@ -221,7 +221,7 @@ static void _call_f_setKeyboardPageStep_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow *)cls)->setKeyboardPageStep (arg1); } @@ -241,7 +241,7 @@ static void _call_f_setKeyboardSingleStep_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow *)cls)->setKeyboardSingleStep (arg1); } @@ -263,8 +263,8 @@ static void _call_f_setOption_4164 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -284,7 +284,7 @@ static void _call_f_setSystemMenu_1108 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenu *arg1 = args.read (heap); + QMenu *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow *)cls)->setSystemMenu (arg1); } @@ -304,7 +304,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow *)cls)->setWidget (arg1); } @@ -386,7 +386,7 @@ static void _call_f_testOption_c3408 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QMdiSubWindow *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -424,9 +424,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMdiSubWindow::tr (arg1, arg2, arg3)); } @@ -449,9 +449,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMdiSubWindow::trUtf8 (arg1, arg2, arg3)); } @@ -1353,8 +1353,8 @@ static void _call_ctor_QMdiSubWindow_Adaptor_3702 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QMdiSubWindow_Adaptor (arg1, arg2)); } @@ -1510,9 +1510,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->fp_QMdiSubWindow_create_2208 (arg1, arg2, arg3); } @@ -1531,7 +1531,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QMdiSubWindow_Adaptor *)cls)->emitter_QMdiSubWindow_customContextMenuRequested_1916 (arg1); } @@ -1575,8 +1575,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMdiSubWindow_Adaptor *)cls)->fp_QMdiSubWindow_destroy_1620 (arg1, arg2); } @@ -1595,7 +1595,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMdiSubWindow_Adaptor *)cls)->emitter_QMdiSubWindow_destroyed_1302 (arg1); } @@ -2042,7 +2042,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMdiSubWindow_Adaptor *)cls)->fp_QMdiSubWindow_isSignalConnected_c2394 (arg1)); } @@ -2366,7 +2366,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMdiSubWindow_Adaptor *)cls)->fp_QMdiSubWindow_receivers_c1731 (arg1)); } @@ -2632,7 +2632,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QMdiSubWindow_Adaptor *)cls)->emitter_QMdiSubWindow_windowIconChanged_1787 (arg1); } @@ -2650,7 +2650,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QMdiSubWindow_Adaptor *)cls)->emitter_QMdiSubWindow_windowIconTextChanged_2025 (arg1); } @@ -2670,8 +2670,8 @@ static void _call_emitter_windowStateChanged_5072 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - QFlags arg2 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ((QMdiSubWindow_Adaptor *)cls)->emitter_QMdiSubWindow_windowStateChanged_5072 (arg1, arg2); } @@ -2689,7 +2689,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QMdiSubWindow_Adaptor *)cls)->emitter_QMdiSubWindow_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc index ff7dcb842..61f80e398 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenu.cc @@ -115,7 +115,7 @@ static void _call_f_actionAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->actionAt (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_actionGeometry_c1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QMenu *)cls)->actionGeometry (arg1)); } @@ -168,7 +168,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->addAction (arg1); } @@ -188,7 +188,7 @@ static void _call_f_addAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->addAction (arg1)); } @@ -209,8 +209,8 @@ static void _call_f_addAction_3704 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->addAction (arg1, arg2)); } @@ -235,10 +235,10 @@ static void _call_f_addAction_7945 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QObject *arg2 = args.read (heap); - const char *arg3 = args.read (heap); - const QKeySequence &arg4 = args ? args.read (heap) : (const QKeySequence &)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QObject *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); + const QKeySequence &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QAction *)((QMenu *)cls)->addAction (arg1, arg2, arg3, arg4)); } @@ -265,11 +265,11 @@ static void _call_f_addAction_9624 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - const char *arg4 = args.read (heap); - const QKeySequence &arg5 = args ? args.read (heap) : (const QKeySequence &)(0); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + const char *arg4 = gsi::arg_reader() (args, heap); + const QKeySequence &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QAction *)((QMenu *)cls)->addAction (arg1, arg2, arg3, arg4, arg5)); } @@ -288,7 +288,7 @@ static void _call_f_addMenu_1108 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenu *arg1 = args.read (heap); + QMenu *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->addMenu (arg1)); } @@ -307,7 +307,7 @@ static void _call_f_addMenu_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMenu *)((QMenu *)cls)->addMenu (arg1)); } @@ -328,8 +328,8 @@ static void _call_f_addMenu_3704 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QMenu *)((QMenu *)cls)->addMenu (arg1, arg2)); } @@ -348,7 +348,7 @@ static void _call_f_addSection_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->addSection (arg1)); } @@ -369,8 +369,8 @@ static void _call_f_addSection_3704 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->addSection (arg1, arg2)); } @@ -452,8 +452,8 @@ static void _call_f_exec_3117 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - QAction *arg2 = args ? args.read (heap) : (QAction *)(0); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + QAction *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QAction *)((QMenu *)cls)->exec (arg1, arg2)); } @@ -505,8 +505,8 @@ static void _call_f_insertMenu_2309 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - QMenu *arg2 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + QMenu *arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->insertMenu (arg1, arg2)); } @@ -527,8 +527,8 @@ static void _call_f_insertSection_3226 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->insertSection (arg1, arg2)); } @@ -551,9 +551,9 @@ static void _call_f_insertSection_4905 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->insertSection (arg1, arg2, arg3)); } @@ -572,7 +572,7 @@ static void _call_f_insertSeparator_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenu *)cls)->insertSeparator (arg1)); } @@ -653,8 +653,8 @@ static void _call_f_popup_3117 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - QAction *arg2 = args ? args.read (heap) : (QAction *)(0); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + QAction *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->popup (arg1, arg2); } @@ -689,7 +689,7 @@ static void _call_f_setActiveAction_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->setActiveAction (arg1); } @@ -709,7 +709,7 @@ static void _call_f_setDefaultAction_1309 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->setDefaultAction (arg1); } @@ -729,7 +729,7 @@ static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->setIcon (arg1); } @@ -749,7 +749,7 @@ static void _call_f_setNoReplayFor_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->setNoReplayFor (arg1); } @@ -769,7 +769,7 @@ static void _call_f_setSeparatorsCollapsible_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->setSeparatorsCollapsible (arg1); } @@ -789,7 +789,7 @@ static void _call_f_setTearOffEnabled_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->setTearOffEnabled (arg1); } @@ -809,7 +809,7 @@ static void _call_f_setTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->setTitle (arg1); } @@ -829,7 +829,7 @@ static void _call_f_setToolTipsVisible_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu *)cls)->setToolTipsVisible (arg1); } @@ -900,10 +900,10 @@ static void _call_f_exec_5996 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QList arg1 = args.read > (heap); - const QPoint &arg2 = args.read (heap); - QAction *arg3 = args ? args.read (heap) : (QAction *)(0); - QWidget *arg4 = args ? args.read (heap) : (QWidget *)(0); + QList arg1 = gsi::arg_reader >() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); + QAction *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QAction *)QMenu::exec (arg1, arg2, arg3, arg4)); } @@ -926,9 +926,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMenu::tr (arg1, arg2, arg3)); } @@ -951,9 +951,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMenu::trUtf8 (arg1, arg2, arg3)); } @@ -1907,7 +1907,7 @@ static void _call_ctor_QMenu_Adaptor_1315 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMenu_Adaptor (arg1)); } @@ -1927,8 +1927,8 @@ static void _call_ctor_QMenu_Adaptor_3232 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMenu_Adaptor (arg1, arg2)); } @@ -2112,9 +2112,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->fp_QMenu_create_2208 (arg1, arg2, arg3); } @@ -2133,7 +2133,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QMenu_Adaptor *)cls)->emitter_QMenu_customContextMenuRequested_1916 (arg1); } @@ -2177,8 +2177,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->fp_QMenu_destroy_1620 (arg1, arg2); } @@ -2197,7 +2197,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMenu_Adaptor *)cls)->emitter_QMenu_destroyed_1302 (arg1); } @@ -2573,7 +2573,7 @@ static void _call_emitter_hovered_1309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QMenu_Adaptor *)cls)->emitter_QMenu_hovered_1309 (arg1); } @@ -2617,8 +2617,8 @@ static void _call_fp_initStyleOption_c4565 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionMenuItem *arg1 = args.read (heap); - const QAction *arg2 = args.read (heap); + QStyleOptionMenuItem *arg1 = gsi::arg_reader() (args, heap); + const QAction *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenu_Adaptor *)cls)->fp_QMenu_initStyleOption_c4565 (arg1, arg2); } @@ -2684,7 +2684,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenu_Adaptor *)cls)->fp_QMenu_isSignalConnected_c2394 (arg1)); } @@ -3008,7 +3008,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMenu_Adaptor *)cls)->fp_QMenu_receivers_c1731 (arg1)); } @@ -3235,7 +3235,7 @@ static void _call_emitter_triggered_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QMenu_Adaptor *)cls)->emitter_QMenu_triggered_1309 (arg1); } @@ -3292,7 +3292,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QMenu_Adaptor *)cls)->emitter_QMenu_windowIconChanged_1787 (arg1); } @@ -3310,7 +3310,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QMenu_Adaptor *)cls)->emitter_QMenu_windowIconTextChanged_2025 (arg1); } @@ -3328,7 +3328,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QMenu_Adaptor *)cls)->emitter_QMenu_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc index ad67813f8..0799b9d36 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMenuBar.cc @@ -116,7 +116,7 @@ static void _call_f_actionAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenuBar *)cls)->actionAt (arg1)); } @@ -135,7 +135,7 @@ static void _call_f_actionGeometry_c1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QMenuBar *)cls)->actionGeometry (arg1)); } @@ -169,7 +169,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar *)cls)->addAction (arg1); } @@ -189,7 +189,7 @@ static void _call_f_addAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenuBar *)cls)->addAction (arg1)); } @@ -212,9 +212,9 @@ static void _call_f_addAction_5537 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QObject *arg2 = args.read (heap); - const char *arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QObject *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenuBar *)cls)->addAction (arg1, arg2, arg3)); } @@ -233,7 +233,7 @@ static void _call_f_addMenu_1108 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenu *arg1 = args.read (heap); + QMenu *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenuBar *)cls)->addMenu (arg1)); } @@ -252,7 +252,7 @@ static void _call_f_addMenu_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMenu *)((QMenuBar *)cls)->addMenu (arg1)); } @@ -273,8 +273,8 @@ static void _call_f_addMenu_3704 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QMenu *)((QMenuBar *)cls)->addMenu (arg1, arg2)); } @@ -324,7 +324,7 @@ static void _call_f_cornerWidget_c1366 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner), heap); ret.write ((QWidget *)((QMenuBar *)cls)->cornerWidget (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -343,7 +343,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMenuBar *)cls)->heightForWidth (arg1)); } @@ -364,8 +364,8 @@ static void _call_f_insertMenu_2309 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - QMenu *arg2 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + QMenu *arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenuBar *)cls)->insertMenu (arg1, arg2)); } @@ -384,7 +384,7 @@ static void _call_f_insertSeparator_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QMenuBar *)cls)->insertSeparator (arg1)); } @@ -448,7 +448,7 @@ static void _call_f_setActiveAction_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar *)cls)->setActiveAction (arg1); } @@ -470,8 +470,8 @@ static void _call_f_setCornerWidget_2573 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar *)cls)->setCornerWidget (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -491,7 +491,7 @@ static void _call_f_setDefaultUp_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar *)cls)->setDefaultUp (arg1); } @@ -511,7 +511,7 @@ static void _call_f_setNativeMenuBar_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar *)cls)->setNativeMenuBar (arg1); } @@ -531,7 +531,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar *)cls)->setVisible (arg1); } @@ -570,9 +570,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMenuBar::tr (arg1, arg2, arg3)); } @@ -595,9 +595,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMenuBar::trUtf8 (arg1, arg2, arg3)); } @@ -1502,7 +1502,7 @@ static void _call_ctor_QMenuBar_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMenuBar_Adaptor (arg1)); } @@ -1644,9 +1644,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->fp_QMenuBar_create_2208 (arg1, arg2, arg3); } @@ -1665,7 +1665,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QMenuBar_Adaptor *)cls)->emitter_QMenuBar_customContextMenuRequested_1916 (arg1); } @@ -1709,8 +1709,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->fp_QMenuBar_destroy_1620 (arg1, arg2); } @@ -1729,7 +1729,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMenuBar_Adaptor *)cls)->emitter_QMenuBar_destroyed_1302 (arg1); } @@ -2105,7 +2105,7 @@ static void _call_emitter_hovered_1309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QMenuBar_Adaptor *)cls)->emitter_QMenuBar_hovered_1309 (arg1); } @@ -2149,8 +2149,8 @@ static void _call_fp_initStyleOption_c4565 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionMenuItem *arg1 = args.read (heap); - const QAction *arg2 = args.read (heap); + QStyleOptionMenuItem *arg1 = gsi::arg_reader() (args, heap); + const QAction *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMenuBar_Adaptor *)cls)->fp_QMenuBar_initStyleOption_c4565 (arg1, arg2); } @@ -2216,7 +2216,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMenuBar_Adaptor *)cls)->fp_QMenuBar_isSignalConnected_c2394 (arg1)); } @@ -2540,7 +2540,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMenuBar_Adaptor *)cls)->fp_QMenuBar_receivers_c1731 (arg1)); } @@ -2767,7 +2767,7 @@ static void _call_emitter_triggered_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QMenuBar_Adaptor *)cls)->emitter_QMenuBar_triggered_1309 (arg1); } @@ -2824,7 +2824,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QMenuBar_Adaptor *)cls)->emitter_QMenuBar_windowIconChanged_1787 (arg1); } @@ -2842,7 +2842,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QMenuBar_Adaptor *)cls)->emitter_QMenuBar_windowIconTextChanged_2025 (arg1); } @@ -2860,7 +2860,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QMenuBar_Adaptor *)cls)->emitter_QMenuBar_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc index 9ab4c5439..ebc563660 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQMessageBox.cc @@ -119,8 +119,8 @@ static void _call_f_addButton_4728 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->addButton (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -142,8 +142,8 @@ static void _call_f_addButton_4594 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPushButton *)((QMessageBox *)cls)->addButton (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -162,7 +162,7 @@ static void _call_f_addButton_3092 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPushButton *)((QMessageBox *)cls)->addButton (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -181,7 +181,7 @@ static void _call_f_button_c3092 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QAbstractButton *)((QMessageBox *)cls)->button (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -200,7 +200,7 @@ static void _call_f_buttonRole_c2159 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QMessageBox *)cls)->buttonRole (arg1))); } @@ -219,7 +219,7 @@ static void _call_f_buttonText_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QMessageBox *)cls)->buttonText (arg1)); } @@ -391,8 +391,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->open (arg1, arg2); } @@ -412,7 +412,7 @@ static void _call_f_removeButton_2159 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->removeButton (arg1); } @@ -434,8 +434,8 @@ static void _call_f_setButtonText_2684 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setButtonText (arg1, arg2); } @@ -455,7 +455,7 @@ static void _call_f_setCheckBox_1478 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QCheckBox *arg1 = args.read (heap); + QCheckBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setCheckBox (arg1); } @@ -475,7 +475,7 @@ static void _call_f_setDefaultButton_1755 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPushButton *arg1 = args.read (heap); + QPushButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setDefaultButton (arg1); } @@ -495,7 +495,7 @@ static void _call_f_setDefaultButton_3092 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setDefaultButton (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -515,7 +515,7 @@ static void _call_f_setDetailedText_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setDetailedText (arg1); } @@ -535,7 +535,7 @@ static void _call_f_setEscapeButton_2159 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setEscapeButton (arg1); } @@ -555,7 +555,7 @@ static void _call_f_setEscapeButton_3092 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setEscapeButton (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -575,7 +575,7 @@ static void _call_f_setIcon_2032 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setIcon (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -595,7 +595,7 @@ static void _call_f_setIconPixmap_2017 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setIconPixmap (arg1); } @@ -615,7 +615,7 @@ static void _call_f_setInformativeText_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setInformativeText (arg1); } @@ -635,7 +635,7 @@ static void _call_f_setStandardButtons_3788 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setStandardButtons (arg1); } @@ -655,7 +655,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setText (arg1); } @@ -675,7 +675,7 @@ static void _call_f_setTextFormat_1787 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setTextFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -695,7 +695,7 @@ static void _call_f_setTextInteractionFlags_3396 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setTextInteractionFlags (arg1); } @@ -715,7 +715,7 @@ static void _call_f_setWindowModality_2216 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setWindowModality (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -735,7 +735,7 @@ static void _call_f_setWindowTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox *)cls)->setWindowTitle (arg1); } @@ -755,7 +755,7 @@ static void _call_f_standardButton_c2159 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QMessageBox *)cls)->standardButton (arg1))); } @@ -838,9 +838,9 @@ static void _call_f_about_5149 (const qt_gsi::GenericStaticMethod * /*decl*/, gs { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QMessageBox::about (arg1, arg2, arg3); } @@ -862,8 +862,8 @@ static void _call_f_aboutQt_3232 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); __SUPPRESS_UNUSED_WARNING(ret); QMessageBox::aboutQt (arg1, arg2); } @@ -891,11 +891,11 @@ static void _call_f_critical_11813 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QMessageBox::Ok); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QMessageBox::Ok, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton), heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QMessageBox::critical (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()))); } @@ -922,11 +922,11 @@ static void _call_f_information_11813 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QMessageBox::Ok); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QMessageBox::Ok, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton), heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QMessageBox::information (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()))); } @@ -953,11 +953,11 @@ static void _call_f_question_11813 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QMessageBox::StandardButtons(QMessageBox::Yes | QMessageBox::No)); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QMessageBox::StandardButtons(QMessageBox::Yes | QMessageBox::No), heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton), heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QMessageBox::question (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()))); } @@ -980,9 +980,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMessageBox::tr (arg1, arg2, arg3)); } @@ -1005,9 +1005,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QMessageBox::trUtf8 (arg1, arg2, arg3)); } @@ -1034,11 +1034,11 @@ static void _call_f_warning_11813 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QMessageBox::Ok); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QMessageBox::Ok, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QMessageBox::NoButton), heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QMessageBox::warning (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref()))); } @@ -2100,7 +2100,7 @@ static void _call_ctor_QMessageBox_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QMessageBox_Adaptor (arg1)); } @@ -2128,12 +2128,12 @@ static void _call_ctor_QMessageBox_Adaptor_13140 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QMessageBox::NoButton); - QWidget *arg5 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QMessageBox::NoButton, heap); + QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint, heap); ret.write (new QMessageBox_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4, arg5, arg6)); } @@ -2165,14 +2165,14 @@ static void _call_ctor_QMessageBox_Adaptor_11437 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - int arg4 = args.read (heap); - int arg5 = args.read (heap); - int arg6 = args.read (heap); - QWidget *arg7 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg8 = args ? args.read > (heap) : (QFlags)(Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); + int arg6 = gsi::arg_reader() (args, heap); + QWidget *arg7 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg8 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint, heap); ret.write (new QMessageBox_Adaptor (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4, arg5, arg6, arg7, arg8)); } @@ -2248,7 +2248,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->fp_QMessageBox_adjustPosition_1315 (arg1); } @@ -2267,7 +2267,7 @@ static void _call_emitter_buttonClicked_2159 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractButton *arg1 = args.read (heap); + QAbstractButton *arg1 = gsi::arg_reader() (args, heap); ((QMessageBox_Adaptor *)cls)->emitter_QMessageBox_buttonClicked_2159 (arg1); } @@ -2385,9 +2385,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->fp_QMessageBox_create_2208 (arg1, arg2, arg3); } @@ -2406,7 +2406,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QMessageBox_Adaptor *)cls)->emitter_QMessageBox_customContextMenuRequested_1916 (arg1); } @@ -2450,8 +2450,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QMessageBox_Adaptor *)cls)->fp_QMessageBox_destroy_1620 (arg1, arg2); } @@ -2470,7 +2470,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QMessageBox_Adaptor *)cls)->emitter_QMessageBox_destroyed_1302 (arg1); } @@ -2724,7 +2724,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QMessageBox_Adaptor *)cls)->emitter_QMessageBox_finished_767 (arg1); } @@ -2978,7 +2978,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QMessageBox_Adaptor *)cls)->fp_QMessageBox_isSignalConnected_c2394 (arg1)); } @@ -3322,7 +3322,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QMessageBox_Adaptor *)cls)->fp_QMessageBox_receivers_c1731 (arg1)); } @@ -3622,7 +3622,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QMessageBox_Adaptor *)cls)->emitter_QMessageBox_windowIconChanged_1787 (arg1); } @@ -3640,7 +3640,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QMessageBox_Adaptor *)cls)->emitter_QMessageBox_windowIconTextChanged_2025 (arg1); } @@ -3658,7 +3658,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QMessageBox_Adaptor *)cls)->emitter_QMessageBox_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPanGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPanGesture.cc index 80d726df5..dbe3a1466 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPanGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPanGesture.cc @@ -130,7 +130,7 @@ static void _call_f_setAcceleration_1071 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture *)cls)->setAcceleration (arg1); } @@ -150,7 +150,7 @@ static void _call_f_setLastOffset_1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture *)cls)->setLastOffset (arg1); } @@ -170,7 +170,7 @@ static void _call_f_setOffset_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPanGesture *)cls)->setOffset (arg1); } @@ -194,9 +194,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPanGesture::tr (arg1, arg2, arg3)); } @@ -219,9 +219,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPanGesture::trUtf8 (arg1, arg2, arg3)); } @@ -413,7 +413,7 @@ static void _call_ctor_QPanGesture_Adaptor_1302 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPanGesture_Adaptor (arg1)); } @@ -479,7 +479,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPanGesture_Adaptor *)cls)->emitter_QPanGesture_destroyed_1302 (arg1); } @@ -570,7 +570,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPanGesture_Adaptor *)cls)->fp_QPanGesture_isSignalConnected_c2394 (arg1)); } @@ -588,7 +588,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPanGesture_Adaptor *)cls)->fp_QPanGesture_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPinchGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPinchGesture.cc index 491b74597..8dda7bec0 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPinchGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPinchGesture.cc @@ -175,7 +175,7 @@ static void _call_f_setCenterPoint_1986 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setCenterPoint (arg1); } @@ -195,7 +195,7 @@ static void _call_f_setChangeFlags_3522 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setChangeFlags (arg1); } @@ -215,7 +215,7 @@ static void _call_f_setLastCenterPoint_1986 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setLastCenterPoint (arg1); } @@ -235,7 +235,7 @@ static void _call_f_setLastRotationAngle_1071 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setLastRotationAngle (arg1); } @@ -255,7 +255,7 @@ static void _call_f_setLastScaleFactor_1071 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setLastScaleFactor (arg1); } @@ -275,7 +275,7 @@ static void _call_f_setRotationAngle_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setRotationAngle (arg1); } @@ -295,7 +295,7 @@ static void _call_f_setScaleFactor_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setScaleFactor (arg1); } @@ -315,7 +315,7 @@ static void _call_f_setStartCenterPoint_1986 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setStartCenterPoint (arg1); } @@ -335,7 +335,7 @@ static void _call_f_setTotalChangeFlags_3522 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setTotalChangeFlags (arg1); } @@ -355,7 +355,7 @@ static void _call_f_setTotalRotationAngle_1071 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setTotalRotationAngle (arg1); } @@ -375,7 +375,7 @@ static void _call_f_setTotalScaleFactor_1071 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPinchGesture *)cls)->setTotalScaleFactor (arg1); } @@ -459,9 +459,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPinchGesture::tr (arg1, arg2, arg3)); } @@ -484,9 +484,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPinchGesture::trUtf8 (arg1, arg2, arg3)); } @@ -693,7 +693,7 @@ static void _call_ctor_QPinchGesture_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPinchGesture_Adaptor (arg1)); } @@ -759,7 +759,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPinchGesture_Adaptor *)cls)->emitter_QPinchGesture_destroyed_1302 (arg1); } @@ -850,7 +850,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPinchGesture_Adaptor *)cls)->fp_QPinchGesture_isSignalConnected_c2394 (arg1)); } @@ -868,7 +868,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPinchGesture_Adaptor *)cls)->fp_QPinchGesture_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc index 6488eeb8b..105abfdbf 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextDocumentLayout.cc @@ -81,7 +81,7 @@ static void _call_f_blockBoundingRect_c2306 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPlainTextDocumentLayout *)cls)->blockBoundingRect (arg1)); } @@ -132,8 +132,8 @@ static void _call_f_draw_6787 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QAbstractTextDocumentLayout::PaintContext &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QAbstractTextDocumentLayout::PaintContext &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout *)cls)->draw (arg1, arg2); } @@ -153,7 +153,7 @@ static void _call_f_ensureBlockLayout_c2306 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout *)cls)->ensureBlockLayout (arg1); } @@ -173,7 +173,7 @@ static void _call_f_frameBoundingRect_c1615 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextFrame *arg1 = args.read (heap); + QTextFrame *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPlainTextDocumentLayout *)cls)->frameBoundingRect (arg1)); } @@ -194,8 +194,8 @@ static void _call_f_hitTest_c4147 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((int)((QPlainTextDocumentLayout *)cls)->hitTest (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -245,7 +245,7 @@ static void _call_f_setCursorWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextDocumentLayout *)cls)->setCursorWidth (arg1); } @@ -269,9 +269,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPlainTextDocumentLayout::tr (arg1, arg2, arg3)); } @@ -294,9 +294,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPlainTextDocumentLayout::trUtf8 (arg1, arg2, arg3)); } @@ -683,7 +683,7 @@ static void _call_ctor_QPlainTextDocumentLayout_Adaptor_1955 (const qt_gsi::Gene { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); ret.write (new QPlainTextDocumentLayout_Adaptor (arg1)); } @@ -772,7 +772,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPlainTextDocumentLayout_Adaptor *)cls)->emitter_QPlainTextDocumentLayout_destroyed_1302 (arg1); } @@ -863,7 +863,7 @@ static void _call_emitter_documentSizeChanged_1875 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizeF &arg1 = args.read (heap); + const QSizeF &arg1 = gsi::arg_reader() (args, heap); ((QPlainTextDocumentLayout_Adaptor *)cls)->emitter_QPlainTextDocumentLayout_documentSizeChanged_1875 (arg1); } @@ -993,7 +993,7 @@ static void _call_fp_format_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCharFormat)((QPlainTextDocumentLayout_Adaptor *)cls)->fp_QPlainTextDocumentLayout_format_767 (arg1)); } @@ -1011,7 +1011,7 @@ static void _call_fp_formatIndex_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPlainTextDocumentLayout_Adaptor *)cls)->fp_QPlainTextDocumentLayout_formatIndex_767 (arg1)); } @@ -1078,7 +1078,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextDocumentLayout_Adaptor *)cls)->fp_QPlainTextDocumentLayout_isSignalConnected_c2394 (arg1)); } @@ -1115,7 +1115,7 @@ static void _call_emitter_pageCountChanged_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPlainTextDocumentLayout_Adaptor *)cls)->emitter_QPlainTextDocumentLayout_pageCountChanged_767 (arg1); } @@ -1163,7 +1163,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPlainTextDocumentLayout_Adaptor *)cls)->fp_QPlainTextDocumentLayout_receivers_c1731 (arg1)); } @@ -1263,7 +1263,7 @@ static void _call_emitter_update_1862 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args ? args.read (heap) : (const QRectF &)(QRectF(0., 0., 1000000000., 1000000000.)); + const QRectF &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRectF(0., 0., 1000000000., 1000000000.), heap); ((QPlainTextDocumentLayout_Adaptor *)cls)->emitter_QPlainTextDocumentLayout_update_1862 (arg1); } @@ -1281,7 +1281,7 @@ static void _call_emitter_updateBlock_2306 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ((QPlainTextDocumentLayout_Adaptor *)cls)->emitter_QPlainTextDocumentLayout_updateBlock_2306 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc index 527d9a3d6..80d7b4074 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPlainTextEdit.cc @@ -127,7 +127,7 @@ static void _call_f_anchorAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QPlainTextEdit *)cls)->anchorAt (arg1)); } @@ -146,7 +146,7 @@ static void _call_f_appendHtml_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->appendHtml (arg1); } @@ -166,7 +166,7 @@ static void _call_f_appendPlainText_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->appendPlainText (arg1); } @@ -309,7 +309,7 @@ static void _call_f_createStandardContextMenu_1916 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMenu *)((QPlainTextEdit *)cls)->createStandardContextMenu (arg1)); } @@ -343,7 +343,7 @@ static void _call_f_cursorForPosition_c1916 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCursor)((QPlainTextEdit *)cls)->cursorForPosition (arg1)); } @@ -362,7 +362,7 @@ static void _call_f_cursorRect_c2453 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QPlainTextEdit *)cls)->cursorRect (arg1)); } @@ -490,8 +490,8 @@ static void _call_f_find_5261 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((bool)((QPlainTextEdit *)cls)->find (arg1, arg2)); } @@ -512,8 +512,8 @@ static void _call_f_find_5217 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((bool)((QPlainTextEdit *)cls)->find (arg1, arg2)); } @@ -532,7 +532,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QPlainTextEdit *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -553,8 +553,8 @@ static void _call_f_inputMethodQuery_c3554 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QVariant arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QVariant arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QPlainTextEdit *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -573,7 +573,7 @@ static void _call_f_insertPlainText_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->insertPlainText (arg1); } @@ -640,8 +640,8 @@ static void _call_f_loadResource_2360 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QPlainTextEdit *)cls)->loadResource (arg1, arg2)); } @@ -675,7 +675,7 @@ static void _call_f_mergeCurrentCharFormat_2814 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->mergeCurrentCharFormat (arg1); } @@ -697,8 +697,8 @@ static void _call_f_moveCursor_5424 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->moveCursor (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -764,7 +764,7 @@ static void _call_f_print_c2284 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPagedPaintDevice *arg1 = args.read (heap); + QPagedPaintDevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->print (arg1); } @@ -816,7 +816,7 @@ static void _call_f_setBackgroundVisible_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setBackgroundVisible (arg1); } @@ -836,7 +836,7 @@ static void _call_f_setCenterOnScroll_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setCenterOnScroll (arg1); } @@ -856,7 +856,7 @@ static void _call_f_setCurrentCharFormat_2814 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setCurrentCharFormat (arg1); } @@ -876,7 +876,7 @@ static void _call_f_setCursorWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setCursorWidth (arg1); } @@ -896,7 +896,7 @@ static void _call_f_setDocument_1955 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setDocument (arg1); } @@ -916,7 +916,7 @@ static void _call_f_setDocumentTitle_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setDocumentTitle (arg1); } @@ -936,7 +936,7 @@ static void _call_f_setExtraSelections_4386 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setExtraSelections (arg1); } @@ -956,7 +956,7 @@ static void _call_f_setLineWrapMode_3135 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setLineWrapMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -976,7 +976,7 @@ static void _call_f_setMaximumBlockCount_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setMaximumBlockCount (arg1); } @@ -996,7 +996,7 @@ static void _call_f_setOverwriteMode_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setOverwriteMode (arg1); } @@ -1016,7 +1016,7 @@ static void _call_f_setPlaceholderText_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setPlaceholderText (arg1); } @@ -1036,7 +1036,7 @@ static void _call_f_setPlainText_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setPlainText (arg1); } @@ -1056,7 +1056,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setReadOnly (arg1); } @@ -1076,7 +1076,7 @@ static void _call_f_setTabChangesFocus_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setTabChangesFocus (arg1); } @@ -1096,7 +1096,7 @@ static void _call_f_setTabStopWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setTabStopWidth (arg1); } @@ -1116,7 +1116,7 @@ static void _call_f_setTextCursor_2453 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setTextCursor (arg1); } @@ -1136,7 +1136,7 @@ static void _call_f_setTextInteractionFlags_3396 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setTextInteractionFlags (arg1); } @@ -1156,7 +1156,7 @@ static void _call_f_setUndoRedoEnabled_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setUndoRedoEnabled (arg1); } @@ -1176,7 +1176,7 @@ static void _call_f_setWordWrapMode_2486 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->setWordWrapMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1302,7 +1302,7 @@ static void _call_f_zoomIn_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->zoomIn (arg1); } @@ -1322,7 +1322,7 @@ static void _call_f_zoomOut_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit *)cls)->zoomOut (arg1); } @@ -1346,9 +1346,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPlainTextEdit::tr (arg1, arg2, arg3)); } @@ -1371,9 +1371,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPlainTextEdit::trUtf8 (arg1, arg2, arg3)); } @@ -2577,7 +2577,7 @@ static void _call_ctor_QPlainTextEdit_Adaptor_1315 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPlainTextEdit_Adaptor (arg1)); } @@ -2597,8 +2597,8 @@ static void _call_ctor_QPlainTextEdit_Adaptor_3232 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPlainTextEdit_Adaptor (arg1, arg2)); } @@ -2640,7 +2640,7 @@ static void _call_fp_blockBoundingGeometry_c2306 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_blockBoundingGeometry_c2306 (arg1)); } @@ -2658,7 +2658,7 @@ static void _call_fp_blockBoundingRect_c2306 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextBlock &arg1 = args.read (heap); + const QTextBlock &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRectF)((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_blockBoundingRect_c2306 (arg1)); } @@ -2676,7 +2676,7 @@ static void _call_emitter_blockCountChanged_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_blockCountChanged_767 (arg1); } @@ -2827,7 +2827,7 @@ static void _call_emitter_copyAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_copyAvailable_864 (arg1); } @@ -2849,9 +2849,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_create_2208 (arg1, arg2, arg3); } @@ -2903,7 +2903,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_customContextMenuRequested_1916 (arg1); } @@ -2947,8 +2947,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_destroy_1620 (arg1, arg2); } @@ -2967,7 +2967,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_destroyed_1302 (arg1); } @@ -3105,7 +3105,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_drawFrame_1426 (arg1); } @@ -3438,7 +3438,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_initStyleOption_c2356 (arg1); } @@ -3528,7 +3528,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_isSignalConnected_c2394 (arg1)); } @@ -3686,7 +3686,7 @@ static void _call_emitter_modificationChanged_864 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_modificationChanged_864 (arg1); } @@ -3896,7 +3896,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_receivers_c1731 (arg1)); } @@ -3937,7 +3937,7 @@ static void _call_emitter_redoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_redoAvailable_864 (arg1); } @@ -4054,10 +4054,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -4076,7 +4076,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_setViewportMargins_2115 (arg1); } @@ -4267,7 +4267,7 @@ static void _call_emitter_undoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_undoAvailable_864 (arg1); } @@ -4302,8 +4302,8 @@ static void _call_emitter_updateRequest_2451 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_updateRequest_2451 (arg1, arg2); } @@ -4401,7 +4401,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_windowIconChanged_1787 (arg1); } @@ -4419,7 +4419,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_windowIconTextChanged_2025 (arg1); } @@ -4437,7 +4437,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QPlainTextEdit_Adaptor *)cls)->emitter_QPlainTextEdit_windowTitleChanged_2025 (arg1); } @@ -4455,7 +4455,7 @@ static void _call_fp_zoomInF_970 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPlainTextEdit_Adaptor *)cls)->fp_QPlainTextEdit_zoomInF_970 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc index b290c8244..4ea4845a4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressBar.cc @@ -267,7 +267,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setAlignment (arg1); } @@ -287,7 +287,7 @@ static void _call_f_setFormat_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setFormat (arg1); } @@ -307,7 +307,7 @@ static void _call_f_setInvertedAppearance_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setInvertedAppearance (arg1); } @@ -327,7 +327,7 @@ static void _call_f_setMaximum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setMaximum (arg1); } @@ -347,7 +347,7 @@ static void _call_f_setMinimum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setMinimum (arg1); } @@ -367,7 +367,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -389,8 +389,8 @@ static void _call_f_setRange_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setRange (arg1, arg2); } @@ -410,7 +410,7 @@ static void _call_f_setTextDirection_2692 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setTextDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -430,7 +430,7 @@ static void _call_f_setTextVisible_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setTextVisible (arg1); } @@ -450,7 +450,7 @@ static void _call_f_setValue_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar *)cls)->setValue (arg1); } @@ -534,9 +534,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QProgressBar::tr (arg1, arg2, arg3)); } @@ -559,9 +559,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QProgressBar::trUtf8 (arg1, arg2, arg3)); } @@ -1475,7 +1475,7 @@ static void _call_ctor_QProgressBar_Adaptor_1315 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QProgressBar_Adaptor (arg1)); } @@ -1617,9 +1617,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->fp_QProgressBar_create_2208 (arg1, arg2, arg3); } @@ -1638,7 +1638,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QProgressBar_Adaptor *)cls)->emitter_QProgressBar_customContextMenuRequested_1916 (arg1); } @@ -1682,8 +1682,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->fp_QProgressBar_destroy_1620 (arg1, arg2); } @@ -1702,7 +1702,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QProgressBar_Adaptor *)cls)->emitter_QProgressBar_destroyed_1302 (arg1); } @@ -2102,7 +2102,7 @@ static void _call_fp_initStyleOption_c2995 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionProgressBar *arg1 = args.read (heap); + QStyleOptionProgressBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressBar_Adaptor *)cls)->fp_QProgressBar_initStyleOption_c2995 (arg1); } @@ -2168,7 +2168,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressBar_Adaptor *)cls)->fp_QProgressBar_isSignalConnected_c2394 (arg1)); } @@ -2492,7 +2492,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QProgressBar_Adaptor *)cls)->fp_QProgressBar_receivers_c1731 (arg1)); } @@ -2753,7 +2753,7 @@ static void _call_emitter_valueChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QProgressBar_Adaptor *)cls)->emitter_QProgressBar_valueChanged_767 (arg1); } @@ -2795,7 +2795,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QProgressBar_Adaptor *)cls)->emitter_QProgressBar_windowIconChanged_1787 (arg1); } @@ -2813,7 +2813,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QProgressBar_Adaptor *)cls)->emitter_QProgressBar_windowIconTextChanged_2025 (arg1); } @@ -2831,7 +2831,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QProgressBar_Adaptor *)cls)->emitter_QProgressBar_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc index 6b3308a11..21009607e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQProgressDialog.cc @@ -241,8 +241,8 @@ static void _call_f_open_2925 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const char *arg2 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->open (arg1, arg2); } @@ -278,7 +278,7 @@ static void _call_f_setAutoClose_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setAutoClose (arg1); } @@ -298,7 +298,7 @@ static void _call_f_setAutoReset_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setAutoReset (arg1); } @@ -318,7 +318,7 @@ static void _call_f_setBar_1833 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QProgressBar *arg1 = args.read (heap); + QProgressBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setBar (arg1); } @@ -338,7 +338,7 @@ static void _call_f_setCancelButton_1755 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPushButton *arg1 = args.read (heap); + QPushButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setCancelButton (arg1); } @@ -358,7 +358,7 @@ static void _call_f_setCancelButtonText_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setCancelButtonText (arg1); } @@ -378,7 +378,7 @@ static void _call_f_setLabel_1183 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLabel *arg1 = args.read (heap); + QLabel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setLabel (arg1); } @@ -398,7 +398,7 @@ static void _call_f_setLabelText_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setLabelText (arg1); } @@ -418,7 +418,7 @@ static void _call_f_setMaximum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setMaximum (arg1); } @@ -438,7 +438,7 @@ static void _call_f_setMinimum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setMinimum (arg1); } @@ -458,7 +458,7 @@ static void _call_f_setMinimumDuration_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setMinimumDuration (arg1); } @@ -480,8 +480,8 @@ static void _call_f_setRange_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setRange (arg1, arg2); } @@ -501,7 +501,7 @@ static void _call_f_setValue_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog *)cls)->setValue (arg1); } @@ -570,9 +570,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QProgressDialog::tr (arg1, arg2, arg3)); } @@ -595,9 +595,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QProgressDialog::trUtf8 (arg1, arg2, arg3)); } @@ -1628,8 +1628,8 @@ static void _call_ctor_QProgressDialog_Adaptor_3702 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QProgressDialog_Adaptor (arg1, arg2)); } @@ -1657,12 +1657,12 @@ static void _call_ctor_QProgressDialog_Adaptor_8854 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - QWidget *arg5 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg6 = args ? args.read > (heap) : (QFlags)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg6 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QProgressDialog_Adaptor (arg1, arg2, arg3, arg4, arg5, arg6)); } @@ -1738,7 +1738,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->fp_QProgressDialog_adjustPosition_1315 (arg1); } @@ -1871,9 +1871,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->fp_QProgressDialog_create_2208 (arg1, arg2, arg3); } @@ -1892,7 +1892,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QProgressDialog_Adaptor *)cls)->emitter_QProgressDialog_customContextMenuRequested_1916 (arg1); } @@ -1936,8 +1936,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QProgressDialog_Adaptor *)cls)->fp_QProgressDialog_destroy_1620 (arg1, arg2); } @@ -1956,7 +1956,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QProgressDialog_Adaptor *)cls)->emitter_QProgressDialog_destroyed_1302 (arg1); } @@ -2210,7 +2210,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QProgressDialog_Adaptor *)cls)->emitter_QProgressDialog_finished_767 (arg1); } @@ -2479,7 +2479,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QProgressDialog_Adaptor *)cls)->fp_QProgressDialog_isSignalConnected_c2394 (arg1)); } @@ -2823,7 +2823,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QProgressDialog_Adaptor *)cls)->fp_QProgressDialog_receivers_c1731 (arg1)); } @@ -3123,7 +3123,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QProgressDialog_Adaptor *)cls)->emitter_QProgressDialog_windowIconChanged_1787 (arg1); } @@ -3141,7 +3141,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QProgressDialog_Adaptor *)cls)->emitter_QProgressDialog_windowIconTextChanged_2025 (arg1); } @@ -3159,7 +3159,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QProgressDialog_Adaptor *)cls)->emitter_QProgressDialog_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc index 9c25ff83f..205715336 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQPushButton.cc @@ -192,7 +192,7 @@ static void _call_f_setAutoDefault_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton *)cls)->setAutoDefault (arg1); } @@ -212,7 +212,7 @@ static void _call_f_setDefault_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton *)cls)->setDefault (arg1); } @@ -232,7 +232,7 @@ static void _call_f_setFlat_864 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton *)cls)->setFlat (arg1); } @@ -252,7 +252,7 @@ static void _call_f_setMenu_1108 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenu *arg1 = args.read (heap); + QMenu *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton *)cls)->setMenu (arg1); } @@ -307,9 +307,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPushButton::tr (arg1, arg2, arg3)); } @@ -332,9 +332,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QPushButton::trUtf8 (arg1, arg2, arg3)); } @@ -1312,7 +1312,7 @@ static void _call_ctor_QPushButton_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPushButton_Adaptor (arg1)); } @@ -1332,8 +1332,8 @@ static void _call_ctor_QPushButton_Adaptor_3232 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPushButton_Adaptor (arg1, arg2)); } @@ -1355,9 +1355,9 @@ static void _call_ctor_QPushButton_Adaptor_4911 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QPushButton_Adaptor (arg1, arg2, arg3)); } @@ -1467,7 +1467,7 @@ static void _call_emitter_clicked_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QPushButton_Adaptor *)cls)->emitter_QPushButton_clicked_864 (arg1); } @@ -1537,9 +1537,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->fp_QPushButton_create_2208 (arg1, arg2, arg3); } @@ -1558,7 +1558,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QPushButton_Adaptor *)cls)->emitter_QPushButton_customContextMenuRequested_1916 (arg1); } @@ -1602,8 +1602,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->fp_QPushButton_destroy_1620 (arg1, arg2); } @@ -1622,7 +1622,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QPushButton_Adaptor *)cls)->emitter_QPushButton_destroyed_1302 (arg1); } @@ -2045,7 +2045,7 @@ static void _call_fp_initStyleOption_c2501 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionButton *arg1 = args.read (heap); + QStyleOptionButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QPushButton_Adaptor *)cls)->fp_QPushButton_initStyleOption_c2501 (arg1); } @@ -2111,7 +2111,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QPushButton_Adaptor *)cls)->fp_QPushButton_isSignalConnected_c2394 (arg1)); } @@ -2469,7 +2469,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QPushButton_Adaptor *)cls)->fp_QPushButton_receivers_c1731 (arg1)); } @@ -2710,7 +2710,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QPushButton_Adaptor *)cls)->emitter_QPushButton_toggled_864 (arg1); } @@ -2767,7 +2767,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QPushButton_Adaptor *)cls)->emitter_QPushButton_windowIconChanged_1787 (arg1); } @@ -2785,7 +2785,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QPushButton_Adaptor *)cls)->emitter_QPushButton_windowIconTextChanged_2025 (arg1); } @@ -2803,7 +2803,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QPushButton_Adaptor *)cls)->emitter_QPushButton_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc index e48b5b3ed..2653a9cde 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQRadioButton.cc @@ -150,9 +150,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRadioButton::tr (arg1, arg2, arg3)); } @@ -175,9 +175,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRadioButton::trUtf8 (arg1, arg2, arg3)); } @@ -1134,7 +1134,7 @@ static void _call_ctor_QRadioButton_Adaptor_1315 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QRadioButton_Adaptor (arg1)); } @@ -1154,8 +1154,8 @@ static void _call_ctor_QRadioButton_Adaptor_3232 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QRadioButton_Adaptor (arg1, arg2)); } @@ -1265,7 +1265,7 @@ static void _call_emitter_clicked_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QRadioButton_Adaptor *)cls)->emitter_QRadioButton_clicked_864 (arg1); } @@ -1335,9 +1335,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->fp_QRadioButton_create_2208 (arg1, arg2, arg3); } @@ -1356,7 +1356,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QRadioButton_Adaptor *)cls)->emitter_QRadioButton_customContextMenuRequested_1916 (arg1); } @@ -1400,8 +1400,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->fp_QRadioButton_destroy_1620 (arg1, arg2); } @@ -1420,7 +1420,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QRadioButton_Adaptor *)cls)->emitter_QRadioButton_destroyed_1302 (arg1); } @@ -1843,7 +1843,7 @@ static void _call_fp_initStyleOption_c2501 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionButton *arg1 = args.read (heap); + QStyleOptionButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRadioButton_Adaptor *)cls)->fp_QRadioButton_initStyleOption_c2501 (arg1); } @@ -1909,7 +1909,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRadioButton_Adaptor *)cls)->fp_QRadioButton_isSignalConnected_c2394 (arg1)); } @@ -2267,7 +2267,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRadioButton_Adaptor *)cls)->fp_QRadioButton_receivers_c1731 (arg1)); } @@ -2508,7 +2508,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QRadioButton_Adaptor *)cls)->emitter_QRadioButton_toggled_864 (arg1); } @@ -2565,7 +2565,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QRadioButton_Adaptor *)cls)->emitter_QRadioButton_windowIconChanged_1787 (arg1); } @@ -2583,7 +2583,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QRadioButton_Adaptor *)cls)->emitter_QRadioButton_windowIconTextChanged_2025 (arg1); } @@ -2601,7 +2601,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QRadioButton_Adaptor *)cls)->emitter_QRadioButton_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc index 1d05abe66..7106c8acb 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQRubberBand.cc @@ -117,8 +117,8 @@ static void _call_f_move_1426 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand *)cls)->move (arg1, arg2); } @@ -138,7 +138,7 @@ static void _call_f_move_1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand *)cls)->move (arg1); } @@ -160,8 +160,8 @@ static void _call_f_resize_1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand *)cls)->resize (arg1, arg2); } @@ -181,7 +181,7 @@ static void _call_f_resize_1805 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand *)cls)->resize (arg1); } @@ -201,7 +201,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand *)cls)->setGeometry (arg1); } @@ -227,10 +227,10 @@ static void _call_f_setGeometry_2744 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand *)cls)->setGeometry (arg1, arg2, arg3, arg4); } @@ -269,9 +269,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRubberBand::tr (arg1, arg2, arg3)); } @@ -294,9 +294,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QRubberBand::trUtf8 (arg1, arg2, arg3)); } @@ -1172,8 +1172,8 @@ static void _call_ctor_QRubberBand_Adaptor_3320 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QRubberBand_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1315,9 +1315,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->fp_QRubberBand_create_2208 (arg1, arg2, arg3); } @@ -1336,7 +1336,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QRubberBand_Adaptor *)cls)->emitter_QRubberBand_customContextMenuRequested_1916 (arg1); } @@ -1380,8 +1380,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->fp_QRubberBand_destroy_1620 (arg1, arg2); } @@ -1400,7 +1400,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QRubberBand_Adaptor *)cls)->emitter_QRubberBand_destroyed_1302 (arg1); } @@ -1800,7 +1800,7 @@ static void _call_fp_initStyleOption_c2848 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionRubberBand *arg1 = args.read (heap); + QStyleOptionRubberBand *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QRubberBand_Adaptor *)cls)->fp_QRubberBand_initStyleOption_c2848 (arg1); } @@ -1866,7 +1866,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QRubberBand_Adaptor *)cls)->fp_QRubberBand_isSignalConnected_c2394 (arg1)); } @@ -2190,7 +2190,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QRubberBand_Adaptor *)cls)->fp_QRubberBand_receivers_c1731 (arg1)); } @@ -2456,7 +2456,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QRubberBand_Adaptor *)cls)->emitter_QRubberBand_windowIconChanged_1787 (arg1); } @@ -2474,7 +2474,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QRubberBand_Adaptor *)cls)->emitter_QRubberBand_windowIconTextChanged_2025 (arg1); } @@ -2492,7 +2492,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QRubberBand_Adaptor *)cls)->emitter_QRubberBand_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc index 5c3495b75..ef4873c9e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollArea.cc @@ -137,10 +137,10 @@ static void _call_f_ensureVisible_2744 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(50); - int arg4 = args ? args.read (heap) : (int)(50); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea *)cls)->ensureVisible (arg1, arg2, arg3, arg4); } @@ -164,9 +164,9 @@ static void _call_f_ensureWidgetVisible_2633 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(50); - int arg3 = args ? args.read (heap) : (int)(50); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea *)cls)->ensureWidgetVisible (arg1, arg2, arg3); } @@ -186,7 +186,7 @@ static void _call_f_focusNextPrevChild_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea *)cls)->focusNextPrevChild (arg1)); } @@ -205,7 +205,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea *)cls)->setAlignment (arg1); } @@ -225,7 +225,7 @@ static void _call_f_setWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea *)cls)->setWidget (arg1); } @@ -245,7 +245,7 @@ static void _call_f_setWidgetResizable_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea *)cls)->setWidgetResizable (arg1); } @@ -329,9 +329,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QScrollArea::tr (arg1, arg2, arg3)); } @@ -354,9 +354,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QScrollArea::trUtf8 (arg1, arg2, arg3)); } @@ -1318,7 +1318,7 @@ static void _call_ctor_QScrollArea_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QScrollArea_Adaptor (arg1)); } @@ -1460,9 +1460,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->fp_QScrollArea_create_2208 (arg1, arg2, arg3); } @@ -1481,7 +1481,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QScrollArea_Adaptor *)cls)->emitter_QScrollArea_customContextMenuRequested_1916 (arg1); } @@ -1525,8 +1525,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->fp_QScrollArea_destroy_1620 (arg1, arg2); } @@ -1545,7 +1545,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QScrollArea_Adaptor *)cls)->emitter_QScrollArea_destroyed_1302 (arg1); } @@ -1659,7 +1659,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->fp_QScrollArea_drawFrame_1426 (arg1); } @@ -1964,7 +1964,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->fp_QScrollArea_initStyleOption_c2356 (arg1); } @@ -2030,7 +2030,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollArea_Adaptor *)cls)->fp_QScrollArea_isSignalConnected_c2394 (arg1)); } @@ -2354,7 +2354,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QScrollArea_Adaptor *)cls)->fp_QScrollArea_receivers_c1731 (arg1)); } @@ -2480,10 +2480,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->fp_QScrollArea_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -2502,7 +2502,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollArea_Adaptor *)cls)->fp_QScrollArea_setViewportMargins_2115 (arg1); } @@ -2774,7 +2774,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QScrollArea_Adaptor *)cls)->emitter_QScrollArea_windowIconChanged_1787 (arg1); } @@ -2792,7 +2792,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QScrollArea_Adaptor *)cls)->emitter_QScrollArea_windowIconTextChanged_2025 (arg1); } @@ -2810,7 +2810,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QScrollArea_Adaptor *)cls)->emitter_QScrollArea_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc index a6c0d70d5..6a0ca6f88 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollBar.cc @@ -115,7 +115,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollBar *)cls)->event (arg1)); } @@ -153,9 +153,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QScrollBar::tr (arg1, arg2, arg3)); } @@ -178,9 +178,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QScrollBar::trUtf8 (arg1, arg2, arg3)); } @@ -1129,7 +1129,7 @@ static void _call_ctor_QScrollBar_Adaptor_1315 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QScrollBar_Adaptor (arg1)); } @@ -1149,8 +1149,8 @@ static void _call_ctor_QScrollBar_Adaptor_3120 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QScrollBar_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1192,7 +1192,7 @@ static void _call_emitter_actionTriggered_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QScrollBar_Adaptor *)cls)->emitter_QScrollBar_actionTriggered_767 (arg1); } @@ -1310,9 +1310,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->fp_QScrollBar_create_2208 (arg1, arg2, arg3); } @@ -1331,7 +1331,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QScrollBar_Adaptor *)cls)->emitter_QScrollBar_customContextMenuRequested_1916 (arg1); } @@ -1375,8 +1375,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->fp_QScrollBar_destroy_1620 (arg1, arg2); } @@ -1395,7 +1395,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QScrollBar_Adaptor *)cls)->emitter_QScrollBar_destroyed_1302 (arg1); } @@ -1795,7 +1795,7 @@ static void _call_fp_initStyleOption_c2476 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSlider *arg1 = args.read (heap); + QStyleOptionSlider *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->fp_QScrollBar_initStyleOption_c2476 (arg1); } @@ -1861,7 +1861,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollBar_Adaptor *)cls)->fp_QScrollBar_isSignalConnected_c2394 (arg1)); } @@ -2187,8 +2187,8 @@ static void _call_emitter_rangeChanged_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QScrollBar_Adaptor *)cls)->emitter_QScrollBar_rangeChanged_1426 (arg1, arg2); } @@ -2206,7 +2206,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QScrollBar_Adaptor *)cls)->fp_QScrollBar_receivers_c1731 (arg1)); } @@ -2317,9 +2317,9 @@ static void _call_fp_setRepeatAction_4599 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args ? args.read (heap) : (int)(500); - int arg3 = args ? args.read (heap) : (int)(50); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (500, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollBar_Adaptor *)cls)->fp_QScrollBar_setRepeatAction_4599 (arg1, arg2, arg3); } @@ -2448,7 +2448,7 @@ static void _call_emitter_sliderMoved_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QScrollBar_Adaptor *)cls)->emitter_QScrollBar_sliderMoved_767 (arg1); } @@ -2557,7 +2557,7 @@ static void _call_emitter_valueChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QScrollBar_Adaptor *)cls)->emitter_QScrollBar_valueChanged_767 (arg1); } @@ -2599,7 +2599,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QScrollBar_Adaptor *)cls)->emitter_QScrollBar_windowIconChanged_1787 (arg1); } @@ -2617,7 +2617,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QScrollBar_Adaptor *)cls)->emitter_QScrollBar_windowIconTextChanged_2025 (arg1); } @@ -2635,7 +2635,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QScrollBar_Adaptor *)cls)->emitter_QScrollBar_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQScroller.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQScroller.cc index ab44d71d3..ef3e84380 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQScroller.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQScroller.cc @@ -74,9 +74,9 @@ static void _call_f_ensureVisible_3788 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScroller *)cls)->ensureVisible (arg1, arg2, arg3); } @@ -102,10 +102,10 @@ static void _call_f_ensureVisible_4447 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRectF &arg1 = args.read (heap); - double arg2 = args.read (heap); - double arg3 = args.read (heap); - int arg4 = args.read (heap); + const QRectF &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScroller *)cls)->ensureVisible (arg1, arg2, arg3, arg4); } @@ -144,9 +144,9 @@ static void _call_f_handleInput_4755 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPointF &arg2 = args.read (heap); - qint64 arg3 = args ? args.read (heap) : (qint64)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPointF &arg2 = gsi::arg_reader() (args, heap); + qint64 arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QScroller *)cls)->handleInput (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -196,7 +196,7 @@ static void _call_f_scrollTo_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScroller *)cls)->scrollTo (arg1); } @@ -218,8 +218,8 @@ static void _call_f_scrollTo_2645 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScroller *)cls)->scrollTo (arg1, arg2); } @@ -254,7 +254,7 @@ static void _call_f_setScrollerProperties_3301 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QScrollerProperties &arg1 = args.read (heap); + const QScrollerProperties &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScroller *)cls)->setScrollerProperties (arg1); } @@ -274,7 +274,7 @@ static void _call_f_setSnapPositionsX_2461 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScroller *)cls)->setSnapPositionsX (arg1); } @@ -296,8 +296,8 @@ static void _call_f_setSnapPositionsX_2034 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScroller *)cls)->setSnapPositionsX (arg1, arg2); } @@ -317,7 +317,7 @@ static void _call_f_setSnapPositionsY_2461 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScroller *)cls)->setSnapPositionsY (arg1); } @@ -339,8 +339,8 @@ static void _call_f_setSnapPositionsY_2034 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); - double arg2 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScroller *)cls)->setSnapPositionsY (arg1, arg2); } @@ -438,8 +438,8 @@ static void _call_f_grabGesture_4656 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QScroller::TouchGesture)); + QObject *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QScroller::TouchGesture), heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QScroller::grabGesture (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()))); } @@ -458,7 +458,7 @@ static void _call_f_grabbedGesture_1302 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(QScroller::grabbedGesture (arg1))); } @@ -477,7 +477,7 @@ static void _call_f_hasScroller_1302 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QScroller::hasScroller (arg1)); } @@ -496,7 +496,7 @@ static void _call_f_scroller_1302 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((QScroller *)QScroller::scroller (arg1)); } @@ -515,7 +515,7 @@ static void _call_f_scroller_1997 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QObject *arg1 = args.read (heap); + const QObject *arg1 = gsi::arg_reader() (args, heap); ret.write ((const QScroller *)QScroller::scroller (arg1)); } @@ -538,9 +538,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QScroller::tr (arg1, arg2, arg3)); } @@ -563,9 +563,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QScroller::trUtf8 (arg1, arg2, arg3)); } @@ -584,7 +584,7 @@ static void _call_f_ungrabGesture_1302 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QScroller::ungrabGesture (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollerProperties.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollerProperties.cc index a98d78e52..2ec719348 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollerProperties.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQScrollerProperties.cc @@ -50,7 +50,7 @@ static void _call_f_operator_excl__eq__c3301 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QScrollerProperties &arg1 = args.read (heap); + const QScrollerProperties &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollerProperties *)cls)->operator!= (arg1)); } @@ -69,7 +69,7 @@ static void _call_f_operator_eq__3301 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QScrollerProperties &arg1 = args.read (heap); + const QScrollerProperties &arg1 = gsi::arg_reader() (args, heap); ret.write ((QScrollerProperties &)((QScrollerProperties *)cls)->operator= (arg1)); } @@ -88,7 +88,7 @@ static void _call_f_operator_eq__eq__c3301 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QScrollerProperties &arg1 = args.read (heap); + const QScrollerProperties &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QScrollerProperties *)cls)->operator== (arg1)); } @@ -107,7 +107,7 @@ static void _call_f_scrollMetric_c3775 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QScrollerProperties *)cls)->scrollMetric (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -128,8 +128,8 @@ static void _call_f_setScrollMetric_5786 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QVariant &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QScrollerProperties *)cls)->setScrollMetric (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -149,7 +149,7 @@ static void _call_f_setDefaultScrollerProperties_3301 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QScrollerProperties &arg1 = args.read (heap); + const QScrollerProperties &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QScrollerProperties::setDefaultScrollerProperties (arg1); } @@ -245,7 +245,7 @@ static void _call_ctor_QScrollerProperties_Adaptor_3301 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QScrollerProperties &arg1 = args.read (heap); + const QScrollerProperties &arg1 = gsi::arg_reader() (args, heap); ret.write (new QScrollerProperties_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQShortcut.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQShortcut.cc index 97ddebdfb..428e77c7e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQShortcut.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQShortcut.cc @@ -161,7 +161,7 @@ static void _call_f_setAutoRepeat_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut *)cls)->setAutoRepeat (arg1); } @@ -181,7 +181,7 @@ static void _call_f_setContext_2350 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut *)cls)->setContext (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -201,7 +201,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut *)cls)->setEnabled (arg1); } @@ -221,7 +221,7 @@ static void _call_f_setKey_2516 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut *)cls)->setKey (arg1); } @@ -241,7 +241,7 @@ static void _call_f_setWhatsThis_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QShortcut *)cls)->setWhatsThis (arg1); } @@ -280,9 +280,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QShortcut::tr (arg1, arg2, arg3)); } @@ -305,9 +305,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QShortcut::trUtf8 (arg1, arg2, arg3)); } @@ -536,7 +536,7 @@ static void _call_ctor_QShortcut_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QShortcut_Adaptor (arg1)); } @@ -562,11 +562,11 @@ static void _call_ctor_QShortcut_Adaptor_9211 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const char *arg3 = args ? args.read (heap) : (const char *)(0); - const char *arg4 = args ? args.read (heap) : (const char *)(0); - const qt_gsi::Converter::target_type & arg5 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::WindowShortcut)); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const char *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const qt_gsi::Converter::target_type & arg5 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::WindowShortcut), heap); ret.write (new QShortcut_Adaptor (arg1, arg2, arg3, arg4, qt_gsi::QtToCppAdaptor(arg5).cref())); } @@ -660,7 +660,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QShortcut_Adaptor *)cls)->emitter_QShortcut_destroyed_1302 (arg1); } @@ -751,7 +751,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QShortcut_Adaptor *)cls)->fp_QShortcut_isSignalConnected_c2394 (arg1)); } @@ -769,7 +769,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QShortcut_Adaptor *)cls)->fp_QShortcut_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc index b135182a9..e5907b937 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSizeGrip.cc @@ -114,7 +114,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip *)cls)->setVisible (arg1); } @@ -153,9 +153,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSizeGrip::tr (arg1, arg2, arg3)); } @@ -178,9 +178,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSizeGrip::trUtf8 (arg1, arg2, arg3)); } @@ -1038,7 +1038,7 @@ static void _call_ctor_QSizeGrip_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QSizeGrip_Adaptor (arg1)); } @@ -1180,9 +1180,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->fp_QSizeGrip_create_2208 (arg1, arg2, arg3); } @@ -1201,7 +1201,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QSizeGrip_Adaptor *)cls)->emitter_QSizeGrip_customContextMenuRequested_1916 (arg1); } @@ -1245,8 +1245,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizeGrip_Adaptor *)cls)->fp_QSizeGrip_destroy_1620 (arg1, arg2); } @@ -1265,7 +1265,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSizeGrip_Adaptor *)cls)->emitter_QSizeGrip_destroyed_1302 (arg1); } @@ -1712,7 +1712,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSizeGrip_Adaptor *)cls)->fp_QSizeGrip_isSignalConnected_c2394 (arg1)); } @@ -2036,7 +2036,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSizeGrip_Adaptor *)cls)->fp_QSizeGrip_receivers_c1731 (arg1)); } @@ -2302,7 +2302,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QSizeGrip_Adaptor *)cls)->emitter_QSizeGrip_windowIconChanged_1787 (arg1); } @@ -2320,7 +2320,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSizeGrip_Adaptor *)cls)->emitter_QSizeGrip_windowIconTextChanged_2025 (arg1); } @@ -2338,7 +2338,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSizeGrip_Adaptor *)cls)->emitter_QSizeGrip_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSizePolicy.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSizePolicy.cc index 78b965e5d..a60b093f4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSizePolicy.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSizePolicy.cc @@ -69,9 +69,9 @@ static void _call_ctor_QSizePolicy_7191 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::DefaultType)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::DefaultType), heap); ret.write (new QSizePolicy (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref())); } @@ -180,7 +180,7 @@ static void _call_f_operator_excl__eq__c2429 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizePolicy &arg1 = args.read (heap); + const QSizePolicy &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSizePolicy *)cls)->operator!= (arg1)); } @@ -199,7 +199,7 @@ static void _call_f_operator_eq__eq__c2429 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSizePolicy &arg1 = args.read (heap); + const QSizePolicy &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSizePolicy *)cls)->operator== (arg1)); } @@ -233,7 +233,7 @@ static void _call_f_setControlType_2823 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizePolicy *)cls)->setControlType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -253,7 +253,7 @@ static void _call_f_setHeightForWidth_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizePolicy *)cls)->setHeightForWidth (arg1); } @@ -273,7 +273,7 @@ static void _call_f_setHorizontalPolicy_2292 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizePolicy *)cls)->setHorizontalPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -293,7 +293,7 @@ static void _call_f_setHorizontalStretch_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizePolicy *)cls)->setHorizontalStretch (arg1); } @@ -313,7 +313,7 @@ static void _call_f_setRetainSizeWhenHidden_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizePolicy *)cls)->setRetainSizeWhenHidden (arg1); } @@ -333,7 +333,7 @@ static void _call_f_setVerticalPolicy_2292 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizePolicy *)cls)->setVerticalPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -353,7 +353,7 @@ static void _call_f_setVerticalStretch_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizePolicy *)cls)->setVerticalStretch (arg1); } @@ -373,7 +373,7 @@ static void _call_f_setWidthForHeight_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSizePolicy *)cls)->setWidthForHeight (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc index 66f6032c8..6dd4efe57 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSlider.cc @@ -115,7 +115,7 @@ static void _call_f_event_1217 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSlider *)cls)->event (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_setTickInterval_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider *)cls)->setTickInterval (arg1); } @@ -169,7 +169,7 @@ static void _call_f_setTickPosition_2492 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider *)cls)->setTickPosition (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -238,9 +238,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSlider::tr (arg1, arg2, arg3)); } @@ -263,9 +263,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSlider::trUtf8 (arg1, arg2, arg3)); } @@ -1219,7 +1219,7 @@ static void _call_ctor_QSlider_Adaptor_1315 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSlider_Adaptor (arg1)); } @@ -1239,8 +1239,8 @@ static void _call_ctor_QSlider_Adaptor_3120 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSlider_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1282,7 +1282,7 @@ static void _call_emitter_actionTriggered_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSlider_Adaptor *)cls)->emitter_QSlider_actionTriggered_767 (arg1); } @@ -1400,9 +1400,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->fp_QSlider_create_2208 (arg1, arg2, arg3); } @@ -1421,7 +1421,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QSlider_Adaptor *)cls)->emitter_QSlider_customContextMenuRequested_1916 (arg1); } @@ -1465,8 +1465,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->fp_QSlider_destroy_1620 (arg1, arg2); } @@ -1485,7 +1485,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSlider_Adaptor *)cls)->emitter_QSlider_destroyed_1302 (arg1); } @@ -1885,7 +1885,7 @@ static void _call_fp_initStyleOption_c2476 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSlider *arg1 = args.read (heap); + QStyleOptionSlider *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->fp_QSlider_initStyleOption_c2476 (arg1); } @@ -1951,7 +1951,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSlider_Adaptor *)cls)->fp_QSlider_isSignalConnected_c2394 (arg1)); } @@ -2277,8 +2277,8 @@ static void _call_emitter_rangeChanged_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QSlider_Adaptor *)cls)->emitter_QSlider_rangeChanged_1426 (arg1, arg2); } @@ -2296,7 +2296,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSlider_Adaptor *)cls)->fp_QSlider_receivers_c1731 (arg1)); } @@ -2407,9 +2407,9 @@ static void _call_fp_setRepeatAction_4599 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - int arg2 = args ? args.read (heap) : (int)(500); - int arg3 = args ? args.read (heap) : (int)(50); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (500, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (50, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSlider_Adaptor *)cls)->fp_QSlider_setRepeatAction_4599 (arg1, arg2, arg3); } @@ -2538,7 +2538,7 @@ static void _call_emitter_sliderMoved_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSlider_Adaptor *)cls)->emitter_QSlider_sliderMoved_767 (arg1); } @@ -2647,7 +2647,7 @@ static void _call_emitter_valueChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSlider_Adaptor *)cls)->emitter_QSlider_valueChanged_767 (arg1); } @@ -2689,7 +2689,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QSlider_Adaptor *)cls)->emitter_QSlider_windowIconChanged_1787 (arg1); } @@ -2707,7 +2707,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSlider_Adaptor *)cls)->emitter_QSlider_windowIconTextChanged_2025 (arg1); } @@ -2725,7 +2725,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSlider_Adaptor *)cls)->emitter_QSlider_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc index 4d04eb6b7..689ed011f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSpacerItem.cc @@ -61,10 +61,10 @@ static void _call_f_changeSize_5794 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpacerItem *)cls)->changeSize (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref()); } @@ -159,7 +159,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpacerItem *)cls)->setGeometry (arg1); } @@ -526,10 +526,10 @@ static void _call_ctor_QSpacerItem_Adaptor_5794 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum)); - const qt_gsi::Converter::target_type & arg4 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum)); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum), heap); + const qt_gsi::Converter::target_type & arg4 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSizePolicy::Minimum), heap); ret.write (new QSpacerItem_Adaptor (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), qt_gsi::QtToCppAdaptor(arg4).cref())); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSpinBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSpinBox.cc index 909e3b7f3..61d7811fc 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSpinBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSpinBox.cc @@ -191,7 +191,7 @@ static void _call_f_setDisplayIntegerBase_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox *)cls)->setDisplayIntegerBase (arg1); } @@ -211,7 +211,7 @@ static void _call_f_setMaximum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox *)cls)->setMaximum (arg1); } @@ -231,7 +231,7 @@ static void _call_f_setMinimum_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox *)cls)->setMinimum (arg1); } @@ -251,7 +251,7 @@ static void _call_f_setPrefix_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox *)cls)->setPrefix (arg1); } @@ -273,8 +273,8 @@ static void _call_f_setRange_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox *)cls)->setRange (arg1, arg2); } @@ -294,7 +294,7 @@ static void _call_f_setSingleStep_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox *)cls)->setSingleStep (arg1); } @@ -314,7 +314,7 @@ static void _call_f_setSuffix_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox *)cls)->setSuffix (arg1); } @@ -334,7 +334,7 @@ static void _call_f_setValue_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox *)cls)->setValue (arg1); } @@ -403,9 +403,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSpinBox::tr (arg1, arg2, arg3)); } @@ -428,9 +428,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSpinBox::trUtf8 (arg1, arg2, arg3)); } @@ -1456,7 +1456,7 @@ static void _call_ctor_QSpinBox_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSpinBox_Adaptor (arg1)); } @@ -1618,9 +1618,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->fp_QSpinBox_create_2208 (arg1, arg2, arg3); } @@ -1639,7 +1639,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QSpinBox_Adaptor *)cls)->emitter_QSpinBox_customContextMenuRequested_1916 (arg1); } @@ -1683,8 +1683,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->fp_QSpinBox_destroy_1620 (arg1, arg2); } @@ -1703,7 +1703,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSpinBox_Adaptor *)cls)->emitter_QSpinBox_destroyed_1302 (arg1); } @@ -2141,7 +2141,7 @@ static void _call_fp_initStyleOption_c2572 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->fp_QSpinBox_initStyleOption_c2572 (arg1); } @@ -2207,7 +2207,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSpinBox_Adaptor *)cls)->fp_QSpinBox_isSignalConnected_c2394 (arg1)); } @@ -2545,7 +2545,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSpinBox_Adaptor *)cls)->fp_QSpinBox_receivers_c1731 (arg1)); } @@ -2638,7 +2638,7 @@ static void _call_fp_setLineEdit_1485 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLineEdit *arg1 = args.read (heap); + QLineEdit *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSpinBox_Adaptor *)cls)->fp_QSpinBox_setLineEdit_1485 (arg1); } @@ -2898,7 +2898,7 @@ static void _call_emitter_valueChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QSpinBox_Adaptor *)cls)->emitter_QSpinBox_valueChanged_767 (arg1); } @@ -2916,7 +2916,7 @@ static void _call_emitter_valueChanged_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSpinBox_Adaptor *)cls)->emitter_QSpinBox_valueChanged_2025 (arg1); } @@ -2981,7 +2981,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QSpinBox_Adaptor *)cls)->emitter_QSpinBox_windowIconChanged_1787 (arg1); } @@ -2999,7 +2999,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSpinBox_Adaptor *)cls)->emitter_QSpinBox_windowIconTextChanged_2025 (arg1); } @@ -3017,7 +3017,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSpinBox_Adaptor *)cls)->emitter_QSpinBox_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc index 25e12f2ed..be0535838 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplashScreen.cc @@ -131,7 +131,7 @@ static void _call_f_finish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen *)cls)->finish (arg1); } @@ -197,7 +197,7 @@ static void _call_f_setPixmap_2017 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args.read (heap); + const QPixmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen *)cls)->setPixmap (arg1); } @@ -221,9 +221,9 @@ static void _call_f_showMessage_4481 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(Qt::AlignLeft); - const QColor &arg3 = args ? args.read (heap) : (const QColor &)(Qt::black); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::AlignLeft, heap); + const QColor &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (Qt::black, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen *)cls)->showMessage (arg1, arg2, arg3); } @@ -247,9 +247,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSplashScreen::tr (arg1, arg2, arg3)); } @@ -272,9 +272,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSplashScreen::trUtf8 (arg1, arg2, arg3)); } @@ -1192,8 +1192,8 @@ static void _call_ctor_QSplashScreen_Adaptor_4404 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPixmap &arg1 = args ? args.read (heap) : (const QPixmap &)(QPixmap()); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + const QPixmap &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPixmap(), heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QSplashScreen_Adaptor (arg1, arg2)); } @@ -1215,9 +1215,9 @@ static void _call_ctor_QSplashScreen_Adaptor_5611 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QPixmap &arg2 = args ? args.read (heap) : (const QPixmap &)(QPixmap()); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QPixmap &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPixmap(), heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QSplashScreen_Adaptor (arg1, arg2, arg3)); } @@ -1359,9 +1359,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->fp_QSplashScreen_create_2208 (arg1, arg2, arg3); } @@ -1380,7 +1380,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QSplashScreen_Adaptor *)cls)->emitter_QSplashScreen_customContextMenuRequested_1916 (arg1); } @@ -1424,8 +1424,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplashScreen_Adaptor *)cls)->fp_QSplashScreen_destroy_1620 (arg1, arg2); } @@ -1444,7 +1444,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSplashScreen_Adaptor *)cls)->emitter_QSplashScreen_destroyed_1302 (arg1); } @@ -1915,7 +1915,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplashScreen_Adaptor *)cls)->fp_QSplashScreen_isSignalConnected_c2394 (arg1)); } @@ -2005,7 +2005,7 @@ static void _call_emitter_messageChanged_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSplashScreen_Adaptor *)cls)->emitter_QSplashScreen_messageChanged_2025 (arg1); } @@ -2257,7 +2257,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplashScreen_Adaptor *)cls)->fp_QSplashScreen_receivers_c1731 (arg1)); } @@ -2523,7 +2523,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QSplashScreen_Adaptor *)cls)->emitter_QSplashScreen_windowIconChanged_1787 (arg1); } @@ -2541,7 +2541,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSplashScreen_Adaptor *)cls)->emitter_QSplashScreen_windowIconTextChanged_2025 (arg1); } @@ -2559,7 +2559,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSplashScreen_Adaptor *)cls)->emitter_QSplashScreen_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc index afed4fc3c..20350dfa4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitter.cc @@ -116,7 +116,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->addWidget (arg1); } @@ -170,9 +170,9 @@ static void _call_f_getRange_c2457 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->getRange (arg1, arg2, arg3); } @@ -192,7 +192,7 @@ static void _call_f_handle_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSplitterHandle *)((QSplitter *)cls)->handle (arg1)); } @@ -226,7 +226,7 @@ static void _call_f_indexOf_c1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitter *)cls)->indexOf (arg1)); } @@ -247,8 +247,8 @@ static void _call_f_insertWidget_1974 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->insertWidget (arg1, arg2); } @@ -268,7 +268,7 @@ static void _call_f_isCollapsible_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitter *)cls)->isCollapsible (arg1)); } @@ -348,7 +348,7 @@ static void _call_f_restoreState_2309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitter *)cls)->restoreState (arg1)); } @@ -382,7 +382,7 @@ static void _call_f_setChildrenCollapsible_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->setChildrenCollapsible (arg1); } @@ -404,8 +404,8 @@ static void _call_f_setCollapsible_1523 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->setCollapsible (arg1, arg2); } @@ -425,7 +425,7 @@ static void _call_f_setHandleWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->setHandleWidth (arg1); } @@ -445,7 +445,7 @@ static void _call_f_setOpaqueResize_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->setOpaqueResize (arg1); } @@ -465,7 +465,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -485,7 +485,7 @@ static void _call_f_setSizes_2259 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->setSizes (arg1); } @@ -507,8 +507,8 @@ static void _call_f_setStretchFactor_1426 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter *)cls)->setStretchFactor (arg1, arg2); } @@ -558,7 +558,7 @@ static void _call_f_widget_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QSplitter *)cls)->widget (arg1)); } @@ -581,9 +581,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSplitter::tr (arg1, arg2, arg3)); } @@ -606,9 +606,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSplitter::trUtf8 (arg1, arg2, arg3)); } @@ -1555,7 +1555,7 @@ static void _call_ctor_QSplitter_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSplitter_Adaptor (arg1)); } @@ -1575,8 +1575,8 @@ static void _call_ctor_QSplitter_Adaptor_3120 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSplitter_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1692,8 +1692,8 @@ static void _call_fp_closestLegalPosition_1426 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitter_Adaptor *)cls)->fp_QSplitter_closestLegalPosition_1426 (arg1, arg2)); } @@ -1739,9 +1739,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->fp_QSplitter_create_2208 (arg1, arg2, arg3); } @@ -1779,7 +1779,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QSplitter_Adaptor *)cls)->emitter_QSplitter_customContextMenuRequested_1916 (arg1); } @@ -1823,8 +1823,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->fp_QSplitter_destroy_1620 (arg1, arg2); } @@ -1843,7 +1843,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSplitter_Adaptor *)cls)->emitter_QSplitter_destroyed_1302 (arg1); } @@ -1957,7 +1957,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->fp_QSplitter_drawFrame_1426 (arg1); } @@ -2262,7 +2262,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->fp_QSplitter_initStyleOption_c2356 (arg1); } @@ -2328,7 +2328,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitter_Adaptor *)cls)->fp_QSplitter_isSignalConnected_c2394 (arg1)); } @@ -2582,8 +2582,8 @@ static void _call_fp_moveSplitter_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->fp_QSplitter_moveSplitter_1426 (arg1, arg2); } @@ -2674,7 +2674,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitter_Adaptor *)cls)->fp_QSplitter_receivers_c1731 (arg1)); } @@ -2767,7 +2767,7 @@ static void _call_fp_setRubberBand_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitter_Adaptor *)cls)->fp_QSplitter_setRubberBand_767 (arg1); } @@ -2874,8 +2874,8 @@ static void _call_emitter_splitterMoved_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QSplitter_Adaptor *)cls)->emitter_QSplitter_splitterMoved_1426 (arg1, arg2); } @@ -2980,7 +2980,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QSplitter_Adaptor *)cls)->emitter_QSplitter_windowIconChanged_1787 (arg1); } @@ -2998,7 +2998,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSplitter_Adaptor *)cls)->emitter_QSplitter_windowIconTextChanged_2025 (arg1); } @@ -3016,7 +3016,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSplitter_Adaptor *)cls)->emitter_QSplitter_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc index d76da947c..5ebba09fe 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSplitterHandle.cc @@ -145,7 +145,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -199,9 +199,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSplitterHandle::tr (arg1, arg2, arg3)); } @@ -224,9 +224,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSplitterHandle::trUtf8 (arg1, arg2, arg3)); } @@ -1099,8 +1099,8 @@ static void _call_ctor_QSplitterHandle_Adaptor_3363 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QSplitter *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QSplitter *arg2 = gsi::arg_reader() (args, heap); ret.write (new QSplitterHandle_Adaptor (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -1214,7 +1214,7 @@ static void _call_fp_closestLegalPosition_767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitterHandle_Adaptor *)cls)->fp_QSplitterHandle_closestLegalPosition_767 (arg1)); } @@ -1260,9 +1260,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->fp_QSplitterHandle_create_2208 (arg1, arg2, arg3); } @@ -1281,7 +1281,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QSplitterHandle_Adaptor *)cls)->emitter_QSplitterHandle_customContextMenuRequested_1916 (arg1); } @@ -1325,8 +1325,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->fp_QSplitterHandle_destroy_1620 (arg1, arg2); } @@ -1345,7 +1345,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSplitterHandle_Adaptor *)cls)->emitter_QSplitterHandle_destroyed_1302 (arg1); } @@ -1792,7 +1792,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSplitterHandle_Adaptor *)cls)->fp_QSplitterHandle_isSignalConnected_c2394 (arg1)); } @@ -2044,7 +2044,7 @@ static void _call_fp_moveSplitter_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSplitterHandle_Adaptor *)cls)->fp_QSplitterHandle_moveSplitter_767 (arg1); } @@ -2135,7 +2135,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSplitterHandle_Adaptor *)cls)->fp_QSplitterHandle_receivers_c1731 (arg1)); } @@ -2401,7 +2401,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QSplitterHandle_Adaptor *)cls)->emitter_QSplitterHandle_windowIconChanged_1787 (arg1); } @@ -2419,7 +2419,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSplitterHandle_Adaptor *)cls)->emitter_QSplitterHandle_windowIconTextChanged_2025 (arg1); } @@ -2437,7 +2437,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QSplitterHandle_Adaptor *)cls)->emitter_QSplitterHandle_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc index f49d3c0a8..ace01d1b3 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedLayout.cc @@ -76,7 +76,7 @@ static void _call_f_addItem_1740 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayoutItem *arg1 = args.read (heap); + QLayoutItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout *)cls)->addItem (arg1); } @@ -96,7 +96,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout *)cls)->addWidget (arg1)); } @@ -175,7 +175,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout *)cls)->heightForWidth (arg1)); } @@ -196,8 +196,8 @@ static void _call_f_insertWidget_1974 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout *)cls)->insertWidget (arg1, arg2)); } @@ -216,7 +216,7 @@ static void _call_f_itemAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QStackedLayout *)cls)->itemAt (arg1)); } @@ -250,7 +250,7 @@ static void _call_f_setCurrentIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout *)cls)->setCurrentIndex (arg1); } @@ -270,7 +270,7 @@ static void _call_f_setCurrentWidget_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout *)cls)->setCurrentWidget (arg1); } @@ -290,7 +290,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout *)cls)->setGeometry (arg1); } @@ -310,7 +310,7 @@ static void _call_f_setStackingMode_3183 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout *)cls)->setStackingMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -360,7 +360,7 @@ static void _call_f_takeAt_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QLayoutItem *)((QStackedLayout *)cls)->takeAt (arg1)); } @@ -394,7 +394,7 @@ static void _call_f_widget_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QStackedLayout *)cls)->widget (arg1)); } @@ -417,9 +417,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStackedLayout::tr (arg1, arg2, arg3)); } @@ -442,9 +442,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStackedLayout::trUtf8 (arg1, arg2, arg3)); } @@ -1027,7 +1027,7 @@ static void _call_ctor_QStackedLayout_Adaptor_1315 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QStackedLayout_Adaptor (arg1)); } @@ -1045,7 +1045,7 @@ static void _call_ctor_QStackedLayout_Adaptor_1341 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); ret.write (new QStackedLayout_Adaptor (arg1)); } @@ -1063,7 +1063,7 @@ static void _call_fp_addChildLayout_1341 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->fp_QStackedLayout_addChildLayout_1341 (arg1); @@ -1083,7 +1083,7 @@ static void _call_fp_addChildWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->fp_QStackedLayout_addChildWidget_1315 (arg1); } @@ -1126,7 +1126,7 @@ static void _call_fp_adoptLayout_1341 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedLayout_Adaptor *)cls)->fp_QStackedLayout_adoptLayout_1341 (arg1)); } @@ -1144,7 +1144,7 @@ static void _call_fp_alignmentRect_c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QStackedLayout_Adaptor *)cls)->fp_QStackedLayout_alignmentRect_c1792 (arg1)); } @@ -1224,7 +1224,7 @@ static void _call_emitter_currentChanged_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QStackedLayout_Adaptor *)cls)->emitter_QStackedLayout_currentChanged_767 (arg1); } @@ -1266,7 +1266,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStackedLayout_Adaptor *)cls)->emitter_QStackedLayout_destroyed_1302 (arg1); } @@ -1499,7 +1499,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedLayout_Adaptor *)cls)->fp_QStackedLayout_isSignalConnected_c2394 (arg1)); } @@ -1620,7 +1620,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedLayout_Adaptor *)cls)->fp_QStackedLayout_receivers_c1731 (arg1)); } @@ -1794,7 +1794,7 @@ static void _call_fp_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedLayout_Adaptor *)cls)->fp_QStackedLayout_widgetEvent_1217 (arg1); } @@ -1813,7 +1813,7 @@ static void _call_emitter_widgetRemoved_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QStackedLayout_Adaptor *)cls)->emitter_QStackedLayout_widgetRemoved_767 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedWidget.cc index 037b43fba..4a32186af 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStackedWidget.cc @@ -115,7 +115,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedWidget *)cls)->addWidget (arg1)); } @@ -179,7 +179,7 @@ static void _call_f_indexOf_c1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedWidget *)cls)->indexOf (arg1)); } @@ -200,8 +200,8 @@ static void _call_f_insertWidget_1974 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedWidget *)cls)->insertWidget (arg1, arg2)); } @@ -220,7 +220,7 @@ static void _call_f_removeWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget *)cls)->removeWidget (arg1); } @@ -240,7 +240,7 @@ static void _call_f_setCurrentIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget *)cls)->setCurrentIndex (arg1); } @@ -260,7 +260,7 @@ static void _call_f_setCurrentWidget_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget *)cls)->setCurrentWidget (arg1); } @@ -280,7 +280,7 @@ static void _call_f_widget_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QStackedWidget *)cls)->widget (arg1)); } @@ -303,9 +303,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStackedWidget::tr (arg1, arg2, arg3)); } @@ -328,9 +328,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStackedWidget::trUtf8 (arg1, arg2, arg3)); } @@ -1226,7 +1226,7 @@ static void _call_ctor_QStackedWidget_Adaptor_1315 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStackedWidget_Adaptor (arg1)); } @@ -1368,9 +1368,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->fp_QStackedWidget_create_2208 (arg1, arg2, arg3); } @@ -1389,7 +1389,7 @@ static void _call_emitter_currentChanged_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QStackedWidget_Adaptor *)cls)->emitter_QStackedWidget_currentChanged_767 (arg1); } @@ -1407,7 +1407,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QStackedWidget_Adaptor *)cls)->emitter_QStackedWidget_customContextMenuRequested_1916 (arg1); } @@ -1451,8 +1451,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->fp_QStackedWidget_destroy_1620 (arg1, arg2); } @@ -1471,7 +1471,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStackedWidget_Adaptor *)cls)->emitter_QStackedWidget_destroyed_1302 (arg1); } @@ -1585,7 +1585,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->fp_QStackedWidget_drawFrame_1426 (arg1); } @@ -1890,7 +1890,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStackedWidget_Adaptor *)cls)->fp_QStackedWidget_initStyleOption_c2356 (arg1); } @@ -1956,7 +1956,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStackedWidget_Adaptor *)cls)->fp_QStackedWidget_isSignalConnected_c2394 (arg1)); } @@ -2280,7 +2280,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStackedWidget_Adaptor *)cls)->fp_QStackedWidget_receivers_c1731 (arg1)); } @@ -2546,7 +2546,7 @@ static void _call_emitter_widgetRemoved_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QStackedWidget_Adaptor *)cls)->emitter_QStackedWidget_widgetRemoved_767 (arg1); } @@ -2564,7 +2564,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QStackedWidget_Adaptor *)cls)->emitter_QStackedWidget_windowIconChanged_1787 (arg1); } @@ -2582,7 +2582,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QStackedWidget_Adaptor *)cls)->emitter_QStackedWidget_windowIconTextChanged_2025 (arg1); } @@ -2600,7 +2600,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QStackedWidget_Adaptor *)cls)->emitter_QStackedWidget_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStatusBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStatusBar.cc index 8fb8496bf..ef23de0ec 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStatusBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStatusBar.cc @@ -116,8 +116,8 @@ static void _call_f_addPermanentWidget_1974 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar *)cls)->addPermanentWidget (arg1, arg2); } @@ -139,8 +139,8 @@ static void _call_f_addWidget_1974 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar *)cls)->addWidget (arg1, arg2); } @@ -195,9 +195,9 @@ static void _call_f_insertPermanentWidget_2633 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStatusBar *)cls)->insertPermanentWidget (arg1, arg2, arg3)); } @@ -220,9 +220,9 @@ static void _call_f_insertWidget_2633 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(0); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStatusBar *)cls)->insertWidget (arg1, arg2, arg3)); } @@ -256,7 +256,7 @@ static void _call_f_removeWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar *)cls)->removeWidget (arg1); } @@ -276,7 +276,7 @@ static void _call_f_setSizeGripEnabled_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar *)cls)->setSizeGripEnabled (arg1); } @@ -298,8 +298,8 @@ static void _call_f_showMessage_2684 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar *)cls)->showMessage (arg1, arg2); } @@ -323,9 +323,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStatusBar::tr (arg1, arg2, arg3)); } @@ -348,9 +348,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStatusBar::trUtf8 (arg1, arg2, arg3)); } @@ -1239,7 +1239,7 @@ static void _call_ctor_QStatusBar_Adaptor_1315 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStatusBar_Adaptor (arg1)); } @@ -1381,9 +1381,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->fp_QStatusBar_create_2208 (arg1, arg2, arg3); } @@ -1402,7 +1402,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QStatusBar_Adaptor *)cls)->emitter_QStatusBar_customContextMenuRequested_1916 (arg1); } @@ -1446,8 +1446,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStatusBar_Adaptor *)cls)->fp_QStatusBar_destroy_1620 (arg1, arg2); } @@ -1466,7 +1466,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStatusBar_Adaptor *)cls)->emitter_QStatusBar_destroyed_1302 (arg1); } @@ -1928,7 +1928,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStatusBar_Adaptor *)cls)->fp_QStatusBar_isSignalConnected_c2394 (arg1)); } @@ -2018,7 +2018,7 @@ static void _call_emitter_messageChanged_2025 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QStatusBar_Adaptor *)cls)->emitter_QStatusBar_messageChanged_2025 (arg1); } @@ -2270,7 +2270,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStatusBar_Adaptor *)cls)->fp_QStatusBar_receivers_c1731 (arg1)); } @@ -2551,7 +2551,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QStatusBar_Adaptor *)cls)->emitter_QStatusBar_windowIconChanged_1787 (arg1); } @@ -2569,7 +2569,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QStatusBar_Adaptor *)cls)->emitter_QStatusBar_windowIconTextChanged_2025 (arg1); } @@ -2587,7 +2587,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QStatusBar_Adaptor *)cls)->emitter_QStatusBar_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyle.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyle.cc index ecd9caaa8..4ed49ef32 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyle.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyle.cc @@ -90,11 +90,11 @@ static void _call_f_combinedLayoutSpacing_c11699 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); - QFlags arg2 = args.read > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - QStyleOption *arg4 = args ? args.read (heap) : (QStyleOption *)(0); - QWidget *arg5 = args ? args.read (heap) : (QWidget *)(0); + QFlags arg1 = gsi::arg_reader >() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStyle *)cls)->combinedLayoutSpacing (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4, arg5)); } @@ -119,10 +119,10 @@ static void _call_f_drawComplexControl_c9027 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->drawComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -148,10 +148,10 @@ static void _call_f_drawControl_c8285 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->drawControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -177,10 +177,10 @@ static void _call_f_drawItemPixmap_c5678 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPixmap &arg4 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPixmap &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->drawItemPixmap (arg1, arg2, arg3, arg4); } @@ -212,13 +212,13 @@ static void _call_f_drawItemText_c10604 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - const QPalette &arg4 = args.read (heap); - bool arg5 = args.read (heap); - const QString &arg6 = args.read (heap); - const qt_gsi::Converter::target_type & arg7 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole)); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + const QPalette &arg4 = gsi::arg_reader() (args, heap); + bool arg5 = gsi::arg_reader() (args, heap); + const QString &arg6 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg7 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->drawItemText (arg1, arg2, arg3, arg4, arg5, arg6, qt_gsi::QtToCppAdaptor(arg7).cref()); } @@ -244,10 +244,10 @@ static void _call_f_drawPrimitive_c8501 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - QPainter *arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + QPainter *arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->drawPrimitive (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -271,9 +271,9 @@ static void _call_f_generatedIconPixmap_c5776 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); - const QStyleOption *arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); + const QStyleOption *arg3 = gsi::arg_reader() (args, heap); ret.write ((QPixmap)((QStyle *)cls)->generatedIconPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -298,10 +298,10 @@ static void _call_f_hitTestComplexControl_c9517 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QStyle *)cls)->hitTestComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4))); } @@ -324,9 +324,9 @@ static void _call_f_itemPixmapRect_c4360 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QStyle *)cls)->itemPixmapRect (arg1, arg2, arg3)); } @@ -353,11 +353,11 @@ static void _call_f_itemTextRect_c7544 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFontMetrics &arg1 = args.read (heap); - const QRect &arg2 = args.read (heap); - int arg3 = args.read (heap); - bool arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QFontMetrics &arg1 = gsi::arg_reader() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QStyle *)cls)->itemTextRect (arg1, arg2, arg3, arg4, arg5)); } @@ -384,11 +384,11 @@ static void _call_f_layoutSpacing_c11697 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QStyleOption *arg4 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg5 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStyle *)cls)->layoutSpacing (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref(), qt_gsi::QtToCppAdaptor(arg3).cref(), arg4, arg5)); } @@ -411,9 +411,9 @@ static void _call_f_pixelMetric_c6642 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStyle *)cls)->pixelMetric (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -432,7 +432,7 @@ static void _call_f_polish_1315 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->polish (arg1); } @@ -452,7 +452,7 @@ static void _call_f_polish_1843 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->polish (arg1); } @@ -472,7 +472,7 @@ static void _call_f_polish_1418 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPalette &arg1 = args.read (heap); + QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->polish (arg1); } @@ -513,10 +513,10 @@ static void _call_f_sizeFromContents_c8477 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QSize &arg3 = args.read (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QSize)((QStyle *)cls)->sizeFromContents (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -539,9 +539,9 @@ static void _call_f_standardIcon_c6956 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QIcon)((QStyle *)cls)->standardIcon (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -579,9 +579,9 @@ static void _call_f_standardPixmap_c6956 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QPixmap)((QStyle *)cls)->standardPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -606,10 +606,10 @@ static void _call_f_styleHint_c8615 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args ? args.read (heap) : (const QStyleOption *)(0); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); - QStyleHintReturn *arg4 = args ? args.read (heap) : (QStyleHintReturn *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QStyleHintReturn *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((int)((QStyle *)cls)->styleHint (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -634,10 +634,10 @@ static void _call_f_subControlRect_c9798 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex *arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args.read::target_type & > (heap); - const QWidget *arg4 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex *arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = gsi::arg_reader::target_type & >() (args, heap); + const QWidget *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QStyle *)cls)->subControlRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4)); } @@ -660,9 +660,9 @@ static void _call_f_subElementRect_c6528 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption *arg2 = args.read (heap); - const QWidget *arg3 = args ? args.read (heap) : (const QWidget *)(0); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption *arg2 = gsi::arg_reader() (args, heap); + const QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QRect)((QStyle *)cls)->subElementRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -681,7 +681,7 @@ static void _call_f_unpolish_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->unpolish (arg1); } @@ -701,7 +701,7 @@ static void _call_f_unpolish_1843 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QApplication *arg1 = args.read (heap); + QApplication *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyle *)cls)->unpolish (arg1); } @@ -727,10 +727,10 @@ static void _call_f_alignedRect_8339 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QFlags arg2 = args.read > (heap); - const QSize &arg3 = args.read (heap); - const QRect &arg4 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + const QSize &arg3 = gsi::arg_reader() (args, heap); + const QRect &arg4 = gsi::arg_reader() (args, heap); ret.write ((QRect)QStyle::alignedRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4)); } @@ -757,11 +757,11 @@ static void _call_f_sliderPositionFromValue_3500 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - bool arg5 = args ? args.read (heap) : (bool)(false); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + bool arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((int)QStyle::sliderPositionFromValue (arg1, arg2, arg3, arg4, arg5)); } @@ -788,11 +788,11 @@ static void _call_f_sliderValueFromPosition_3500 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); - bool arg5 = args ? args.read (heap) : (bool)(false); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); + bool arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ret.write ((int)QStyle::sliderValueFromPosition (arg1, arg2, arg3, arg4, arg5)); } @@ -815,9 +815,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStyle::tr (arg1, arg2, arg3)); } @@ -840,9 +840,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStyle::trUtf8 (arg1, arg2, arg3)); } @@ -863,8 +863,8 @@ static void _call_f_visualAlignment_4958 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QFlags arg2 = args.read > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write > ((QFlags)QStyle::visualAlignment (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -887,9 +887,9 @@ static void _call_f_visualPos_5808 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QRect &arg2 = args.read (heap); - const QPoint &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QPoint &arg3 = gsi::arg_reader() (args, heap); ret.write ((QPoint)QStyle::visualPos (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -912,9 +912,9 @@ static void _call_f_visualRect_5684 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QRect &arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QRect &arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); ret.write ((QRect)QStyle::visualRect (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3)); } @@ -1602,7 +1602,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStyle_Adaptor *)cls)->emitter_QStyle_destroyed_1302 (arg1); } @@ -1928,7 +1928,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyle_Adaptor *)cls)->fp_QStyle_isSignalConnected_c2394 (arg1)); } @@ -2146,7 +2146,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStyle_Adaptor *)cls)->fp_QStyle_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleFactory.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleFactory.cc index 7faa9afe9..ddec47db1 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleFactory.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleFactory.cc @@ -66,7 +66,7 @@ static void _call_f_create_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyle *)QStyleFactory::create (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturn.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturn.cc index 252fbd477..cf2de7f97 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturn.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleHintReturn.cc @@ -52,8 +52,8 @@ static void _call_ctor_QStyleHintReturn_1426 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(QStyleOption::Version); - int arg2 = args ? args.read (heap) : (int)(QStyleHintReturn::SH_Default); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStyleOption::Version, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStyleHintReturn::SH_Default, heap); ret.write (new QStyleHintReturn (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOption.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOption.cc index 43747c4fc..81b3ca556 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOption.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOption.cc @@ -53,8 +53,8 @@ static void _call_ctor_QStyleOption_1426 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(QStyleOption::Version); - int arg2 = args ? args.read (heap) : (int)(QStyleOption::SO_Default); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStyleOption::Version, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStyleOption::SO_Default, heap); ret.write (new QStyleOption (arg1, arg2)); } @@ -73,7 +73,7 @@ static void _call_ctor_QStyleOption_2556 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOption &arg1 = args.read (heap); + const QStyleOption &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOption (arg1)); } @@ -92,7 +92,7 @@ static void _call_f_init_2010 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleOption *)cls)->init (arg1); } @@ -112,7 +112,7 @@ static void _call_f_initFrom_2010 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyleOption *)cls)->initFrom (arg1); } @@ -132,7 +132,7 @@ static void _call_f_operator_eq__2556 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOption &arg1 = args.read (heap); + const QStyleOption &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyleOption &)((QStyleOption *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionButton.cc index 8f90fb59d..ebd30f379 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionButton.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionButton_3192 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionButton &arg1 = args.read (heap); + const QStyleOptionButton &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionButton (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComboBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComboBox.cc index fa009390d..887755396 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComboBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComboBox.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionComboBox_3349 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionComboBox &arg1 = args.read (heap); + const QStyleOptionComboBox &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionComboBox (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComplex.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComplex.cc index c974c290f..bccb10070 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComplex.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionComplex.cc @@ -54,8 +54,8 @@ static void _call_ctor_QStyleOptionComplex_1426 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(QStyleOptionComplex::Version); - int arg2 = args ? args.read (heap) : (int)(QStyleOption::SO_Complex); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStyleOptionComplex::Version, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QStyleOption::SO_Complex, heap); ret.write (new QStyleOptionComplex (arg1, arg2)); } @@ -74,7 +74,7 @@ static void _call_ctor_QStyleOptionComplex_3284 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionComplex &arg1 = args.read (heap); + const QStyleOptionComplex &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionComplex (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionDockWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionDockWidget.cc index c719eac88..40235fa61 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionDockWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionDockWidget.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionDockWidget_3553 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionDockWidget &arg1 = args.read (heap); + const QStyleOptionDockWidget &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionDockWidget (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFocusRect.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFocusRect.cc index d5b786d60..608056330 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFocusRect.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFocusRect.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionFocusRect_3466 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionFocusRect &arg1 = args.read (heap); + const QStyleOptionFocusRect &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionFocusRect (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFrame.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFrame.cc index e4547216e..116e822d5 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFrame.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionFrame.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionFrame_3047 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionFrame &arg1 = args.read (heap); + const QStyleOptionFrame &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionFrame (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGraphicsItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGraphicsItem.cc index a6435f6ed..d9decfb65 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGraphicsItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGraphicsItem.cc @@ -68,7 +68,7 @@ static void _call_ctor_QStyleOptionGraphicsItem_3772 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionGraphicsItem &arg1 = args.read (heap); + const QStyleOptionGraphicsItem &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionGraphicsItem (arg1)); } @@ -87,7 +87,7 @@ static void _call_f_levelOfDetailFromTransform_2350 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTransform &arg1 = args.read (heap); + const QTransform &arg1 = gsi::arg_reader() (args, heap); ret.write ((double)QStyleOptionGraphicsItem::levelOfDetailFromTransform (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGroupBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGroupBox.cc index f99efec56..e2b06225b 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGroupBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionGroupBox.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionGroupBox_3378 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionGroupBox &arg1 = args.read (heap); + const QStyleOptionGroupBox &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionGroupBox (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionHeader.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionHeader.cc index 706adff8a..2bc2928dd 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionHeader.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionHeader.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionHeader_3141 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionHeader &arg1 = args.read (heap); + const QStyleOptionHeader &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionHeader (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionMenuItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionMenuItem.cc index 00be24f40..72bc8c97c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionMenuItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionMenuItem.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionMenuItem_3360 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionMenuItem &arg1 = args.read (heap); + const QStyleOptionMenuItem &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionMenuItem (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionProgressBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionProgressBar.cc index bfc4ebaa0..074a716ae 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionProgressBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionProgressBar.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionProgressBar_3686 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionProgressBar &arg1 = args.read (heap); + const QStyleOptionProgressBar &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionProgressBar (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionRubberBand.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionRubberBand.cc index 67163162b..3a4aa1f04 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionRubberBand.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionRubberBand.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionRubberBand_3539 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionRubberBand &arg1 = args.read (heap); + const QStyleOptionRubberBand &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionRubberBand (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSizeGrip.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSizeGrip.cc index acc773714..ab0a7057c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSizeGrip.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSizeGrip.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionSizeGrip_3369 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionSizeGrip &arg1 = args.read (heap); + const QStyleOptionSizeGrip &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionSizeGrip (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSlider.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSlider.cc index 6af6dfbdd..23f156646 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSlider.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSlider.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionSlider_3167 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionSlider &arg1 = args.read (heap); + const QStyleOptionSlider &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionSlider (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSpinBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSpinBox.cc index dc9e9aa23..f195d7518 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSpinBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionSpinBox.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionSpinBox_3263 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionSpinBox &arg1 = args.read (heap); + const QStyleOptionSpinBox &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionSpinBox (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTab.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTab.cc index ffe1ce543..ec759f1c4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTab.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTab.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionTab_2835 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTab &arg1 = args.read (heap); + const QStyleOptionTab &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionTab (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabBarBase.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabBarBase.cc index 287d45a4a..cc5573ad4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabBarBase.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabBarBase.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionTabBarBase_3491 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTabBarBase &arg1 = args.read (heap); + const QStyleOptionTabBarBase &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionTabBarBase (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabWidgetFrame.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabWidgetFrame.cc index ee146c56b..fa3dbbca2 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabWidgetFrame.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTabWidgetFrame.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionTabWidgetFrame_3938 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTabWidgetFrame &arg1 = args.read (heap); + const QStyleOptionTabWidgetFrame &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionTabWidgetFrame (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTitleBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTitleBar.cc index bb8812fb4..3d65686f9 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTitleBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionTitleBar.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionTitleBar_3347 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionTitleBar &arg1 = args.read (heap); + const QStyleOptionTitleBar &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionTitleBar (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBar.cc index 0c2023f2b..ddbcab811 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBar.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionToolBar_3247 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionToolBar &arg1 = args.read (heap); + const QStyleOptionToolBar &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionToolBar (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBox.cc index fc706dd3f..eb7fe23ec 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolBox.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionToolBox_3267 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionToolBox &arg1 = args.read (heap); + const QStyleOptionToolBox &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionToolBox (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolButton.cc index 8645c69b8..ad183cf51 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionToolButton.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionToolButton_3606 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionToolButton &arg1 = args.read (heap); + const QStyleOptionToolButton &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionToolButton (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionViewItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionViewItem.cc index e4abc927e..875638a00 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionViewItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyleOptionViewItem.cc @@ -67,7 +67,7 @@ static void _call_ctor_QStyleOptionViewItem_3366 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); ret.write (new QStyleOptionViewItem (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePainter.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePainter.cc index fe40c1fdb..aa8351078 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePainter.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePainter.cc @@ -97,7 +97,7 @@ static void _call_ctor_QStylePainter_1315 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QStylePainter (arg1)); } @@ -118,8 +118,8 @@ static void _call_ctor_QStylePainter_3010 (const qt_gsi::GenericStaticMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ret.write (new QStylePainter (arg1, arg2)); } @@ -138,7 +138,7 @@ static void _call_f_begin_1315 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStylePainter *)cls)->begin (arg1)); } @@ -159,8 +159,8 @@ static void _call_f_begin_3010 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStylePainter *)cls)->begin (arg1, arg2)); } @@ -181,8 +181,8 @@ static void _call_f_drawComplexControl_5803 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOptionComplex &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOptionComplex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePainter *)cls)->drawComplexControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -204,8 +204,8 @@ static void _call_f_drawControl_5061 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePainter *)cls)->drawControl (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -229,9 +229,9 @@ static void _call_f_drawItemPixmap_4360 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPixmap &arg3 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPixmap &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePainter *)cls)->drawItemPixmap (arg1, arg2, arg3); } @@ -261,12 +261,12 @@ static void _call_f_drawItemText_9286 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); - int arg2 = args.read (heap); - const QPalette &arg3 = args.read (heap); - bool arg4 = args.read (heap); - const QString &arg5 = args.read (heap); - const qt_gsi::Converter::target_type & arg6 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole)); + const QRect &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QPalette &arg3 = gsi::arg_reader() (args, heap); + bool arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg6 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QPalette::NoRole), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePainter *)cls)->drawItemText (arg1, arg2, arg3, arg4, arg5, qt_gsi::QtToCppAdaptor(arg6).cref()); } @@ -288,8 +288,8 @@ static void _call_f_drawPrimitive_5277 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QStyleOption &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QStyleOption &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStylePainter *)cls)->drawPrimitive (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePlugin.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePlugin.cc index 9089e1fa6..3e98e6c69 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePlugin.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStylePlugin.cc @@ -70,7 +70,7 @@ static void _call_f_create_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStyle *)((QStylePlugin *)cls)->create (arg1)); } @@ -93,9 +93,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStylePlugin::tr (arg1, arg2, arg3)); } @@ -118,9 +118,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStylePlugin::trUtf8 (arg1, arg2, arg3)); } @@ -323,7 +323,7 @@ static void _call_ctor_QStylePlugin_Adaptor_1302 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStylePlugin_Adaptor (arg1)); } @@ -412,7 +412,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStylePlugin_Adaptor *)cls)->emitter_QStylePlugin_destroyed_1302 (arg1); } @@ -503,7 +503,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStylePlugin_Adaptor *)cls)->fp_QStylePlugin_isSignalConnected_c2394 (arg1)); } @@ -521,7 +521,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStylePlugin_Adaptor *)cls)->fp_QStylePlugin_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc index 1de3aa5f7..174148f6f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQStyledItemDelegate.cc @@ -84,9 +84,9 @@ static void _call_f_createEditor_c6860 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QStyledItemDelegate *)cls)->createEditor (arg1, arg2, arg3)); } @@ -107,8 +107,8 @@ static void _call_f_displayText_c3997 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); - const QLocale &arg2 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); + const QLocale &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QStyledItemDelegate *)cls)->displayText (arg1, arg2)); } @@ -146,9 +146,9 @@ static void _call_f_paint_c6971 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate *)cls)->paint (arg1, arg2, arg3); } @@ -170,8 +170,8 @@ static void _call_f_setEditorData_c3602 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate *)cls)->setEditorData (arg1, arg2); } @@ -191,7 +191,7 @@ static void _call_f_setItemEditorFactory_2445 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemEditorFactory *arg1 = args.read (heap); + QItemEditorFactory *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate *)cls)->setItemEditorFactory (arg1); } @@ -215,9 +215,9 @@ static void _call_f_setModelData_c5913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QAbstractItemModel *arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QAbstractItemModel *arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate *)cls)->setModelData (arg1, arg2, arg3); } @@ -239,8 +239,8 @@ static void _call_f_sizeHint_c5653 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStyleOptionViewItem &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QStyleOptionViewItem &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QStyledItemDelegate *)cls)->sizeHint (arg1, arg2)); } @@ -263,9 +263,9 @@ static void _call_f_updateEditorGeometry_c6860 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QStyleOptionViewItem &arg2 = args.read (heap); - const QModelIndex &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QStyleOptionViewItem &arg2 = gsi::arg_reader() (args, heap); + const QModelIndex &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QStyledItemDelegate *)cls)->updateEditorGeometry (arg1, arg2, arg3); } @@ -289,9 +289,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStyledItemDelegate::tr (arg1, arg2, arg3)); } @@ -314,9 +314,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QStyledItemDelegate::trUtf8 (arg1, arg2, arg3)); } @@ -723,7 +723,7 @@ static void _call_ctor_QStyledItemDelegate_Adaptor_1302 (const qt_gsi::GenericSt { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QStyledItemDelegate_Adaptor (arg1)); } @@ -767,8 +767,8 @@ static void _call_emitter_closeEditor_4926 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemDelegate::NoHint)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemDelegate::NoHint), heap); ((QStyledItemDelegate_Adaptor *)cls)->emitter_QStyledItemDelegate_closeEditor_4926 (arg1, arg2); } @@ -786,7 +786,7 @@ static void _call_emitter_commitData_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ((QStyledItemDelegate_Adaptor *)cls)->emitter_QStyledItemDelegate_commitData_1315 (arg1); } @@ -884,7 +884,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QStyledItemDelegate_Adaptor *)cls)->emitter_QStyledItemDelegate_destroyed_1302 (arg1); } @@ -1092,7 +1092,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QStyledItemDelegate_Adaptor *)cls)->fp_QStyledItemDelegate_isSignalConnected_c2394 (arg1)); } @@ -1159,7 +1159,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QStyledItemDelegate_Adaptor *)cls)->fp_QStyledItemDelegate_receivers_c1731 (arg1)); } @@ -1288,7 +1288,7 @@ static void _call_emitter_sizeHintChanged_2395 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QStyledItemDelegate_Adaptor *)cls)->emitter_QStyledItemDelegate_sizeHintChanged_2395 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSwipeGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSwipeGesture.cc index 8102dde1a..80fe1fb1c 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSwipeGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSwipeGesture.cc @@ -85,7 +85,7 @@ static void _call_f_setSwipeAngle_1071 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSwipeGesture *)cls)->setSwipeAngle (arg1); } @@ -139,9 +139,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSwipeGesture::tr (arg1, arg2, arg3)); } @@ -164,9 +164,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSwipeGesture::trUtf8 (arg1, arg2, arg3)); } @@ -355,7 +355,7 @@ static void _call_ctor_QSwipeGesture_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSwipeGesture_Adaptor (arg1)); } @@ -421,7 +421,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSwipeGesture_Adaptor *)cls)->emitter_QSwipeGesture_destroyed_1302 (arg1); } @@ -512,7 +512,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSwipeGesture_Adaptor *)cls)->fp_QSwipeGesture_isSignalConnected_c2394 (arg1)); } @@ -530,7 +530,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSwipeGesture_Adaptor *)cls)->fp_QSwipeGesture_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQSystemTrayIcon.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQSystemTrayIcon.cc index 9767ee530..8d669862d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQSystemTrayIcon.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQSystemTrayIcon.cc @@ -148,7 +148,7 @@ static void _call_f_setContextMenu_1108 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenu *arg1 = args.read (heap); + QMenu *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon *)cls)->setContextMenu (arg1); } @@ -168,7 +168,7 @@ static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon *)cls)->setIcon (arg1); } @@ -188,7 +188,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon *)cls)->setToolTip (arg1); } @@ -208,7 +208,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon *)cls)->setVisible (arg1); } @@ -250,10 +250,10 @@ static void _call_f_showMessage_7682 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QSystemTrayIcon::Information)); - int arg4 = args ? args.read (heap) : (int)(10000); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QSystemTrayIcon::Information), heap); + int arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (10000, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSystemTrayIcon *)cls)->showMessage (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref(), arg4); } @@ -322,9 +322,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSystemTrayIcon::tr (arg1, arg2, arg3)); } @@ -347,9 +347,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QSystemTrayIcon::trUtf8 (arg1, arg2, arg3)); } @@ -574,7 +574,7 @@ static void _call_ctor_QSystemTrayIcon_Adaptor_1302 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSystemTrayIcon_Adaptor (arg1)); } @@ -594,8 +594,8 @@ static void _call_ctor_QSystemTrayIcon_Adaptor_2981 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - QObject *arg2 = args ? args.read (heap) : (QObject *)(0); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + QObject *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QSystemTrayIcon_Adaptor (arg1, arg2)); } @@ -613,7 +613,7 @@ static void _call_emitter_activated_3745 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QSystemTrayIcon_Adaptor *)cls)->emitter_QSystemTrayIcon_activated_3745 (arg1); } @@ -679,7 +679,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QSystemTrayIcon_Adaptor *)cls)->emitter_QSystemTrayIcon_destroyed_1302 (arg1); } @@ -770,7 +770,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSystemTrayIcon_Adaptor *)cls)->fp_QSystemTrayIcon_isSignalConnected_c2394 (arg1)); } @@ -802,7 +802,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QSystemTrayIcon_Adaptor *)cls)->fp_QSystemTrayIcon_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc index 05cd1d580..9089e4cdc 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabBar.cc @@ -116,7 +116,7 @@ static void _call_f_addTab_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabBar *)cls)->addTab (arg1)); } @@ -137,8 +137,8 @@ static void _call_f_addTab_3704 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabBar *)cls)->addTab (arg1, arg2)); } @@ -294,8 +294,8 @@ static void _call_f_insertTab_2684 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabBar *)cls)->insertTab (arg1, arg2)); } @@ -318,9 +318,9 @@ static void _call_f_insertTab_4363 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabBar *)cls)->insertTab (arg1, arg2, arg3)); } @@ -354,7 +354,7 @@ static void _call_f_isTabEnabled_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabBar *)cls)->isTabEnabled (arg1)); } @@ -390,8 +390,8 @@ static void _call_f_moveTab_1426 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->moveTab (arg1, arg2); } @@ -411,7 +411,7 @@ static void _call_f_removeTab_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->removeTab (arg1); } @@ -446,7 +446,7 @@ static void _call_f_setAutoHide_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setAutoHide (arg1); } @@ -466,7 +466,7 @@ static void _call_f_setChangeCurrentOnDrag_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setChangeCurrentOnDrag (arg1); } @@ -486,7 +486,7 @@ static void _call_f_setCurrentIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setCurrentIndex (arg1); } @@ -506,7 +506,7 @@ static void _call_f_setDocumentMode_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setDocumentMode (arg1); } @@ -526,7 +526,7 @@ static void _call_f_setDrawBase_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setDrawBase (arg1); } @@ -546,7 +546,7 @@ static void _call_f_setElideMode_2042 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setElideMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -566,7 +566,7 @@ static void _call_f_setExpanding_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setExpanding (arg1); } @@ -586,7 +586,7 @@ static void _call_f_setIconSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setIconSize (arg1); } @@ -606,7 +606,7 @@ static void _call_f_setMovable_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setMovable (arg1); } @@ -626,7 +626,7 @@ static void _call_f_setSelectionBehaviorOnRemove_2939 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setSelectionBehaviorOnRemove (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -646,7 +646,7 @@ static void _call_f_setShape_1686 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setShape (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -670,9 +670,9 @@ static void _call_f_setTabButton_4544 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); - QWidget *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabButton (arg1, qt_gsi::QtToCppAdaptor(arg2).cref(), arg3); } @@ -694,8 +694,8 @@ static void _call_f_setTabData_2778 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabData (arg1, arg2); } @@ -717,8 +717,8 @@ static void _call_f_setTabEnabled_1523 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabEnabled (arg1, arg2); } @@ -740,8 +740,8 @@ static void _call_f_setTabIcon_2446 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabIcon (arg1, arg2); } @@ -763,8 +763,8 @@ static void _call_f_setTabText_2684 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabText (arg1, arg2); } @@ -786,8 +786,8 @@ static void _call_f_setTabTextColor_2564 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabTextColor (arg1, arg2); } @@ -809,8 +809,8 @@ static void _call_f_setTabToolTip_2684 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabToolTip (arg1, arg2); } @@ -832,8 +832,8 @@ static void _call_f_setTabWhatsThis_2684 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabWhatsThis (arg1, arg2); } @@ -853,7 +853,7 @@ static void _call_f_setTabsClosable_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setTabsClosable (arg1); } @@ -873,7 +873,7 @@ static void _call_f_setUsesScrollButtons_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar *)cls)->setUsesScrollButtons (arg1); } @@ -923,7 +923,7 @@ static void _call_f_tabAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabBar *)cls)->tabAt (arg1)); } @@ -944,8 +944,8 @@ static void _call_f_tabButton_c3337 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QWidget *)((QTabBar *)cls)->tabButton (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -964,7 +964,7 @@ static void _call_f_tabData_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTabBar *)cls)->tabData (arg1)); } @@ -983,7 +983,7 @@ static void _call_f_tabIcon_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QTabBar *)cls)->tabIcon (arg1)); } @@ -1002,7 +1002,7 @@ static void _call_f_tabRect_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTabBar *)cls)->tabRect (arg1)); } @@ -1021,7 +1021,7 @@ static void _call_f_tabText_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTabBar *)cls)->tabText (arg1)); } @@ -1040,7 +1040,7 @@ static void _call_f_tabTextColor_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor)((QTabBar *)cls)->tabTextColor (arg1)); } @@ -1059,7 +1059,7 @@ static void _call_f_tabToolTip_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTabBar *)cls)->tabToolTip (arg1)); } @@ -1078,7 +1078,7 @@ static void _call_f_tabWhatsThis_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTabBar *)cls)->tabWhatsThis (arg1)); } @@ -1131,9 +1131,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTabBar::tr (arg1, arg2, arg3)); } @@ -1156,9 +1156,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTabBar::trUtf8 (arg1, arg2, arg3)); } @@ -2193,7 +2193,7 @@ static void _call_ctor_QTabBar_Adaptor_1315 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTabBar_Adaptor (arg1)); } @@ -2335,9 +2335,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->fp_QTabBar_create_2208 (arg1, arg2, arg3); } @@ -2356,7 +2356,7 @@ static void _call_emitter_currentChanged_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QTabBar_Adaptor *)cls)->emitter_QTabBar_currentChanged_767 (arg1); } @@ -2374,7 +2374,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTabBar_Adaptor *)cls)->emitter_QTabBar_customContextMenuRequested_1916 (arg1); } @@ -2418,8 +2418,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->fp_QTabBar_destroy_1620 (arg1, arg2); } @@ -2438,7 +2438,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTabBar_Adaptor *)cls)->emitter_QTabBar_destroyed_1302 (arg1); } @@ -2840,8 +2840,8 @@ static void _call_fp_initStyleOption_c2803 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionTab *arg1 = args.read (heap); - int arg2 = args.read (heap); + QStyleOptionTab *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabBar_Adaptor *)cls)->fp_QTabBar_initStyleOption_c2803 (arg1, arg2); } @@ -2907,7 +2907,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabBar_Adaptor *)cls)->fp_QTabBar_isSignalConnected_c2394 (arg1)); } @@ -3254,7 +3254,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabBar_Adaptor *)cls)->fp_QTabBar_receivers_c1731 (arg1)); } @@ -3433,7 +3433,7 @@ static void _call_emitter_tabBarClicked_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QTabBar_Adaptor *)cls)->emitter_QTabBar_tabBarClicked_767 (arg1); } @@ -3451,7 +3451,7 @@ static void _call_emitter_tabBarDoubleClicked_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QTabBar_Adaptor *)cls)->emitter_QTabBar_tabBarDoubleClicked_767 (arg1); } @@ -3469,7 +3469,7 @@ static void _call_emitter_tabCloseRequested_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QTabBar_Adaptor *)cls)->emitter_QTabBar_tabCloseRequested_767 (arg1); } @@ -3533,8 +3533,8 @@ static void _call_emitter_tabMoved_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTabBar_Adaptor *)cls)->emitter_QTabBar_tabMoved_1426 (arg1, arg2); } @@ -3686,7 +3686,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QTabBar_Adaptor *)cls)->emitter_QTabBar_windowIconChanged_1787 (arg1); } @@ -3704,7 +3704,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTabBar_Adaptor *)cls)->emitter_QTabBar_windowIconTextChanged_2025 (arg1); } @@ -3722,7 +3722,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTabBar_Adaptor *)cls)->emitter_QTabBar_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc index cce4c2342..760fbfe7e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTabWidget.cc @@ -118,8 +118,8 @@ static void _call_f_addTab_3232 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget *)cls)->addTab (arg1, arg2)); } @@ -142,9 +142,9 @@ static void _call_f_addTab_4911 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget *)cls)->addTab (arg1, arg2, arg3)); } @@ -179,7 +179,7 @@ static void _call_f_cornerWidget_c1366 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner)); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner), heap); ret.write ((QWidget *)((QTabWidget *)cls)->cornerWidget (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -288,7 +288,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget *)cls)->heightForWidth (arg1)); } @@ -322,7 +322,7 @@ static void _call_f_indexOf_c1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget *)cls)->indexOf (arg1)); } @@ -345,9 +345,9 @@ static void _call_f_insertTab_3891 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget *)cls)->insertTab (arg1, arg2, arg3)); } @@ -372,10 +372,10 @@ static void _call_f_insertTab_5570 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const QIcon &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + const QIcon &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget *)cls)->insertTab (arg1, arg2, arg3, arg4)); } @@ -409,7 +409,7 @@ static void _call_f_isTabEnabled_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabWidget *)cls)->isTabEnabled (arg1)); } @@ -443,7 +443,7 @@ static void _call_f_removeTab_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->removeTab (arg1); } @@ -465,8 +465,8 @@ static void _call_f_setCornerWidget_2573 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner)); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::TopRightCorner), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setCornerWidget (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -486,7 +486,7 @@ static void _call_f_setCurrentIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setCurrentIndex (arg1); } @@ -506,7 +506,7 @@ static void _call_f_setCurrentWidget_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setCurrentWidget (arg1); } @@ -526,7 +526,7 @@ static void _call_f_setDocumentMode_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setDocumentMode (arg1); } @@ -546,7 +546,7 @@ static void _call_f_setElideMode_2042 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setElideMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -566,7 +566,7 @@ static void _call_f_setIconSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setIconSize (arg1); } @@ -586,7 +586,7 @@ static void _call_f_setMovable_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setMovable (arg1); } @@ -606,7 +606,7 @@ static void _call_f_setTabBarAutoHide_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabBarAutoHide (arg1); } @@ -628,8 +628,8 @@ static void _call_f_setTabEnabled_1523 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabEnabled (arg1, arg2); } @@ -651,8 +651,8 @@ static void _call_f_setTabIcon_2446 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabIcon (arg1, arg2); } @@ -672,7 +672,7 @@ static void _call_f_setTabPosition_2656 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabPosition (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -692,7 +692,7 @@ static void _call_f_setTabShape_2300 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabShape (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -714,8 +714,8 @@ static void _call_f_setTabText_2684 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabText (arg1, arg2); } @@ -737,8 +737,8 @@ static void _call_f_setTabToolTip_2684 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabToolTip (arg1, arg2); } @@ -760,8 +760,8 @@ static void _call_f_setTabWhatsThis_2684 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabWhatsThis (arg1, arg2); } @@ -781,7 +781,7 @@ static void _call_f_setTabsClosable_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setTabsClosable (arg1); } @@ -801,7 +801,7 @@ static void _call_f_setUsesScrollButtons_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget *)cls)->setUsesScrollButtons (arg1); } @@ -866,7 +866,7 @@ static void _call_f_tabIcon_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QTabWidget *)cls)->tabIcon (arg1)); } @@ -915,7 +915,7 @@ static void _call_f_tabText_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTabWidget *)cls)->tabText (arg1)); } @@ -934,7 +934,7 @@ static void _call_f_tabToolTip_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTabWidget *)cls)->tabToolTip (arg1)); } @@ -953,7 +953,7 @@ static void _call_f_tabWhatsThis_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTabWidget *)cls)->tabWhatsThis (arg1)); } @@ -1002,7 +1002,7 @@ static void _call_f_widget_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QTabWidget *)cls)->widget (arg1)); } @@ -1025,9 +1025,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTabWidget::tr (arg1, arg2, arg3)); } @@ -1050,9 +1050,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTabWidget::trUtf8 (arg1, arg2, arg3)); } @@ -2032,7 +2032,7 @@ static void _call_ctor_QTabWidget_Adaptor_1315 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTabWidget_Adaptor (arg1)); } @@ -2174,9 +2174,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->fp_QTabWidget_create_2208 (arg1, arg2, arg3); } @@ -2195,7 +2195,7 @@ static void _call_emitter_currentChanged_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QTabWidget_Adaptor *)cls)->emitter_QTabWidget_currentChanged_767 (arg1); } @@ -2213,7 +2213,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTabWidget_Adaptor *)cls)->emitter_QTabWidget_customContextMenuRequested_1916 (arg1); } @@ -2257,8 +2257,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->fp_QTabWidget_destroy_1620 (arg1, arg2); } @@ -2277,7 +2277,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTabWidget_Adaptor *)cls)->emitter_QTabWidget_destroyed_1302 (arg1); } @@ -2677,7 +2677,7 @@ static void _call_fp_initStyleOption_c3247 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionTabWidgetFrame *arg1 = args.read (heap); + QStyleOptionTabWidgetFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->fp_QTabWidget_initStyleOption_c3247 (arg1); } @@ -2743,7 +2743,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTabWidget_Adaptor *)cls)->fp_QTabWidget_isSignalConnected_c2394 (arg1)); } @@ -3067,7 +3067,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTabWidget_Adaptor *)cls)->fp_QTabWidget_receivers_c1731 (arg1)); } @@ -3160,7 +3160,7 @@ static void _call_fp_setTabBar_1259 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTabBar *arg1 = args.read (heap); + QTabBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTabWidget_Adaptor *)cls)->fp_QTabWidget_setTabBar_1259 (arg1); } @@ -3265,7 +3265,7 @@ static void _call_emitter_tabBarClicked_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QTabWidget_Adaptor *)cls)->emitter_QTabWidget_tabBarClicked_767 (arg1); } @@ -3283,7 +3283,7 @@ static void _call_emitter_tabBarDoubleClicked_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QTabWidget_Adaptor *)cls)->emitter_QTabWidget_tabBarDoubleClicked_767 (arg1); } @@ -3301,7 +3301,7 @@ static void _call_emitter_tabCloseRequested_767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QTabWidget_Adaptor *)cls)->emitter_QTabWidget_tabCloseRequested_767 (arg1); } @@ -3454,7 +3454,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QTabWidget_Adaptor *)cls)->emitter_QTabWidget_windowIconChanged_1787 (arg1); } @@ -3472,7 +3472,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTabWidget_Adaptor *)cls)->emitter_QTabWidget_windowIconTextChanged_2025 (arg1); } @@ -3490,7 +3490,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTabWidget_Adaptor *)cls)->emitter_QTabWidget_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc index de06c7945..82a55608a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableView.cc @@ -139,7 +139,7 @@ static void _call_f_columnAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->columnAt (arg1)); } @@ -160,8 +160,8 @@ static void _call_f_columnSpan_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->columnSpan (arg1, arg2)); } @@ -180,7 +180,7 @@ static void _call_f_columnViewportPosition_c767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->columnViewportPosition (arg1)); } @@ -199,7 +199,7 @@ static void _call_f_columnWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->columnWidth (arg1)); } @@ -249,7 +249,7 @@ static void _call_f_hideColumn_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->hideColumn (arg1); } @@ -269,7 +269,7 @@ static void _call_f_hideRow_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->hideRow (arg1); } @@ -304,7 +304,7 @@ static void _call_f_indexAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTableView *)cls)->indexAt (arg1)); } @@ -323,7 +323,7 @@ static void _call_f_isColumnHidden_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView *)cls)->isColumnHidden (arg1)); } @@ -357,7 +357,7 @@ static void _call_f_isRowHidden_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView *)cls)->isRowHidden (arg1)); } @@ -391,7 +391,7 @@ static void _call_f_resizeColumnToContents_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->resizeColumnToContents (arg1); } @@ -427,7 +427,7 @@ static void _call_f_resizeRowToContents_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->resizeRowToContents (arg1); } @@ -463,7 +463,7 @@ static void _call_f_rowAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->rowAt (arg1)); } @@ -482,7 +482,7 @@ static void _call_f_rowHeight_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->rowHeight (arg1)); } @@ -503,8 +503,8 @@ static void _call_f_rowSpan_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->rowSpan (arg1, arg2)); } @@ -523,7 +523,7 @@ static void _call_f_rowViewportPosition_c767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView *)cls)->rowViewportPosition (arg1)); } @@ -544,8 +544,8 @@ static void _call_f_scrollTo_5576 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->scrollTo (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -565,7 +565,7 @@ static void _call_f_selectColumn_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->selectColumn (arg1); } @@ -585,7 +585,7 @@ static void _call_f_selectRow_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->selectRow (arg1); } @@ -607,8 +607,8 @@ static void _call_f_setColumnHidden_1523 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setColumnHidden (arg1, arg2); } @@ -630,8 +630,8 @@ static void _call_f_setColumnWidth_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setColumnWidth (arg1, arg2); } @@ -651,7 +651,7 @@ static void _call_f_setCornerButtonEnabled_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setCornerButtonEnabled (arg1); } @@ -671,7 +671,7 @@ static void _call_f_setGridStyle_1569 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setGridStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -691,7 +691,7 @@ static void _call_f_setHorizontalHeader_1699 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHeaderView *arg1 = args.read (heap); + QHeaderView *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setHorizontalHeader (arg1); } @@ -711,7 +711,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setModel (arg1); } @@ -731,7 +731,7 @@ static void _call_f_setRootIndex_2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setRootIndex (arg1); } @@ -753,8 +753,8 @@ static void _call_f_setRowHeight_1426 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setRowHeight (arg1, arg2); } @@ -776,8 +776,8 @@ static void _call_f_setRowHidden_1523 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setRowHidden (arg1, arg2); } @@ -797,7 +797,7 @@ static void _call_f_setSelectionModel_2533 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setSelectionModel (arg1); } @@ -817,7 +817,7 @@ static void _call_f_setShowGrid_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setShowGrid (arg1); } @@ -837,7 +837,7 @@ static void _call_f_setSortingEnabled_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setSortingEnabled (arg1); } @@ -863,10 +863,10 @@ static void _call_f_setSpan_2744 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setSpan (arg1, arg2, arg3, arg4); } @@ -886,7 +886,7 @@ static void _call_f_setVerticalHeader_1699 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHeaderView *arg1 = args.read (heap); + QHeaderView *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setVerticalHeader (arg1); } @@ -906,7 +906,7 @@ static void _call_f_setWordWrap_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->setWordWrap (arg1); } @@ -926,7 +926,7 @@ static void _call_f_showColumn_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->showColumn (arg1); } @@ -961,7 +961,7 @@ static void _call_f_showRow_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->showRow (arg1); } @@ -983,8 +983,8 @@ static void _call_f_sortByColumn_2340 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->sortByColumn (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1004,7 +1004,7 @@ static void _call_f_sortByColumn_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView *)cls)->sortByColumn (arg1); } @@ -1039,7 +1039,7 @@ static void _call_f_visualRect_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTableView *)cls)->visualRect (arg1)); } @@ -1077,9 +1077,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTableView::tr (arg1, arg2, arg3)); } @@ -1102,9 +1102,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTableView::trUtf8 (arg1, arg2, arg3)); } @@ -2866,7 +2866,7 @@ static void _call_ctor_QTableView_Adaptor_1315 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTableView_Adaptor (arg1)); } @@ -2908,7 +2908,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_activated_2395 (arg1); } @@ -2974,7 +2974,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_clicked_2395 (arg1); } @@ -3045,8 +3045,8 @@ static void _call_fp_columnCountChanged_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_columnCountChanged_1426 (arg1, arg2); } @@ -3069,9 +3069,9 @@ static void _call_fp_columnMoved_2085 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_columnMoved_2085 (arg1, arg2, arg3); } @@ -3094,9 +3094,9 @@ static void _call_fp_columnResized_2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_columnResized_2085 (arg1, arg2, arg3); } @@ -3167,9 +3167,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_create_2208 (arg1, arg2, arg3); } @@ -3215,7 +3215,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_customContextMenuRequested_1916 (arg1); } @@ -3289,8 +3289,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_destroy_1620 (arg1, arg2); } @@ -3309,7 +3309,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_destroyed_1302 (arg1); } @@ -3400,7 +3400,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_doubleClicked_2395 (arg1); } @@ -3490,7 +3490,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_drawFrame_1426 (arg1); } @@ -3624,7 +3624,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_entered_2395 (arg1); } @@ -3952,7 +3952,7 @@ static void _call_emitter_iconSizeChanged_1805 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_iconSizeChanged_1805 (arg1); } @@ -4017,7 +4017,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_initStyleOption_c2356 (arg1); } @@ -4106,7 +4106,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableView_Adaptor *)cls)->fp_QTableView_isSignalConnected_c2394 (arg1)); } @@ -4480,7 +4480,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_pressed_2395 (arg1); } @@ -4498,7 +4498,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableView_Adaptor *)cls)->fp_QTableView_receivers_c1731 (arg1)); } @@ -4585,8 +4585,8 @@ static void _call_fp_rowCountChanged_1426 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_rowCountChanged_1426 (arg1, arg2); } @@ -4609,9 +4609,9 @@ static void _call_fp_rowMoved_2085 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_rowMoved_2085 (arg1, arg2, arg3); } @@ -4634,9 +4634,9 @@ static void _call_fp_rowResized_2085 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_rowResized_2085 (arg1, arg2, arg3); } @@ -4759,8 +4759,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_scrollDirtyRegion_1426 (arg1, arg2); } @@ -4926,7 +4926,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_setDirtyRegion_2006 (arg1); } @@ -4945,7 +4945,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_setHorizontalStepsPerItem_767 (arg1); } @@ -5063,7 +5063,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_setState_2776 (arg1); } @@ -5082,7 +5082,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_setVerticalStepsPerItem_767 (arg1); } @@ -5107,10 +5107,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -5129,7 +5129,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableView_Adaptor *)cls)->fp_QTableView_setViewportMargins_2115 (arg1); } @@ -5735,7 +5735,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_windowIconChanged_1787 (arg1); } @@ -5753,7 +5753,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_windowIconTextChanged_2025 (arg1); } @@ -5771,7 +5771,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTableView_Adaptor *)cls)->emitter_QTableView_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc index 4ad3b07c3..f9a6da15e 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidget.cc @@ -128,8 +128,8 @@ static void _call_f_cellWidget_c1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QTableWidget *)cls)->cellWidget (arg1, arg2)); } @@ -180,7 +180,7 @@ static void _call_f_closePersistentEditor_2202 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->closePersistentEditor (arg1); } @@ -200,7 +200,7 @@ static void _call_f_column_c2897 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem *arg1 = args.read (heap); + const QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget *)cls)->column (arg1)); } @@ -279,7 +279,7 @@ static void _call_f_editItem_2202 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->editItem (arg1); } @@ -301,8 +301,8 @@ static void _call_f_findItems_c4233 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); ret.write > ((QList)((QTableWidget *)cls)->findItems (arg1, arg2)); } @@ -321,7 +321,7 @@ static void _call_f_horizontalHeaderItem_c767 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->horizontalHeaderItem (arg1)); } @@ -340,7 +340,7 @@ static void _call_f_insertColumn_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->insertColumn (arg1); } @@ -360,7 +360,7 @@ static void _call_f_insertRow_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->insertRow (arg1); } @@ -380,7 +380,7 @@ static void _call_f_isItemSelected_c2897 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem *arg1 = args.read (heap); + const QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget *)cls)->isItemSelected (arg1)); } @@ -416,8 +416,8 @@ static void _call_f_item_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->item (arg1, arg2)); } @@ -436,7 +436,7 @@ static void _call_f_itemAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->itemAt (arg1)); } @@ -457,8 +457,8 @@ static void _call_f_itemAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->itemAt (arg1, arg2)); } @@ -492,7 +492,7 @@ static void _call_f_openPersistentEditor_2202 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->openPersistentEditor (arg1); } @@ -514,8 +514,8 @@ static void _call_f_removeCellWidget_1426 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->removeCellWidget (arg1, arg2); } @@ -535,7 +535,7 @@ static void _call_f_removeColumn_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->removeColumn (arg1); } @@ -555,7 +555,7 @@ static void _call_f_removeRow_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->removeRow (arg1); } @@ -575,7 +575,7 @@ static void _call_f_row_c2897 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem *arg1 = args.read (heap); + const QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget *)cls)->row (arg1)); } @@ -611,8 +611,8 @@ static void _call_f_scrollToItem_6078 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->scrollToItem (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -666,9 +666,9 @@ static void _call_f_setCellWidget_2633 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setCellWidget (arg1, arg2, arg3); } @@ -688,7 +688,7 @@ static void _call_f_setColumnCount_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setColumnCount (arg1); } @@ -710,8 +710,8 @@ static void _call_f_setCurrentCell_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setCurrentCell (arg1, arg2); } @@ -735,9 +735,9 @@ static void _call_f_setCurrentCell_5789 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setCurrentCell (arg1, arg2, arg3); } @@ -757,7 +757,7 @@ static void _call_f_setCurrentItem_2202 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setCurrentItem (arg1); } @@ -779,8 +779,8 @@ static void _call_f_setCurrentItem_6565 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setCurrentItem (arg1, arg2); } @@ -802,8 +802,8 @@ static void _call_f_setHorizontalHeaderItem_2861 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QTableWidgetItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QTableWidgetItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setHorizontalHeaderItem (arg1, arg2); } @@ -823,7 +823,7 @@ static void _call_f_setHorizontalHeaderLabels_2437 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setHorizontalHeaderLabels (arg1); } @@ -847,9 +847,9 @@ static void _call_f_setItem_3520 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QTableWidgetItem *arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QTableWidgetItem *arg3 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg3); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setItem (arg1, arg2, arg3); @@ -870,7 +870,7 @@ static void _call_f_setItemPrototype_2897 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem *arg1 = args.read (heap); + const QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setItemPrototype (arg1); } @@ -892,8 +892,8 @@ static void _call_f_setItemSelected_3653 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setItemSelected (arg1, arg2); } @@ -915,8 +915,8 @@ static void _call_f_setRangeSelected_4677 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetSelectionRange &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QTableWidgetSelectionRange &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setRangeSelected (arg1, arg2); } @@ -936,7 +936,7 @@ static void _call_f_setRowCount_767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setRowCount (arg1); } @@ -956,7 +956,7 @@ static void _call_f_setSortingEnabled_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setSortingEnabled (arg1); } @@ -978,8 +978,8 @@ static void _call_f_setVerticalHeaderItem_2861 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QTableWidgetItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QTableWidgetItem *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setVerticalHeaderItem (arg1, arg2); } @@ -999,7 +999,7 @@ static void _call_f_setVerticalHeaderLabels_2437 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->setVerticalHeaderLabels (arg1); } @@ -1021,8 +1021,8 @@ static void _call_f_sortItems_2340 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder)); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::AscendingOrder), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget *)cls)->sortItems (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1042,7 +1042,7 @@ static void _call_f_takeHorizontalHeaderItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->takeHorizontalHeaderItem (arg1)); } @@ -1063,8 +1063,8 @@ static void _call_f_takeItem_1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->takeItem (arg1, arg2)); } @@ -1083,7 +1083,7 @@ static void _call_f_takeVerticalHeaderItem_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->takeVerticalHeaderItem (arg1)); } @@ -1102,7 +1102,7 @@ static void _call_f_verticalHeaderItem_c767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget *)cls)->verticalHeaderItem (arg1)); } @@ -1121,7 +1121,7 @@ static void _call_f_visualColumn_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget *)cls)->visualColumn (arg1)); } @@ -1140,7 +1140,7 @@ static void _call_f_visualItemRect_c2897 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem *arg1 = args.read (heap); + const QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTableWidget *)cls)->visualItemRect (arg1)); } @@ -1159,7 +1159,7 @@ static void _call_f_visualRow_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget *)cls)->visualRow (arg1)); } @@ -1182,9 +1182,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTableWidget::tr (arg1, arg2, arg3)); } @@ -1207,9 +1207,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTableWidget::trUtf8 (arg1, arg2, arg3)); } @@ -3155,7 +3155,7 @@ static void _call_ctor_QTableWidget_Adaptor_1315 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTableWidget_Adaptor (arg1)); } @@ -3177,9 +3177,9 @@ static void _call_ctor_QTableWidget_Adaptor_2633 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTableWidget_Adaptor (arg1, arg2, arg3)); } @@ -3221,7 +3221,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_activated_2395 (arg1); } @@ -3241,8 +3241,8 @@ static void _call_emitter_cellActivated_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_cellActivated_1426 (arg1, arg2); } @@ -3262,8 +3262,8 @@ static void _call_emitter_cellChanged_1426 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_cellChanged_1426 (arg1, arg2); } @@ -3283,8 +3283,8 @@ static void _call_emitter_cellClicked_1426 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_cellClicked_1426 (arg1, arg2); } @@ -3304,8 +3304,8 @@ static void _call_emitter_cellDoubleClicked_1426 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_cellDoubleClicked_1426 (arg1, arg2); } @@ -3325,8 +3325,8 @@ static void _call_emitter_cellEntered_1426 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_cellEntered_1426 (arg1, arg2); } @@ -3346,8 +3346,8 @@ static void _call_emitter_cellPressed_1426 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_cellPressed_1426 (arg1, arg2); } @@ -3413,7 +3413,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_clicked_2395 (arg1); } @@ -3484,8 +3484,8 @@ static void _call_fp_columnCountChanged_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_columnCountChanged_1426 (arg1, arg2); } @@ -3508,9 +3508,9 @@ static void _call_fp_columnMoved_2085 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_columnMoved_2085 (arg1, arg2, arg3); } @@ -3533,9 +3533,9 @@ static void _call_fp_columnResized_2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_columnResized_2085 (arg1, arg2, arg3); } @@ -3606,9 +3606,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_create_2208 (arg1, arg2, arg3); } @@ -3633,10 +3633,10 @@ static void _call_emitter_currentCellChanged_2744 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_currentCellChanged_2744 (arg1, arg2, arg3, arg4); } @@ -3683,8 +3683,8 @@ static void _call_emitter_currentItemChanged_4296 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); - QTableWidgetItem *arg2 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QTableWidgetItem *arg2 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_currentItemChanged_4296 (arg1, arg2); } @@ -3702,7 +3702,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_customContextMenuRequested_1916 (arg1); } @@ -3776,8 +3776,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_destroy_1620 (arg1, arg2); } @@ -3796,7 +3796,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_destroyed_1302 (arg1); } @@ -3887,7 +3887,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_doubleClicked_2395 (arg1); } @@ -3977,7 +3977,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_drawFrame_1426 (arg1); } @@ -4143,7 +4143,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_entered_2395 (arg1); } @@ -4471,7 +4471,7 @@ static void _call_emitter_iconSizeChanged_1805 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_iconSizeChanged_1805 (arg1); } @@ -4512,7 +4512,7 @@ static void _call_fp_indexFromItem_c2202 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTableWidget_Adaptor *)cls)->fp_QTableWidget_indexFromItem_c2202 (arg1)); } @@ -4554,7 +4554,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_initStyleOption_c2356 (arg1); } @@ -4643,7 +4643,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidget_Adaptor *)cls)->fp_QTableWidget_isSignalConnected_c2394 (arg1)); } @@ -4661,7 +4661,7 @@ static void _call_emitter_itemActivated_2202 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_itemActivated_2202 (arg1); } @@ -4679,7 +4679,7 @@ static void _call_emitter_itemChanged_2202 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_itemChanged_2202 (arg1); } @@ -4697,7 +4697,7 @@ static void _call_emitter_itemClicked_2202 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_itemClicked_2202 (arg1); } @@ -4715,7 +4715,7 @@ static void _call_emitter_itemDoubleClicked_2202 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_itemDoubleClicked_2202 (arg1); } @@ -4733,7 +4733,7 @@ static void _call_emitter_itemEntered_2202 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_itemEntered_2202 (arg1); } @@ -4751,7 +4751,7 @@ static void _call_fp_itemFromIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem *)((QTableWidget_Adaptor *)cls)->fp_QTableWidget_itemFromIndex_c2395 (arg1)); } @@ -4769,7 +4769,7 @@ static void _call_emitter_itemPressed_2202 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTableWidgetItem *arg1 = args.read (heap); + QTableWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_itemPressed_2202 (arg1); } @@ -4801,7 +4801,7 @@ static void _call_fp_items_c2168 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QTableWidget_Adaptor *)cls)->fp_QTableWidget_items_c2168 (arg1)); } @@ -5217,7 +5217,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_pressed_2395 (arg1); } @@ -5235,7 +5235,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTableWidget_Adaptor *)cls)->fp_QTableWidget_receivers_c1731 (arg1)); } @@ -5322,8 +5322,8 @@ static void _call_fp_rowCountChanged_1426 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_rowCountChanged_1426 (arg1, arg2); } @@ -5346,9 +5346,9 @@ static void _call_fp_rowMoved_2085 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_rowMoved_2085 (arg1, arg2, arg3); } @@ -5371,9 +5371,9 @@ static void _call_fp_rowResized_2085 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_rowResized_2085 (arg1, arg2, arg3); } @@ -5496,8 +5496,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_scrollDirtyRegion_1426 (arg1, arg2); } @@ -5663,7 +5663,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_setDirtyRegion_2006 (arg1); } @@ -5682,7 +5682,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_setHorizontalStepsPerItem_767 (arg1); } @@ -5776,7 +5776,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_setState_2776 (arg1); } @@ -5795,7 +5795,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_setVerticalStepsPerItem_767 (arg1); } @@ -5820,10 +5820,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -5842,7 +5842,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidget_Adaptor *)cls)->fp_QTableWidget_setViewportMargins_2115 (arg1); } @@ -6467,7 +6467,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_windowIconChanged_1787 (arg1); } @@ -6485,7 +6485,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_windowIconTextChanged_2025 (arg1); } @@ -6503,7 +6503,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTableWidget_Adaptor *)cls)->emitter_QTableWidget_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetItem.cc index 77f573376..577cd1e16 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetItem.cc @@ -132,7 +132,7 @@ static void _call_f_data_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTableWidgetItem *)cls)->data (arg1)); } @@ -226,7 +226,7 @@ static void _call_f_operator_lt__c2893 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem &arg1 = args.read (heap); + const QTableWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTableWidgetItem *)cls)->operator< (arg1)); } @@ -245,7 +245,7 @@ static void _call_f_operator_eq__2893 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem &arg1 = args.read (heap); + const QTableWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTableWidgetItem &)((QTableWidgetItem *)cls)->operator= (arg1)); } @@ -264,7 +264,7 @@ static void _call_f_read_1697 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->read (arg1); } @@ -299,7 +299,7 @@ static void _call_f_setBackground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setBackground (arg1); } @@ -319,7 +319,7 @@ static void _call_f_setBackgroundColor_1905 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setBackgroundColor (arg1); } @@ -339,7 +339,7 @@ static void _call_f_setCheckState_1740 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setCheckState (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -361,8 +361,8 @@ static void _call_f_setData_2778 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setData (arg1, arg2); } @@ -382,7 +382,7 @@ static void _call_f_setFlags_2222 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setFlags (arg1); } @@ -402,7 +402,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setFont (arg1); } @@ -422,7 +422,7 @@ static void _call_f_setForeground_1910 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBrush &arg1 = args.read (heap); + const QBrush &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setForeground (arg1); } @@ -442,7 +442,7 @@ static void _call_f_setIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setIcon (arg1); } @@ -462,7 +462,7 @@ static void _call_f_setSelected_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setSelected (arg1); } @@ -482,7 +482,7 @@ static void _call_f_setSizeHint_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setSizeHint (arg1); } @@ -502,7 +502,7 @@ static void _call_f_setStatusTip_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setStatusTip (arg1); } @@ -522,7 +522,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setText (arg1); } @@ -542,7 +542,7 @@ static void _call_f_setTextAlignment_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setTextAlignment (arg1); } @@ -562,7 +562,7 @@ static void _call_f_setTextColor_1905 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setTextColor (arg1); } @@ -582,7 +582,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setToolTip (arg1); } @@ -602,7 +602,7 @@ static void _call_f_setWhatsThis_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->setWhatsThis (arg1); } @@ -757,7 +757,7 @@ static void _call_f_write_c1697 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTableWidgetItem *)cls)->write (arg1); } @@ -982,7 +982,7 @@ static void _call_ctor_QTableWidgetItem_Adaptor_767 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(QTableWidgetItem::Type); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTableWidgetItem::Type, heap); ret.write (new QTableWidgetItem_Adaptor (arg1)); } @@ -1002,8 +1002,8 @@ static void _call_ctor_QTableWidgetItem_Adaptor_2684 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(QTableWidgetItem::Type); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTableWidgetItem::Type, heap); ret.write (new QTableWidgetItem_Adaptor (arg1, arg2)); } @@ -1025,9 +1025,9 @@ static void _call_ctor_QTableWidgetItem_Adaptor_4363 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(QTableWidgetItem::Type); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTableWidgetItem::Type, heap); ret.write (new QTableWidgetItem_Adaptor (arg1, arg2, arg3)); } @@ -1045,7 +1045,7 @@ static void _call_ctor_QTableWidgetItem_Adaptor_2893 (const qt_gsi::GenericStati { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetItem &arg1 = args.read (heap); + const QTableWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTableWidgetItem_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetSelectionRange.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetSelectionRange.cc index 05bdb1245..5af7b99af 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetSelectionRange.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTableWidgetSelectionRange.cc @@ -71,10 +71,10 @@ static void _call_ctor_QTableWidgetSelectionRange_2744 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); ret.write (new QTableWidgetSelectionRange (arg1, arg2, arg3, arg4)); } @@ -93,7 +93,7 @@ static void _call_ctor_QTableWidgetSelectionRange_3921 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTableWidgetSelectionRange &arg1 = args.read (heap); + const QTableWidgetSelectionRange &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTableWidgetSelectionRange (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTapAndHoldGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTapAndHoldGesture.cc index 777a1682e..717599358 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTapAndHoldGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTapAndHoldGesture.cc @@ -85,7 +85,7 @@ static void _call_f_setPosition_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapAndHoldGesture *)cls)->setPosition (arg1); } @@ -105,7 +105,7 @@ static void _call_f_setTimeout_767 (const qt_gsi::GenericStaticMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QTapAndHoldGesture::setTimeout (arg1); } @@ -144,9 +144,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTapAndHoldGesture::tr (arg1, arg2, arg3)); } @@ -169,9 +169,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTapAndHoldGesture::trUtf8 (arg1, arg2, arg3)); } @@ -360,7 +360,7 @@ static void _call_ctor_QTapAndHoldGesture_Adaptor_1302 (const qt_gsi::GenericSta { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTapAndHoldGesture_Adaptor (arg1)); } @@ -426,7 +426,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTapAndHoldGesture_Adaptor *)cls)->emitter_QTapAndHoldGesture_destroyed_1302 (arg1); } @@ -517,7 +517,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTapAndHoldGesture_Adaptor *)cls)->fp_QTapAndHoldGesture_isSignalConnected_c2394 (arg1)); } @@ -535,7 +535,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTapAndHoldGesture_Adaptor *)cls)->fp_QTapAndHoldGesture_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTapGesture.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTapGesture.cc index 87a1e8619..3e961fc9f 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTapGesture.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTapGesture.cc @@ -85,7 +85,7 @@ static void _call_f_setPosition_1986 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPointF &arg1 = args.read (heap); + const QPointF &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTapGesture *)cls)->setPosition (arg1); } @@ -109,9 +109,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTapGesture::tr (arg1, arg2, arg3)); } @@ -134,9 +134,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTapGesture::trUtf8 (arg1, arg2, arg3)); } @@ -323,7 +323,7 @@ static void _call_ctor_QTapGesture_Adaptor_1302 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTapGesture_Adaptor (arg1)); } @@ -389,7 +389,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTapGesture_Adaptor *)cls)->emitter_QTapGesture_destroyed_1302 (arg1); } @@ -480,7 +480,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTapGesture_Adaptor *)cls)->fp_QTapGesture_isSignalConnected_c2394 (arg1)); } @@ -498,7 +498,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTapGesture_Adaptor *)cls)->fp_QTapGesture_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc index e36567ed1..a890094e8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextBrowser.cc @@ -203,7 +203,7 @@ static void _call_f_historyTitle_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextBrowser *)cls)->historyTitle (arg1)); } @@ -222,7 +222,7 @@ static void _call_f_historyUrl_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl)((QTextBrowser *)cls)->historyUrl (arg1)); } @@ -289,8 +289,8 @@ static void _call_f_loadResource_2360 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextBrowser *)cls)->loadResource (arg1, arg2)); } @@ -370,7 +370,7 @@ static void _call_f_setOpenExternalLinks_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser *)cls)->setOpenExternalLinks (arg1); } @@ -390,7 +390,7 @@ static void _call_f_setOpenLinks_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser *)cls)->setOpenLinks (arg1); } @@ -410,7 +410,7 @@ static void _call_f_setSearchPaths_2437 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser *)cls)->setSearchPaths (arg1); } @@ -430,7 +430,7 @@ static void _call_f_setSource_1701 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser *)cls)->setSource (arg1); } @@ -469,9 +469,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextBrowser::tr (arg1, arg2, arg3)); } @@ -494,9 +494,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextBrowser::trUtf8 (arg1, arg2, arg3)); } @@ -1730,7 +1730,7 @@ static void _call_ctor_QTextBrowser_Adaptor_1315 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTextBrowser_Adaptor (arg1)); } @@ -1772,7 +1772,7 @@ static void _call_emitter_anchorClicked_1701 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_anchorClicked_1701 (arg1); } @@ -1810,7 +1810,7 @@ static void _call_emitter_backwardAvailable_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_backwardAvailable_864 (arg1); } @@ -1947,7 +1947,7 @@ static void _call_emitter_copyAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_copyAvailable_864 (arg1); } @@ -1969,9 +1969,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_create_2208 (arg1, arg2, arg3); } @@ -2009,7 +2009,7 @@ static void _call_emitter_currentCharFormatChanged_2814 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_currentCharFormatChanged_2814 (arg1); } @@ -2041,7 +2041,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_customContextMenuRequested_1916 (arg1); } @@ -2085,8 +2085,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_destroy_1620 (arg1, arg2); } @@ -2105,7 +2105,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_destroyed_1302 (arg1); } @@ -2243,7 +2243,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_drawFrame_1426 (arg1); } @@ -2478,7 +2478,7 @@ static void _call_emitter_forwardAvailable_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_forwardAvailable_864 (arg1); } @@ -2562,7 +2562,7 @@ static void _call_emitter_highlighted_1701 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_highlighted_1701 (arg1); } @@ -2580,7 +2580,7 @@ static void _call_emitter_highlighted_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_highlighted_2025 (arg1); } @@ -2656,7 +2656,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_initStyleOption_c2356 (arg1); } @@ -2746,7 +2746,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_isSignalConnected_c2394 (arg1)); } @@ -3096,7 +3096,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_receivers_c1731 (arg1)); } @@ -3137,7 +3137,7 @@ static void _call_emitter_redoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_redoAvailable_864 (arg1); } @@ -3298,10 +3298,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -3320,7 +3320,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_setViewportMargins_2115 (arg1); } @@ -3449,7 +3449,7 @@ static void _call_emitter_sourceChanged_1701 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_sourceChanged_1701 (arg1); } @@ -3529,7 +3529,7 @@ static void _call_emitter_undoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_undoAvailable_864 (arg1); } @@ -3642,7 +3642,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_windowIconChanged_1787 (arg1); } @@ -3660,7 +3660,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_windowIconTextChanged_2025 (arg1); } @@ -3678,7 +3678,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTextBrowser_Adaptor *)cls)->emitter_QTextBrowser_windowTitleChanged_2025 (arg1); } @@ -3696,7 +3696,7 @@ static void _call_fp_zoomInF_970 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextBrowser_Adaptor *)cls)->fp_QTextBrowser_zoomInF_970 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc index 0484f8d0c..0f29ecb9a 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTextEdit.cc @@ -155,7 +155,7 @@ static void _call_f_anchorAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTextEdit *)cls)->anchorAt (arg1)); } @@ -174,7 +174,7 @@ static void _call_f_append_2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->append (arg1); } @@ -271,7 +271,7 @@ static void _call_f_createStandardContextMenu_1916 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QMenu *)((QTextEdit *)cls)->createStandardContextMenu (arg1)); } @@ -320,7 +320,7 @@ static void _call_f_cursorForPosition_c1916 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTextCursor)((QTextEdit *)cls)->cursorForPosition (arg1)); } @@ -339,7 +339,7 @@ static void _call_f_cursorRect_c2453 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTextEdit *)cls)->cursorRect (arg1)); } @@ -467,8 +467,8 @@ static void _call_f_find_5261 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((bool)((QTextEdit *)cls)->find (arg1, arg2)); } @@ -489,8 +489,8 @@ static void _call_f_find_5217 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegExp &arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + const QRegExp &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((bool)((QTextEdit *)cls)->find (arg1, arg2)); } @@ -584,7 +584,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QTextEdit *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -605,8 +605,8 @@ static void _call_f_inputMethodQuery_c3554 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QVariant arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QVariant arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextEdit *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -625,7 +625,7 @@ static void _call_f_insertHtml_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->insertHtml (arg1); } @@ -645,7 +645,7 @@ static void _call_f_insertPlainText_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->insertPlainText (arg1); } @@ -727,8 +727,8 @@ static void _call_f_loadResource_2360 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTextEdit *)cls)->loadResource (arg1, arg2)); } @@ -747,7 +747,7 @@ static void _call_f_mergeCurrentCharFormat_2814 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->mergeCurrentCharFormat (arg1); } @@ -769,8 +769,8 @@ static void _call_f_moveCursor_5424 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor)); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QTextCursor::MoveAnchor), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->moveCursor (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -836,7 +836,7 @@ static void _call_f_print_c2284 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPagedPaintDevice *arg1 = args.read (heap); + QPagedPaintDevice *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->print (arg1); } @@ -872,7 +872,7 @@ static void _call_f_scrollToAnchor_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->scrollToAnchor (arg1); } @@ -908,7 +908,7 @@ static void _call_f_setAcceptRichText_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setAcceptRichText (arg1); } @@ -928,7 +928,7 @@ static void _call_f_setAlignment_2750 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setAlignment (arg1); } @@ -948,7 +948,7 @@ static void _call_f_setAutoFormatting_3978 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setAutoFormatting (arg1); } @@ -968,7 +968,7 @@ static void _call_f_setCurrentCharFormat_2814 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setCurrentCharFormat (arg1); } @@ -988,7 +988,7 @@ static void _call_f_setCurrentFont_1801 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setCurrentFont (arg1); } @@ -1008,7 +1008,7 @@ static void _call_f_setCursorWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setCursorWidth (arg1); } @@ -1028,7 +1028,7 @@ static void _call_f_setDocument_1955 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextDocument *arg1 = args.read (heap); + QTextDocument *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setDocument (arg1); } @@ -1048,7 +1048,7 @@ static void _call_f_setDocumentTitle_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setDocumentTitle (arg1); } @@ -1068,7 +1068,7 @@ static void _call_f_setExtraSelections_4386 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setExtraSelections (arg1); } @@ -1088,7 +1088,7 @@ static void _call_f_setFontFamily_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setFontFamily (arg1); } @@ -1108,7 +1108,7 @@ static void _call_f_setFontItalic_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setFontItalic (arg1); } @@ -1128,7 +1128,7 @@ static void _call_f_setFontPointSize_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setFontPointSize (arg1); } @@ -1148,7 +1148,7 @@ static void _call_f_setFontUnderline_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setFontUnderline (arg1); } @@ -1168,7 +1168,7 @@ static void _call_f_setFontWeight_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setFontWeight (arg1); } @@ -1188,7 +1188,7 @@ static void _call_f_setHtml_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setHtml (arg1); } @@ -1208,7 +1208,7 @@ static void _call_f_setLineWrapColumnOrWidth_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setLineWrapColumnOrWidth (arg1); } @@ -1228,7 +1228,7 @@ static void _call_f_setLineWrapMode_2635 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setLineWrapMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1248,7 +1248,7 @@ static void _call_f_setOverwriteMode_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setOverwriteMode (arg1); } @@ -1268,7 +1268,7 @@ static void _call_f_setPlaceholderText_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setPlaceholderText (arg1); } @@ -1288,7 +1288,7 @@ static void _call_f_setPlainText_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setPlainText (arg1); } @@ -1308,7 +1308,7 @@ static void _call_f_setReadOnly_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setReadOnly (arg1); } @@ -1328,7 +1328,7 @@ static void _call_f_setTabChangesFocus_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setTabChangesFocus (arg1); } @@ -1348,7 +1348,7 @@ static void _call_f_setTabStopWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setTabStopWidth (arg1); } @@ -1368,7 +1368,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setText (arg1); } @@ -1388,7 +1388,7 @@ static void _call_f_setTextBackgroundColor_1905 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setTextBackgroundColor (arg1); } @@ -1408,7 +1408,7 @@ static void _call_f_setTextColor_1905 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QColor &arg1 = args.read (heap); + const QColor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setTextColor (arg1); } @@ -1428,7 +1428,7 @@ static void _call_f_setTextCursor_2453 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCursor &arg1 = args.read (heap); + const QTextCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setTextCursor (arg1); } @@ -1448,7 +1448,7 @@ static void _call_f_setTextInteractionFlags_3396 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setTextInteractionFlags (arg1); } @@ -1468,7 +1468,7 @@ static void _call_f_setUndoRedoEnabled_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setUndoRedoEnabled (arg1); } @@ -1488,7 +1488,7 @@ static void _call_f_setWordWrapMode_2486 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->setWordWrapMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -1659,7 +1659,7 @@ static void _call_f_zoomIn_767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->zoomIn (arg1); } @@ -1679,7 +1679,7 @@ static void _call_f_zoomOut_767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit *)cls)->zoomOut (arg1); } @@ -1703,9 +1703,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextEdit::tr (arg1, arg2, arg3)); } @@ -1728,9 +1728,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTextEdit::trUtf8 (arg1, arg2, arg3)); } @@ -2915,7 +2915,7 @@ static void _call_ctor_QTextEdit_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTextEdit_Adaptor (arg1)); } @@ -2935,8 +2935,8 @@ static void _call_ctor_QTextEdit_Adaptor_3232 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTextEdit_Adaptor (arg1, arg2)); } @@ -3097,7 +3097,7 @@ static void _call_emitter_copyAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextEdit_Adaptor *)cls)->emitter_QTextEdit_copyAvailable_864 (arg1); } @@ -3119,9 +3119,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->fp_QTextEdit_create_2208 (arg1, arg2, arg3); } @@ -3159,7 +3159,7 @@ static void _call_emitter_currentCharFormatChanged_2814 (const qt_gsi::GenericMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCharFormat &arg1 = args.read (heap); + const QTextCharFormat &arg1 = gsi::arg_reader() (args, heap); ((QTextEdit_Adaptor *)cls)->emitter_QTextEdit_currentCharFormatChanged_2814 (arg1); } @@ -3191,7 +3191,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTextEdit_Adaptor *)cls)->emitter_QTextEdit_customContextMenuRequested_1916 (arg1); } @@ -3235,8 +3235,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->fp_QTextEdit_destroy_1620 (arg1, arg2); } @@ -3255,7 +3255,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTextEdit_Adaptor *)cls)->emitter_QTextEdit_destroyed_1302 (arg1); } @@ -3393,7 +3393,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->fp_QTextEdit_drawFrame_1426 (arg1); } @@ -3698,7 +3698,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->fp_QTextEdit_initStyleOption_c2356 (arg1); } @@ -3788,7 +3788,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTextEdit_Adaptor *)cls)->fp_QTextEdit_isSignalConnected_c2394 (arg1)); } @@ -4138,7 +4138,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTextEdit_Adaptor *)cls)->fp_QTextEdit_receivers_c1731 (arg1)); } @@ -4179,7 +4179,7 @@ static void _call_emitter_redoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextEdit_Adaptor *)cls)->emitter_QTextEdit_redoAvailable_864 (arg1); } @@ -4296,10 +4296,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->fp_QTextEdit_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -4318,7 +4318,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->fp_QTextEdit_setViewportMargins_2115 (arg1); } @@ -4509,7 +4509,7 @@ static void _call_emitter_undoAvailable_864 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QTextEdit_Adaptor *)cls)->emitter_QTextEdit_undoAvailable_864 (arg1); } @@ -4622,7 +4622,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QTextEdit_Adaptor *)cls)->emitter_QTextEdit_windowIconChanged_1787 (arg1); } @@ -4640,7 +4640,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTextEdit_Adaptor *)cls)->emitter_QTextEdit_windowIconTextChanged_2025 (arg1); } @@ -4658,7 +4658,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTextEdit_Adaptor *)cls)->emitter_QTextEdit_windowTitleChanged_2025 (arg1); } @@ -4676,7 +4676,7 @@ static void _call_fp_zoomInF_970 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - float arg1 = args.read (heap); + float arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTextEdit_Adaptor *)cls)->fp_QTextEdit_zoomInF_970 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTimeEdit.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTimeEdit.cc index b0465d4a2..5116d7103 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTimeEdit.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTimeEdit.cc @@ -124,9 +124,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTimeEdit::tr (arg1, arg2, arg3)); } @@ -149,9 +149,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTimeEdit::trUtf8 (arg1, arg2, arg3)); } @@ -1187,7 +1187,7 @@ static void _call_ctor_QTimeEdit_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTimeEdit_Adaptor (arg1)); } @@ -1207,8 +1207,8 @@ static void _call_ctor_QTimeEdit_Adaptor_3000 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QTime &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTimeEdit_Adaptor (arg1, arg2)); } @@ -1370,9 +1370,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->fp_QTimeEdit_create_2208 (arg1, arg2, arg3); } @@ -1391,7 +1391,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTimeEdit_Adaptor *)cls)->emitter_QTimeEdit_customContextMenuRequested_1916 (arg1); } @@ -1433,7 +1433,7 @@ static void _call_emitter_dateChanged_1776 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDate &arg1 = args.read (heap); + const QDate &arg1 = gsi::arg_reader() (args, heap); ((QTimeEdit_Adaptor *)cls)->emitter_QTimeEdit_dateChanged_1776 (arg1); } @@ -1451,7 +1451,7 @@ static void _call_emitter_dateTimeChanged_2175 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDateTime &arg1 = args.read (heap); + const QDateTime &arg1 = gsi::arg_reader() (args, heap); ((QTimeEdit_Adaptor *)cls)->emitter_QTimeEdit_dateTimeChanged_2175 (arg1); } @@ -1494,8 +1494,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->fp_QTimeEdit_destroy_1620 (arg1, arg2); } @@ -1514,7 +1514,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTimeEdit_Adaptor *)cls)->emitter_QTimeEdit_destroyed_1302 (arg1); } @@ -1952,7 +1952,7 @@ static void _call_fp_initStyleOption_c2572 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionSpinBox *arg1 = args.read (heap); + QStyleOptionSpinBox *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->fp_QTimeEdit_initStyleOption_c2572 (arg1); } @@ -2018,7 +2018,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTimeEdit_Adaptor *)cls)->fp_QTimeEdit_isSignalConnected_c2394 (arg1)); } @@ -2356,7 +2356,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTimeEdit_Adaptor *)cls)->fp_QTimeEdit_receivers_c1731 (arg1)); } @@ -2449,7 +2449,7 @@ static void _call_fp_setLineEdit_1485 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLineEdit *arg1 = args.read (heap); + QLineEdit *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTimeEdit_Adaptor *)cls)->fp_QTimeEdit_setLineEdit_1485 (arg1); } @@ -2644,7 +2644,7 @@ static void _call_emitter_timeChanged_1793 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ((QTimeEdit_Adaptor *)cls)->emitter_QTimeEdit_timeChanged_1793 (arg1); } @@ -2701,7 +2701,7 @@ static void _call_emitter_userTimeChanged_1793 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTime &arg1 = args.read (heap); + const QTime &arg1 = gsi::arg_reader() (args, heap); ((QTimeEdit_Adaptor *)cls)->emitter_QTimeEdit_userTimeChanged_1793 (arg1); } @@ -2769,7 +2769,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QTimeEdit_Adaptor *)cls)->emitter_QTimeEdit_windowIconChanged_1787 (arg1); } @@ -2787,7 +2787,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTimeEdit_Adaptor *)cls)->emitter_QTimeEdit_windowIconTextChanged_2025 (arg1); } @@ -2805,7 +2805,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTimeEdit_Adaptor *)cls)->emitter_QTimeEdit_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc index 37c0b5661..d69c94f48 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBar.cc @@ -115,7 +115,7 @@ static void _call_f_actionAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->actionAt (arg1)); } @@ -136,8 +136,8 @@ static void _call_f_actionAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->actionAt (arg1, arg2)); } @@ -156,7 +156,7 @@ static void _call_f_actionGeometry_c1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QToolBar *)cls)->actionGeometry (arg1)); } @@ -175,7 +175,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar *)cls)->addAction (arg1); } @@ -195,7 +195,7 @@ static void _call_f_addAction_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->addAction (arg1)); } @@ -216,8 +216,8 @@ static void _call_f_addAction_3704 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->addAction (arg1, arg2)); } @@ -240,9 +240,9 @@ static void _call_f_addAction_5537 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QObject *arg2 = args.read (heap); - const char *arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QObject *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->addAction (arg1, arg2, arg3)); } @@ -267,10 +267,10 @@ static void _call_f_addAction_7216 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QObject *arg3 = args.read (heap); - const char *arg4 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QObject *arg3 = gsi::arg_reader() (args, heap); + const char *arg4 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->addAction (arg1, arg2, arg3, arg4)); } @@ -304,7 +304,7 @@ static void _call_f_addWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->addWidget (arg1)); } @@ -369,7 +369,7 @@ static void _call_f_insertSeparator_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->insertSeparator (arg1)); } @@ -390,8 +390,8 @@ static void _call_f_insertWidget_2516 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); ret.write ((QAction *)((QToolBar *)cls)->insertWidget (arg1, arg2)); } @@ -410,7 +410,7 @@ static void _call_f_isAreaAllowed_c1817 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QToolBar *)cls)->isAreaAllowed (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -489,7 +489,7 @@ static void _call_f_setAllowedAreas_2513 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar *)cls)->setAllowedAreas (arg1); } @@ -509,7 +509,7 @@ static void _call_f_setFloatable_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar *)cls)->setFloatable (arg1); } @@ -529,7 +529,7 @@ static void _call_f_setIconSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar *)cls)->setIconSize (arg1); } @@ -549,7 +549,7 @@ static void _call_f_setMovable_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar *)cls)->setMovable (arg1); } @@ -569,7 +569,7 @@ static void _call_f_setOrientation_1913 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar *)cls)->setOrientation (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -589,7 +589,7 @@ static void _call_f_setToolButtonStyle_2328 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar *)cls)->setToolButtonStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -639,7 +639,7 @@ static void _call_f_widgetForAction_c1309 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QToolBar *)cls)->widgetForAction (arg1)); } @@ -662,9 +662,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QToolBar::tr (arg1, arg2, arg3)); } @@ -687,9 +687,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QToolBar::trUtf8 (arg1, arg2, arg3)); } @@ -1655,8 +1655,8 @@ static void _call_ctor_QToolBar_Adaptor_3232 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QToolBar_Adaptor (arg1, arg2)); } @@ -1674,7 +1674,7 @@ static void _call_ctor_QToolBar_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QToolBar_Adaptor (arg1)); } @@ -1716,7 +1716,7 @@ static void _call_emitter_actionTriggered_1309 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_actionTriggered_1309 (arg1); } @@ -1734,7 +1734,7 @@ static void _call_emitter_allowedAreasChanged_2513 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_allowedAreasChanged_2513 (arg1); } @@ -1852,9 +1852,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->fp_QToolBar_create_2208 (arg1, arg2, arg3); } @@ -1873,7 +1873,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_customContextMenuRequested_1916 (arg1); } @@ -1917,8 +1917,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->fp_QToolBar_destroy_1620 (arg1, arg2); } @@ -1937,7 +1937,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_destroyed_1302 (arg1); } @@ -2313,7 +2313,7 @@ static void _call_emitter_iconSizeChanged_1805 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_iconSizeChanged_1805 (arg1); } @@ -2355,7 +2355,7 @@ static void _call_fp_initStyleOption_c2556 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionToolBar *arg1 = args.read (heap); + QStyleOptionToolBar *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBar_Adaptor *)cls)->fp_QToolBar_initStyleOption_c2556 (arg1); } @@ -2421,7 +2421,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBar_Adaptor *)cls)->fp_QToolBar_isSignalConnected_c2394 (arg1)); } @@ -2649,7 +2649,7 @@ static void _call_emitter_movableChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_movableChanged_864 (arg1); } @@ -2720,7 +2720,7 @@ static void _call_emitter_orientationChanged_1913 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_orientationChanged_1913 (arg1); } @@ -2781,7 +2781,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBar_Adaptor *)cls)->fp_QToolBar_receivers_c1731 (arg1)); } @@ -3008,7 +3008,7 @@ static void _call_emitter_toolButtonStyleChanged_2328 (const qt_gsi::GenericMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_toolButtonStyleChanged_2328 (arg1); } @@ -3026,7 +3026,7 @@ static void _call_emitter_topLevelChanged_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_topLevelChanged_864 (arg1); } @@ -3059,7 +3059,7 @@ static void _call_emitter_visibilityChanged_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_visibilityChanged_864 (arg1); } @@ -3101,7 +3101,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_windowIconChanged_1787 (arg1); } @@ -3119,7 +3119,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_windowIconTextChanged_2025 (arg1); } @@ -3137,7 +3137,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QToolBar_Adaptor *)cls)->emitter_QToolBar_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBox.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBox.cc index 981181cbb..9e1cfdf3d 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBox.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolBox.cc @@ -117,8 +117,8 @@ static void _call_f_addItem_3232 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBox *)cls)->addItem (arg1, arg2)); } @@ -141,9 +141,9 @@ static void _call_f_addItem_4911 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBox *)cls)->addItem (arg1, arg2, arg3)); } @@ -207,7 +207,7 @@ static void _call_f_indexOf_c1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBox *)cls)->indexOf (arg1)); } @@ -230,9 +230,9 @@ static void _call_f_insertItem_3891 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBox *)cls)->insertItem (arg1, arg2, arg3)); } @@ -257,10 +257,10 @@ static void _call_f_insertItem_5570 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const QIcon &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + const QIcon &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBox *)cls)->insertItem (arg1, arg2, arg3, arg4)); } @@ -279,7 +279,7 @@ static void _call_f_isItemEnabled_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBox *)cls)->isItemEnabled (arg1)); } @@ -298,7 +298,7 @@ static void _call_f_itemIcon_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QToolBox *)cls)->itemIcon (arg1)); } @@ -317,7 +317,7 @@ static void _call_f_itemText_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QToolBox *)cls)->itemText (arg1)); } @@ -336,7 +336,7 @@ static void _call_f_itemToolTip_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QToolBox *)cls)->itemToolTip (arg1)); } @@ -355,7 +355,7 @@ static void _call_f_removeItem_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox *)cls)->removeItem (arg1); } @@ -375,7 +375,7 @@ static void _call_f_setCurrentIndex_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox *)cls)->setCurrentIndex (arg1); } @@ -395,7 +395,7 @@ static void _call_f_setCurrentWidget_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox *)cls)->setCurrentWidget (arg1); } @@ -417,8 +417,8 @@ static void _call_f_setItemEnabled_1523 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox *)cls)->setItemEnabled (arg1, arg2); } @@ -440,8 +440,8 @@ static void _call_f_setItemIcon_2446 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox *)cls)->setItemIcon (arg1, arg2); } @@ -463,8 +463,8 @@ static void _call_f_setItemText_2684 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox *)cls)->setItemText (arg1, arg2); } @@ -486,8 +486,8 @@ static void _call_f_setItemToolTip_2684 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox *)cls)->setItemToolTip (arg1, arg2); } @@ -507,7 +507,7 @@ static void _call_f_widget_c767 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QToolBox *)cls)->widget (arg1)); } @@ -530,9 +530,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QToolBox::tr (arg1, arg2, arg3)); } @@ -555,9 +555,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QToolBox::trUtf8 (arg1, arg2, arg3)); } @@ -1496,8 +1496,8 @@ static void _call_ctor_QToolBox_Adaptor_3702 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QToolBox_Adaptor (arg1, arg2)); } @@ -1639,9 +1639,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->fp_QToolBox_create_2208 (arg1, arg2, arg3); } @@ -1660,7 +1660,7 @@ static void _call_emitter_currentChanged_767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QToolBox_Adaptor *)cls)->emitter_QToolBox_currentChanged_767 (arg1); } @@ -1678,7 +1678,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QToolBox_Adaptor *)cls)->emitter_QToolBox_customContextMenuRequested_1916 (arg1); } @@ -1722,8 +1722,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->fp_QToolBox_destroy_1620 (arg1, arg2); } @@ -1742,7 +1742,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QToolBox_Adaptor *)cls)->emitter_QToolBox_destroyed_1302 (arg1); } @@ -1856,7 +1856,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->fp_QToolBox_drawFrame_1426 (arg1); } @@ -2161,7 +2161,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolBox_Adaptor *)cls)->fp_QToolBox_initStyleOption_c2356 (arg1); } @@ -2227,7 +2227,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolBox_Adaptor *)cls)->fp_QToolBox_isSignalConnected_c2394 (arg1)); } @@ -2599,7 +2599,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolBox_Adaptor *)cls)->fp_QToolBox_receivers_c1731 (arg1)); } @@ -2865,7 +2865,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QToolBox_Adaptor *)cls)->emitter_QToolBox_windowIconChanged_1787 (arg1); } @@ -2883,7 +2883,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QToolBox_Adaptor *)cls)->emitter_QToolBox_windowIconTextChanged_2025 (arg1); } @@ -2901,7 +2901,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QToolBox_Adaptor *)cls)->emitter_QToolBox_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc index 7cb805295..da988aac8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolButton.cc @@ -207,7 +207,7 @@ static void _call_f_setArrowType_1690 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton *)cls)->setArrowType (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -227,7 +227,7 @@ static void _call_f_setAutoRaise_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton *)cls)->setAutoRaise (arg1); } @@ -247,7 +247,7 @@ static void _call_f_setDefaultAction_1309 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton *)cls)->setDefaultAction (arg1); } @@ -267,7 +267,7 @@ static void _call_f_setMenu_1108 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QMenu *arg1 = args.read (heap); + QMenu *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton *)cls)->setMenu (arg1); } @@ -287,7 +287,7 @@ static void _call_f_setPopupMode_3654 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton *)cls)->setPopupMode (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -307,7 +307,7 @@ static void _call_f_setToolButtonStyle_2328 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton *)cls)->setToolButtonStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -377,9 +377,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QToolButton::tr (arg1, arg2, arg3)); } @@ -402,9 +402,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QToolButton::trUtf8 (arg1, arg2, arg3)); } @@ -1369,7 +1369,7 @@ static void _call_ctor_QToolButton_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QToolButton_Adaptor (arg1)); } @@ -1479,7 +1479,7 @@ static void _call_emitter_clicked_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QToolButton_Adaptor *)cls)->emitter_QToolButton_clicked_864 (arg1); } @@ -1549,9 +1549,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->fp_QToolButton_create_2208 (arg1, arg2, arg3); } @@ -1570,7 +1570,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QToolButton_Adaptor *)cls)->emitter_QToolButton_customContextMenuRequested_1916 (arg1); } @@ -1614,8 +1614,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->fp_QToolButton_destroy_1620 (arg1, arg2); } @@ -1634,7 +1634,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QToolButton_Adaptor *)cls)->emitter_QToolButton_destroyed_1302 (arg1); } @@ -2057,7 +2057,7 @@ static void _call_fp_initStyleOption_c2915 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionToolButton *arg1 = args.read (heap); + QStyleOptionToolButton *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QToolButton_Adaptor *)cls)->fp_QToolButton_initStyleOption_c2915 (arg1); } @@ -2123,7 +2123,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QToolButton_Adaptor *)cls)->fp_QToolButton_isSignalConnected_c2394 (arg1)); } @@ -2481,7 +2481,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QToolButton_Adaptor *)cls)->fp_QToolButton_receivers_c1731 (arg1)); } @@ -2722,7 +2722,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QToolButton_Adaptor *)cls)->emitter_QToolButton_toggled_864 (arg1); } @@ -2740,7 +2740,7 @@ static void _call_emitter_triggered_1309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); ((QToolButton_Adaptor *)cls)->emitter_QToolButton_triggered_1309 (arg1); } @@ -2797,7 +2797,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QToolButton_Adaptor *)cls)->emitter_QToolButton_windowIconChanged_1787 (arg1); } @@ -2815,7 +2815,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QToolButton_Adaptor *)cls)->emitter_QToolButton_windowIconTextChanged_2025 (arg1); } @@ -2833,7 +2833,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QToolButton_Adaptor *)cls)->emitter_QToolButton_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolTip.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolTip.cc index fc2d31aad..02ac7e810 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQToolTip.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQToolTip.cc @@ -116,7 +116,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QToolTip::setFont (arg1); } @@ -136,7 +136,7 @@ static void _call_f_setPalette_2113 (const qt_gsi::GenericStaticMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QToolTip::setPalette (arg1); } @@ -160,9 +160,9 @@ static void _call_f_showText_5040 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); QToolTip::showText (arg1, arg2, arg3); } @@ -188,10 +188,10 @@ static void _call_f_showText_6724 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); - const QRect &arg4 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); + const QRect &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QToolTip::showText (arg1, arg2, arg3, arg4); } @@ -219,11 +219,11 @@ static void _call_f_showText_7383 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); - const QRect &arg4 = args.read (heap); - int arg5 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); + const QRect &arg4 = gsi::arg_reader() (args, heap); + int arg5 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QToolTip::showText (arg1, arg2, arg3, arg4, arg5); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc index f8e64a8d7..f320ac8ee 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeView.cc @@ -153,7 +153,7 @@ static void _call_f_collapse_2395 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->collapse (arg1); } @@ -189,7 +189,7 @@ static void _call_f_columnAt_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView *)cls)->columnAt (arg1)); } @@ -208,7 +208,7 @@ static void _call_f_columnViewportPosition_c767 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView *)cls)->columnViewportPosition (arg1)); } @@ -227,7 +227,7 @@ static void _call_f_columnWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView *)cls)->columnWidth (arg1)); } @@ -250,9 +250,9 @@ static void _call_f_dataChanged_7048 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - const QVector &arg3 = args ? args.read & > (heap) : (const QVector &)(QVector()); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + const QVector &arg3 = args ? gsi::arg_reader & >() (args, heap) : gsi::arg_maker & >() (QVector(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->dataChanged (arg1, arg2, arg3); } @@ -288,7 +288,7 @@ static void _call_f_expand_2395 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->expand (arg1); } @@ -324,7 +324,7 @@ static void _call_f_expandToDepth_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->expandToDepth (arg1); } @@ -374,7 +374,7 @@ static void _call_f_hideColumn_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->hideColumn (arg1); } @@ -409,7 +409,7 @@ static void _call_f_indexAbove_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTreeView *)cls)->indexAbove (arg1)); } @@ -428,7 +428,7 @@ static void _call_f_indexAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTreeView *)cls)->indexAt (arg1)); } @@ -447,7 +447,7 @@ static void _call_f_indexBelow_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QModelIndex)((QTreeView *)cls)->indexBelow (arg1)); } @@ -481,7 +481,7 @@ static void _call_f_isColumnHidden_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView *)cls)->isColumnHidden (arg1)); } @@ -500,7 +500,7 @@ static void _call_f_isExpanded_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView *)cls)->isExpanded (arg1)); } @@ -521,8 +521,8 @@ static void _call_f_isFirstColumnSpanned_c3054 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView *)cls)->isFirstColumnSpanned (arg1, arg2)); } @@ -558,8 +558,8 @@ static void _call_f_isRowHidden_c3054 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView *)cls)->isRowHidden (arg1, arg2)); } @@ -608,7 +608,7 @@ static void _call_f_keyboardSearch_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->keyboardSearch (arg1); } @@ -660,7 +660,7 @@ static void _call_f_resizeColumnToContents_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->resizeColumnToContents (arg1); } @@ -697,8 +697,8 @@ static void _call_f_scrollTo_5576 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->scrollTo (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -734,7 +734,7 @@ static void _call_f_setAllColumnsShowFocus_864 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setAllColumnsShowFocus (arg1); } @@ -754,7 +754,7 @@ static void _call_f_setAnimated_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setAnimated (arg1); } @@ -774,7 +774,7 @@ static void _call_f_setAutoExpandDelay_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setAutoExpandDelay (arg1); } @@ -796,8 +796,8 @@ static void _call_f_setColumnHidden_1523 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setColumnHidden (arg1, arg2); } @@ -819,8 +819,8 @@ static void _call_f_setColumnWidth_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setColumnWidth (arg1, arg2); } @@ -842,8 +842,8 @@ static void _call_f_setExpanded_3151 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setExpanded (arg1, arg2); } @@ -863,7 +863,7 @@ static void _call_f_setExpandsOnDoubleClick_864 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setExpandsOnDoubleClick (arg1); } @@ -887,9 +887,9 @@ static void _call_f_setFirstColumnSpanned_3810 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - bool arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + bool arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setFirstColumnSpanned (arg1, arg2, arg3); } @@ -909,7 +909,7 @@ static void _call_f_setHeader_1699 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QHeaderView *arg1 = args.read (heap); + QHeaderView *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setHeader (arg1); } @@ -929,7 +929,7 @@ static void _call_f_setHeaderHidden_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setHeaderHidden (arg1); } @@ -949,7 +949,7 @@ static void _call_f_setIndentation_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setIndentation (arg1); } @@ -969,7 +969,7 @@ static void _call_f_setItemsExpandable_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setItemsExpandable (arg1); } @@ -989,7 +989,7 @@ static void _call_f_setModel_2419 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractItemModel *arg1 = args.read (heap); + QAbstractItemModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setModel (arg1); } @@ -1009,7 +1009,7 @@ static void _call_f_setRootIndex_2395 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setRootIndex (arg1); } @@ -1029,7 +1029,7 @@ static void _call_f_setRootIsDecorated_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setRootIsDecorated (arg1); } @@ -1053,9 +1053,9 @@ static void _call_f_setRowHidden_3810 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); - bool arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); + bool arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setRowHidden (arg1, arg2, arg3); } @@ -1075,7 +1075,7 @@ static void _call_f_setSelectionModel_2533 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setSelectionModel (arg1); } @@ -1095,7 +1095,7 @@ static void _call_f_setSortingEnabled_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setSortingEnabled (arg1); } @@ -1115,7 +1115,7 @@ static void _call_f_setTreePosition_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setTreePosition (arg1); } @@ -1135,7 +1135,7 @@ static void _call_f_setUniformRowHeights_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setUniformRowHeights (arg1); } @@ -1155,7 +1155,7 @@ static void _call_f_setWordWrap_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->setWordWrap (arg1); } @@ -1175,7 +1175,7 @@ static void _call_f_showColumn_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->showColumn (arg1); } @@ -1197,8 +1197,8 @@ static void _call_f_sortByColumn_2340 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->sortByColumn (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1218,7 +1218,7 @@ static void _call_f_sortByColumn_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView *)cls)->sortByColumn (arg1); } @@ -1268,7 +1268,7 @@ static void _call_f_visualRect_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTreeView *)cls)->visualRect (arg1)); } @@ -1306,9 +1306,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTreeView::tr (arg1, arg2, arg3)); } @@ -1331,9 +1331,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTreeView::trUtf8 (arg1, arg2, arg3)); } @@ -3164,7 +3164,7 @@ static void _call_ctor_QTreeView_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTreeView_Adaptor (arg1)); } @@ -3206,7 +3206,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_activated_2395 (arg1); } @@ -3272,7 +3272,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_clicked_2395 (arg1); } @@ -3341,7 +3341,7 @@ static void _call_emitter_collapsed_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_collapsed_2395 (arg1); } @@ -3361,8 +3361,8 @@ static void _call_fp_columnCountChanged_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_columnCountChanged_1426 (arg1, arg2); } @@ -3400,9 +3400,9 @@ static void _call_fp_columnResized_2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_columnResized_2085 (arg1, arg2, arg3); } @@ -3473,9 +3473,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_create_2208 (arg1, arg2, arg3); } @@ -3521,7 +3521,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_customContextMenuRequested_1916 (arg1); } @@ -3595,8 +3595,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_destroy_1620 (arg1, arg2); } @@ -3615,7 +3615,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_destroyed_1302 (arg1); } @@ -3706,7 +3706,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_doubleClicked_2395 (arg1); } @@ -3826,7 +3826,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_drawFrame_1426 (arg1); } @@ -3877,8 +3877,8 @@ static void _call_fp_drawTree_c3324 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRegion &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRegion &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_drawTree_c3324 (arg1, arg2); } @@ -4012,7 +4012,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_entered_2395 (arg1); } @@ -4094,7 +4094,7 @@ static void _call_emitter_expanded_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_expanded_2395 (arg1); } @@ -4358,7 +4358,7 @@ static void _call_emitter_iconSizeChanged_1805 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_iconSizeChanged_1805 (arg1); } @@ -4399,7 +4399,7 @@ static void _call_fp_indexRowSizeHint_c2395 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->fp_QTreeView_indexRowSizeHint_c2395 (arg1)); } @@ -4441,7 +4441,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_initStyleOption_c2356 (arg1); } @@ -4530,7 +4530,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeView_Adaptor *)cls)->fp_QTreeView_isSignalConnected_c2394 (arg1)); } @@ -4904,7 +4904,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_pressed_2395 (arg1); } @@ -4922,7 +4922,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->fp_QTreeView_receivers_c1731 (arg1)); } @@ -5022,7 +5022,7 @@ static void _call_fp_rowHeight_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeView_Adaptor *)cls)->fp_QTreeView_rowHeight_c2395 (arg1)); } @@ -5104,9 +5104,9 @@ static void _call_fp_rowsRemoved_3713 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_rowsRemoved_3713 (arg1, arg2, arg3); } @@ -5169,8 +5169,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_scrollDirtyRegion_1426 (arg1, arg2); } @@ -5336,7 +5336,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_setDirtyRegion_2006 (arg1); } @@ -5355,7 +5355,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_setHorizontalStepsPerItem_767 (arg1); } @@ -5473,7 +5473,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_setState_2776 (arg1); } @@ -5492,7 +5492,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_setVerticalStepsPerItem_767 (arg1); } @@ -5517,10 +5517,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -5539,7 +5539,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeView_Adaptor *)cls)->fp_QTreeView_setViewportMargins_2115 (arg1); } @@ -6145,7 +6145,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_windowIconChanged_1787 (arg1); } @@ -6163,7 +6163,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_windowIconTextChanged_2025 (arg1); } @@ -6181,7 +6181,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTreeView_Adaptor *)cls)->emitter_QTreeView_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc index 8deb0210d..d6c9871dd 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidget.cc @@ -125,7 +125,7 @@ static void _call_f_addTopLevelItem_2114 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->addTopLevelItem (arg1); @@ -146,7 +146,7 @@ static void _call_f_addTopLevelItems_3462 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->addTopLevelItems (arg1); @@ -185,8 +185,8 @@ static void _call_f_closePersistentEditor_2773 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->closePersistentEditor (arg1, arg2); } @@ -206,7 +206,7 @@ static void _call_f_collapseItem_2809 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->collapseItem (arg1); } @@ -273,8 +273,8 @@ static void _call_f_editItem_2773 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->editItem (arg1, arg2); } @@ -294,7 +294,7 @@ static void _call_f_expandItem_2809 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->expandItem (arg1); } @@ -318,9 +318,9 @@ static void _call_f_findItems_c4892 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); - int arg3 = args ? args.read (heap) : (int)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write > ((QList)((QTreeWidget *)cls)->findItems (arg1, arg2, arg3)); } @@ -354,7 +354,7 @@ static void _call_f_indexOfTopLevelItem_c2114 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget *)cls)->indexOfTopLevelItem (arg1)); } @@ -375,8 +375,8 @@ static void _call_f_insertTopLevelItem_2773 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QTreeWidgetItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QTreeWidgetItem *arg2 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->insertTopLevelItem (arg1, arg2); @@ -399,8 +399,8 @@ static void _call_f_insertTopLevelItems_4121 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->insertTopLevelItems (arg1, arg2); @@ -436,7 +436,7 @@ static void _call_f_isFirstItemColumnSpanned_c2809 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget *)cls)->isFirstItemColumnSpanned (arg1)); } @@ -455,7 +455,7 @@ static void _call_f_isItemExpanded_c2809 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget *)cls)->isItemExpanded (arg1)); } @@ -474,7 +474,7 @@ static void _call_f_isItemHidden_c2809 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget *)cls)->isItemHidden (arg1)); } @@ -493,7 +493,7 @@ static void _call_f_isItemSelected_c2809 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget *)cls)->isItemSelected (arg1)); } @@ -512,7 +512,7 @@ static void _call_f_itemAbove_c2809 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidget *)cls)->itemAbove (arg1)); } @@ -531,7 +531,7 @@ static void _call_f_itemAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidget *)cls)->itemAt (arg1)); } @@ -552,8 +552,8 @@ static void _call_f_itemAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidget *)cls)->itemAt (arg1, arg2)); } @@ -572,7 +572,7 @@ static void _call_f_itemBelow_c2809 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidget *)cls)->itemBelow (arg1)); } @@ -593,8 +593,8 @@ static void _call_f_itemWidget_c2773 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QTreeWidget *)cls)->itemWidget (arg1, arg2)); } @@ -615,8 +615,8 @@ static void _call_f_openPersistentEditor_2773 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->openPersistentEditor (arg1, arg2); } @@ -638,8 +638,8 @@ static void _call_f_removeItemWidget_2773 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->removeItemWidget (arg1, arg2); } @@ -661,8 +661,8 @@ static void _call_f_scrollToItem_5990 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible)); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QAbstractItemView::EnsureVisible), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->scrollToItem (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -697,7 +697,7 @@ static void _call_f_setColumnCount_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setColumnCount (arg1); } @@ -717,7 +717,7 @@ static void _call_f_setCurrentItem_2114 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setCurrentItem (arg1); } @@ -739,8 +739,8 @@ static void _call_f_setCurrentItem_2773 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setCurrentItem (arg1, arg2); } @@ -764,9 +764,9 @@ static void _call_f_setCurrentItem_7136 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); - QFlags arg3 = args.read > (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QFlags arg3 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setCurrentItem (arg1, arg2, arg3); } @@ -788,8 +788,8 @@ static void _call_f_setFirstItemColumnSpanned_3565 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setFirstItemColumnSpanned (arg1, arg2); } @@ -809,7 +809,7 @@ static void _call_f_setHeaderItem_2114 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setHeaderItem (arg1); } @@ -829,7 +829,7 @@ static void _call_f_setHeaderLabel_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setHeaderLabel (arg1); } @@ -849,7 +849,7 @@ static void _call_f_setHeaderLabels_2437 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); + const QStringList &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setHeaderLabels (arg1); } @@ -871,8 +871,8 @@ static void _call_f_setItemExpanded_3565 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setItemExpanded (arg1, arg2); } @@ -894,8 +894,8 @@ static void _call_f_setItemHidden_3565 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setItemHidden (arg1, arg2); } @@ -917,8 +917,8 @@ static void _call_f_setItemSelected_3565 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setItemSelected (arg1, arg2); } @@ -942,9 +942,9 @@ static void _call_f_setItemWidget_3980 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); - QWidget *arg3 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setItemWidget (arg1, arg2, arg3); } @@ -964,7 +964,7 @@ static void _call_f_setSelectionModel_2533 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QItemSelectionModel *arg1 = args.read (heap); + QItemSelectionModel *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->setSelectionModel (arg1); } @@ -1001,8 +1001,8 @@ static void _call_f_sortItems_2340 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget *)cls)->sortItems (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1022,7 +1022,7 @@ static void _call_f_takeTopLevelItem_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidget *)cls)->takeTopLevelItem (arg1)); } @@ -1041,7 +1041,7 @@ static void _call_f_topLevelItem_c767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidget *)cls)->topLevelItem (arg1)); } @@ -1075,7 +1075,7 @@ static void _call_f_visualItemRect_c2809 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem *arg1 = args.read (heap); + const QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QTreeWidget *)cls)->visualItemRect (arg1)); } @@ -1098,9 +1098,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTreeWidget::tr (arg1, arg2, arg3)); } @@ -1123,9 +1123,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QTreeWidget::trUtf8 (arg1, arg2, arg3)); } @@ -3075,7 +3075,7 @@ static void _call_ctor_QTreeWidget_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QTreeWidget_Adaptor (arg1)); } @@ -3117,7 +3117,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_activated_2395 (arg1); } @@ -3183,7 +3183,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_clicked_2395 (arg1); } @@ -3252,7 +3252,7 @@ static void _call_emitter_collapsed_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_collapsed_2395 (arg1); } @@ -3272,8 +3272,8 @@ static void _call_fp_columnCountChanged_1426 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_columnCountChanged_1426 (arg1, arg2); } @@ -3311,9 +3311,9 @@ static void _call_fp_columnResized_2085 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_columnResized_2085 (arg1, arg2, arg3); } @@ -3384,9 +3384,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_create_2208 (arg1, arg2, arg3); } @@ -3434,8 +3434,8 @@ static void _call_emitter_currentItemChanged_4120 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - QTreeWidgetItem *arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QTreeWidgetItem *arg2 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_currentItemChanged_4120 (arg1, arg2); } @@ -3453,7 +3453,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_customContextMenuRequested_1916 (arg1); } @@ -3527,8 +3527,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_destroy_1620 (arg1, arg2); } @@ -3547,7 +3547,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_destroyed_1302 (arg1); } @@ -3638,7 +3638,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_doubleClicked_2395 (arg1); } @@ -3758,7 +3758,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_drawFrame_1426 (arg1); } @@ -3809,8 +3809,8 @@ static void _call_fp_drawTree_c3324 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QRegion &arg2 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QRegion &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_drawTree_c3324 (arg1, arg2); } @@ -3976,7 +3976,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_entered_2395 (arg1); } @@ -4058,7 +4058,7 @@ static void _call_emitter_expanded_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_expanded_2395 (arg1); } @@ -4322,7 +4322,7 @@ static void _call_emitter_iconSizeChanged_1805 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_iconSizeChanged_1805 (arg1); } @@ -4365,8 +4365,8 @@ static void _call_fp_indexFromItem_c2773 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(0); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QModelIndex)((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_indexFromItem_c2773 (arg1, arg2)); } @@ -4384,7 +4384,7 @@ static void _call_fp_indexRowSizeHint_c2395 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_indexRowSizeHint_c2395 (arg1)); } @@ -4426,7 +4426,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_initStyleOption_c2356 (arg1); } @@ -4515,7 +4515,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_isSignalConnected_c2394 (arg1)); } @@ -4535,8 +4535,8 @@ static void _call_emitter_itemActivated_2773 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemActivated_2773 (arg1, arg2); } @@ -4556,8 +4556,8 @@ static void _call_emitter_itemChanged_2773 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemChanged_2773 (arg1, arg2); } @@ -4577,8 +4577,8 @@ static void _call_emitter_itemClicked_2773 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemClicked_2773 (arg1, arg2); } @@ -4596,7 +4596,7 @@ static void _call_emitter_itemCollapsed_2114 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemCollapsed_2114 (arg1); } @@ -4616,8 +4616,8 @@ static void _call_emitter_itemDoubleClicked_2773 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemDoubleClicked_2773 (arg1, arg2); } @@ -4637,8 +4637,8 @@ static void _call_emitter_itemEntered_2773 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemEntered_2773 (arg1, arg2); } @@ -4656,7 +4656,7 @@ static void _call_emitter_itemExpanded_2114 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemExpanded_2114 (arg1); } @@ -4674,7 +4674,7 @@ static void _call_fp_itemFromIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_itemFromIndex_c2395 (arg1)); } @@ -4694,8 +4694,8 @@ static void _call_emitter_itemPressed_2773 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_itemPressed_2773 (arg1, arg2); } @@ -4727,7 +4727,7 @@ static void _call_fp_items_c2168 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMimeData *arg1 = args.read (heap); + const QMimeData *arg1 = gsi::arg_reader() (args, heap); ret.write > ((QList)((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_items_c2168 (arg1)); } @@ -5143,7 +5143,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_pressed_2395 (arg1); } @@ -5161,7 +5161,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_receivers_c1731 (arg1)); } @@ -5261,7 +5261,7 @@ static void _call_fp_rowHeight_c2395 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_rowHeight_c2395 (arg1)); } @@ -5343,9 +5343,9 @@ static void _call_fp_rowsRemoved_3713 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_rowsRemoved_3713 (arg1, arg2, arg3); } @@ -5408,8 +5408,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_scrollDirtyRegion_1426 (arg1, arg2); } @@ -5575,7 +5575,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_setDirtyRegion_2006 (arg1); } @@ -5594,7 +5594,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_setHorizontalStepsPerItem_767 (arg1); } @@ -5688,7 +5688,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_setState_2776 (arg1); } @@ -5707,7 +5707,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_setVerticalStepsPerItem_767 (arg1); } @@ -5732,10 +5732,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -5754,7 +5754,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidget_Adaptor *)cls)->fp_QTreeWidget_setViewportMargins_2115 (arg1); } @@ -6379,7 +6379,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_windowIconChanged_1787 (arg1); } @@ -6397,7 +6397,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_windowIconTextChanged_2025 (arg1); } @@ -6415,7 +6415,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QTreeWidget_Adaptor *)cls)->emitter_QTreeWidget_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItem.cc index a31d3ece3..571638fc9 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItem.cc @@ -57,7 +57,7 @@ static void _call_f_addChild_2114 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->addChild (arg1); @@ -78,7 +78,7 @@ static void _call_f_addChildren_3462 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->addChildren (arg1); @@ -99,7 +99,7 @@ static void _call_f_background_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QBrush)((QTreeWidgetItem *)cls)->background (arg1)); } @@ -118,7 +118,7 @@ static void _call_f_backgroundColor_c767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor)((QTreeWidgetItem *)cls)->backgroundColor (arg1)); } @@ -137,7 +137,7 @@ static void _call_f_checkState_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QTreeWidgetItem *)cls)->checkState (arg1))); } @@ -156,7 +156,7 @@ static void _call_f_child_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidgetItem *)cls)->child (arg1)); } @@ -237,8 +237,8 @@ static void _call_f_data_c1426 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QTreeWidgetItem *)cls)->data (arg1, arg2)); } @@ -272,7 +272,7 @@ static void _call_f_font_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QFont)((QTreeWidgetItem *)cls)->font (arg1)); } @@ -291,7 +291,7 @@ static void _call_f_foreground_c767 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QBrush)((QTreeWidgetItem *)cls)->foreground (arg1)); } @@ -310,7 +310,7 @@ static void _call_f_icon_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QIcon)((QTreeWidgetItem *)cls)->icon (arg1)); } @@ -329,7 +329,7 @@ static void _call_f_indexOfChild_c2114 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidgetItem *)cls)->indexOfChild (arg1)); } @@ -350,8 +350,8 @@ static void _call_f_insertChild_2773 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QTreeWidgetItem *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QTreeWidgetItem *arg2 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->insertChild (arg1, arg2); @@ -374,8 +374,8 @@ static void _call_f_insertChildren_4121 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QList &arg2 = args.read & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QList &arg2 = gsi::arg_reader & >() (args, heap); qt_gsi::qt_keep (arg2); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->insertChildren (arg1, arg2); @@ -471,7 +471,7 @@ static void _call_f_operator_lt__c2805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem &arg1 = args.read (heap); + const QTreeWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QTreeWidgetItem *)cls)->operator< (arg1)); } @@ -490,7 +490,7 @@ static void _call_f_operator_eq__2805 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItem &arg1 = args.read (heap); + const QTreeWidgetItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem &)((QTreeWidgetItem *)cls)->operator= (arg1)); } @@ -524,7 +524,7 @@ static void _call_f_read_1697 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->read (arg1); } @@ -544,7 +544,7 @@ static void _call_f_removeChild_2114 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->removeChild (arg1); } @@ -566,8 +566,8 @@ static void _call_f_setBackground_2569 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QBrush &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setBackground (arg1, arg2); } @@ -589,8 +589,8 @@ static void _call_f_setBackgroundColor_2564 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setBackgroundColor (arg1, arg2); } @@ -612,8 +612,8 @@ static void _call_f_setCheckState_2399 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setCheckState (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -633,7 +633,7 @@ static void _call_f_setChildIndicatorPolicy_4077 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setChildIndicatorPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -657,9 +657,9 @@ static void _call_f_setData_3437 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QVariant &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QVariant &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setData (arg1, arg2, arg3); } @@ -679,7 +679,7 @@ static void _call_f_setDisabled_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setDisabled (arg1); } @@ -699,7 +699,7 @@ static void _call_f_setExpanded_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setExpanded (arg1); } @@ -719,7 +719,7 @@ static void _call_f_setFirstColumnSpanned_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setFirstColumnSpanned (arg1); } @@ -739,7 +739,7 @@ static void _call_f_setFlags_2222 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setFlags (arg1); } @@ -761,8 +761,8 @@ static void _call_f_setFont_2460 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QFont &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QFont &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setFont (arg1, arg2); } @@ -784,8 +784,8 @@ static void _call_f_setForeground_2569 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QBrush &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QBrush &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setForeground (arg1, arg2); } @@ -805,7 +805,7 @@ static void _call_f_setHidden_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setHidden (arg1); } @@ -827,8 +827,8 @@ static void _call_f_setIcon_2446 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QIcon &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QIcon &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setIcon (arg1, arg2); } @@ -848,7 +848,7 @@ static void _call_f_setSelected_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setSelected (arg1); } @@ -870,8 +870,8 @@ static void _call_f_setSizeHint_2464 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QSize &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QSize &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setSizeHint (arg1, arg2); } @@ -893,8 +893,8 @@ static void _call_f_setStatusTip_2684 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setStatusTip (arg1, arg2); } @@ -916,8 +916,8 @@ static void _call_f_setText_2684 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setText (arg1, arg2); } @@ -939,8 +939,8 @@ static void _call_f_setTextAlignment_1426 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setTextAlignment (arg1, arg2); } @@ -962,8 +962,8 @@ static void _call_f_setTextColor_2564 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QColor &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QColor &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setTextColor (arg1, arg2); } @@ -985,8 +985,8 @@ static void _call_f_setToolTip_2684 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setToolTip (arg1, arg2); } @@ -1008,8 +1008,8 @@ static void _call_f_setWhatsThis_2684 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->setWhatsThis (arg1, arg2); } @@ -1029,7 +1029,7 @@ static void _call_f_sizeHint_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QSize)((QTreeWidgetItem *)cls)->sizeHint (arg1)); } @@ -1050,8 +1050,8 @@ static void _call_f_sortChildren_2340 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + int arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->sortChildren (arg1, qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -1071,7 +1071,7 @@ static void _call_f_statusTip_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTreeWidgetItem *)cls)->statusTip (arg1)); } @@ -1090,7 +1090,7 @@ static void _call_f_takeChild_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItem *)((QTreeWidgetItem *)cls)->takeChild (arg1)); } @@ -1124,7 +1124,7 @@ static void _call_f_text_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTreeWidgetItem *)cls)->text (arg1)); } @@ -1143,7 +1143,7 @@ static void _call_f_textAlignment_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QTreeWidgetItem *)cls)->textAlignment (arg1)); } @@ -1162,7 +1162,7 @@ static void _call_f_textColor_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QColor)((QTreeWidgetItem *)cls)->textColor (arg1)); } @@ -1181,7 +1181,7 @@ static void _call_f_toolTip_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTreeWidgetItem *)cls)->toolTip (arg1)); } @@ -1230,7 +1230,7 @@ static void _call_f_whatsThis_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QTreeWidgetItem *)cls)->whatsThis (arg1)); } @@ -1249,7 +1249,7 @@ static void _call_f_write_c1697 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QDataStream &arg1 = args.read (heap); + QDataStream &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QTreeWidgetItem *)cls)->write (arg1); } @@ -1554,7 +1554,7 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_767 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); ret.write (new QTreeWidgetItem_Adaptor (arg1)); } @@ -1574,8 +1574,8 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_3096 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringList &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + const QStringList &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); ret.write (new QTreeWidgetItem_Adaptor (arg1, arg2)); } @@ -1595,8 +1595,8 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_2374 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidget *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + QTreeWidget *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); QTreeWidgetItem_Adaptor *obj = new QTreeWidgetItem_Adaptor (arg1, arg2); if (arg1) { qt_gsi::qt_keep (obj); @@ -1622,9 +1622,9 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_4703 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidget *arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + QTreeWidget *arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); QTreeWidgetItem_Adaptor *obj = new QTreeWidgetItem_Adaptor (arg1, arg2, arg3); if (arg1) { qt_gsi::qt_keep (obj); @@ -1650,9 +1650,9 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_4380 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidget *arg1 = args.read (heap); - QTreeWidgetItem *arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + QTreeWidget *arg1 = gsi::arg_reader() (args, heap); + QTreeWidgetItem *arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); QTreeWidgetItem_Adaptor *obj = new QTreeWidgetItem_Adaptor (arg1, arg2, arg3); if (arg1) { qt_gsi::qt_keep (obj); @@ -1676,8 +1676,8 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_2773 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); QTreeWidgetItem_Adaptor *obj = new QTreeWidgetItem_Adaptor (arg1, arg2); if (arg1) { qt_gsi::qt_keep (obj); @@ -1703,9 +1703,9 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_5102 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - const QStringList &arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + const QStringList &arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); QTreeWidgetItem_Adaptor *obj = new QTreeWidgetItem_Adaptor (arg1, arg2, arg3); if (arg1) { qt_gsi::qt_keep (obj); @@ -1731,9 +1731,9 @@ static void _call_ctor_QTreeWidgetItem_Adaptor_4779 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - QTreeWidgetItem *arg2 = args.read (heap); - int arg3 = args ? args.read (heap) : (int)(QTreeWidgetItem::Type); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QTreeWidgetItem *arg2 = gsi::arg_reader() (args, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QTreeWidgetItem::Type, heap); QTreeWidgetItem_Adaptor *obj = new QTreeWidgetItem_Adaptor (arg1, arg2, arg3); if (arg1) { qt_gsi::qt_keep (obj); diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItemIterator.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItemIterator.cc index 825ce9980..710860168 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItemIterator.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQTreeWidgetItemIterator.cc @@ -52,7 +52,7 @@ static void _call_ctor_QTreeWidgetItemIterator_3647 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItemIterator &arg1 = args.read (heap); + const QTreeWidgetItemIterator &arg1 = gsi::arg_reader() (args, heap); ret.write (new QTreeWidgetItemIterator (arg1)); } @@ -73,8 +73,8 @@ static void _call_ctor_QTreeWidgetItemIterator_6409 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidget *arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QTreeWidgetItemIterator::All); + QTreeWidget *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QTreeWidgetItemIterator::All, heap); ret.write (new QTreeWidgetItemIterator (arg1, arg2)); } @@ -95,8 +95,8 @@ static void _call_ctor_QTreeWidgetItemIterator_6808 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTreeWidgetItem *arg1 = args.read (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(QTreeWidgetItemIterator::All); + QTreeWidgetItem *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QTreeWidgetItemIterator::All, heap); ret.write (new QTreeWidgetItemIterator (arg1, arg2)); } @@ -145,7 +145,7 @@ static void _call_f_operator_plus__plus__767 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const QTreeWidgetItemIterator)((QTreeWidgetItemIterator *)cls)->operator++ (arg1)); } @@ -164,7 +164,7 @@ static void _call_f_operator_plus__eq__767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItemIterator &)((QTreeWidgetItemIterator *)cls)->operator+= (arg1)); } @@ -198,7 +198,7 @@ static void _call_f_operator_minus__minus__767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const QTreeWidgetItemIterator)((QTreeWidgetItemIterator *)cls)->operator-- (arg1)); } @@ -217,7 +217,7 @@ static void _call_f_operator_minus__eq__767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItemIterator &)((QTreeWidgetItemIterator *)cls)->operator-= (arg1)); } @@ -236,7 +236,7 @@ static void _call_f_operator_eq__3647 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTreeWidgetItemIterator &arg1 = args.read (heap); + const QTreeWidgetItemIterator &arg1 = gsi::arg_reader() (args, heap); ret.write ((QTreeWidgetItemIterator &)((QTreeWidgetItemIterator *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoCommand.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoCommand.cc index a08d8dbda..04f0ce2d8 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoCommand.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoCommand.cc @@ -65,7 +65,7 @@ static void _call_f_child_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const QUndoCommand *)((QUndoCommand *)cls)->child (arg1)); } @@ -114,7 +114,7 @@ static void _call_f_mergeWith_2507 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUndoCommand *arg1 = args.read (heap); + const QUndoCommand *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoCommand *)cls)->mergeWith (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_setText_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoCommand *)cls)->setText (arg1); } @@ -323,7 +323,7 @@ static void _call_ctor_QUndoCommand_Adaptor_1812 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoCommand *arg1 = args ? args.read (heap) : (QUndoCommand *)(0); + QUndoCommand *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUndoCommand_Adaptor (arg1)); } @@ -343,8 +343,8 @@ static void _call_ctor_QUndoCommand_Adaptor_3729 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QUndoCommand *arg2 = args ? args.read (heap) : (QUndoCommand *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QUndoCommand *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUndoCommand_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoGroup.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoGroup.cc index 4ccbe2db0..b20d76747 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoGroup.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoGroup.cc @@ -86,7 +86,7 @@ static void _call_f_addStack_1611 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoStack *arg1 = args.read (heap); + QUndoStack *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup *)cls)->addStack (arg1); } @@ -138,8 +138,8 @@ static void _call_f_createRedoAction_c3219 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QAction *)((QUndoGroup *)cls)->createRedoAction (arg1, arg2)); } @@ -160,8 +160,8 @@ static void _call_f_createUndoAction_c3219 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QAction *)((QUndoGroup *)cls)->createUndoAction (arg1, arg2)); } @@ -226,7 +226,7 @@ static void _call_f_removeStack_1611 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoStack *arg1 = args.read (heap); + QUndoStack *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup *)cls)->removeStack (arg1); } @@ -246,7 +246,7 @@ static void _call_f_setActiveStack_1611 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoStack *arg1 = args.read (heap); + QUndoStack *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoGroup *)cls)->setActiveStack (arg1); } @@ -316,9 +316,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QUndoGroup::tr (arg1, arg2, arg3)); } @@ -341,9 +341,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QUndoGroup::trUtf8 (arg1, arg2, arg3)); } @@ -591,7 +591,7 @@ static void _call_ctor_QUndoGroup_Adaptor_1302 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUndoGroup_Adaptor (arg1)); } @@ -609,7 +609,7 @@ static void _call_emitter_activeStackChanged_1611 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoStack *arg1 = args.read (heap); + QUndoStack *arg1 = gsi::arg_reader() (args, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_activeStackChanged_1611 (arg1); } @@ -627,7 +627,7 @@ static void _call_emitter_canRedoChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_canRedoChanged_864 (arg1); } @@ -645,7 +645,7 @@ static void _call_emitter_canUndoChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_canUndoChanged_864 (arg1); } @@ -687,7 +687,7 @@ static void _call_emitter_cleanChanged_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_cleanChanged_864 (arg1); } @@ -729,7 +729,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_destroyed_1302 (arg1); } @@ -820,7 +820,7 @@ static void _call_emitter_indexChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_indexChanged_767 (arg1); } @@ -838,7 +838,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoGroup_Adaptor *)cls)->fp_QUndoGroup_isSignalConnected_c2394 (arg1)); } @@ -856,7 +856,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUndoGroup_Adaptor *)cls)->fp_QUndoGroup_receivers_c1731 (arg1)); } @@ -874,7 +874,7 @@ static void _call_emitter_redoTextChanged_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_redoTextChanged_2025 (arg1); } @@ -944,7 +944,7 @@ static void _call_emitter_undoTextChanged_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QUndoGroup_Adaptor *)cls)->emitter_QUndoGroup_undoTextChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoStack.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoStack.cc index a7dd7f0a6..8b303cd69 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoStack.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoStack.cc @@ -71,7 +71,7 @@ static void _call_f_beginMacro_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack *)cls)->beginMacro (arg1); } @@ -152,7 +152,7 @@ static void _call_f_command_c767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((const QUndoCommand *)((QUndoStack *)cls)->command (arg1)); } @@ -188,8 +188,8 @@ static void _call_f_createRedoAction_c3219 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QAction *)((QUndoStack *)cls)->createRedoAction (arg1, arg2)); } @@ -210,8 +210,8 @@ static void _call_f_createUndoAction_c3219 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + QObject *arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QAction *)((QUndoStack *)cls)->createUndoAction (arg1, arg2)); } @@ -291,7 +291,7 @@ static void _call_f_push_1812 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoCommand *arg1 = args.read (heap); + QUndoCommand *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack *)cls)->push (arg1); } @@ -342,7 +342,7 @@ static void _call_f_setActive_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack *)cls)->setActive (arg1); } @@ -378,7 +378,7 @@ static void _call_f_setIndex_767 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack *)cls)->setIndex (arg1); } @@ -398,7 +398,7 @@ static void _call_f_setUndoLimit_767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoStack *)cls)->setUndoLimit (arg1); } @@ -418,7 +418,7 @@ static void _call_f_text_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QUndoStack *)cls)->text (arg1)); } @@ -487,9 +487,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QUndoStack::tr (arg1, arg2, arg3)); } @@ -512,9 +512,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QUndoStack::trUtf8 (arg1, arg2, arg3)); } @@ -765,7 +765,7 @@ static void _call_ctor_QUndoStack_Adaptor_1302 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUndoStack_Adaptor (arg1)); } @@ -783,7 +783,7 @@ static void _call_emitter_canRedoChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QUndoStack_Adaptor *)cls)->emitter_QUndoStack_canRedoChanged_864 (arg1); } @@ -801,7 +801,7 @@ static void _call_emitter_canUndoChanged_864 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QUndoStack_Adaptor *)cls)->emitter_QUndoStack_canUndoChanged_864 (arg1); } @@ -843,7 +843,7 @@ static void _call_emitter_cleanChanged_864 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QUndoStack_Adaptor *)cls)->emitter_QUndoStack_cleanChanged_864 (arg1); } @@ -885,7 +885,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QUndoStack_Adaptor *)cls)->emitter_QUndoStack_destroyed_1302 (arg1); } @@ -976,7 +976,7 @@ static void _call_emitter_indexChanged_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QUndoStack_Adaptor *)cls)->emitter_QUndoStack_indexChanged_767 (arg1); } @@ -994,7 +994,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoStack_Adaptor *)cls)->fp_QUndoStack_isSignalConnected_c2394 (arg1)); } @@ -1012,7 +1012,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUndoStack_Adaptor *)cls)->fp_QUndoStack_receivers_c1731 (arg1)); } @@ -1030,7 +1030,7 @@ static void _call_emitter_redoTextChanged_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QUndoStack_Adaptor *)cls)->emitter_QUndoStack_redoTextChanged_2025 (arg1); } @@ -1100,7 +1100,7 @@ static void _call_emitter_undoTextChanged_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QUndoStack_Adaptor *)cls)->emitter_QUndoStack_undoTextChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoView.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoView.cc index 56c442dfe..fe2406807 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoView.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQUndoView.cc @@ -169,7 +169,7 @@ static void _call_f_setCleanIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView *)cls)->setCleanIcon (arg1); } @@ -189,7 +189,7 @@ static void _call_f_setEmptyLabel_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView *)cls)->setEmptyLabel (arg1); } @@ -209,7 +209,7 @@ static void _call_f_setGroup_1634 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoGroup *arg1 = args.read (heap); + QUndoGroup *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView *)cls)->setGroup (arg1); } @@ -229,7 +229,7 @@ static void _call_f_setStack_1611 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoStack *arg1 = args.read (heap); + QUndoStack *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView *)cls)->setStack (arg1); } @@ -268,9 +268,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QUndoView::tr (arg1, arg2, arg3)); } @@ -293,9 +293,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QUndoView::trUtf8 (arg1, arg2, arg3)); } @@ -2037,7 +2037,7 @@ static void _call_ctor_QUndoView_Adaptor_1315 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUndoView_Adaptor (arg1)); } @@ -2057,8 +2057,8 @@ static void _call_ctor_QUndoView_Adaptor_2818 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoStack *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QUndoStack *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUndoView_Adaptor (arg1, arg2)); } @@ -2078,8 +2078,8 @@ static void _call_ctor_QUndoView_Adaptor_2841 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QUndoGroup *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); + QUndoGroup *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QUndoView_Adaptor (arg1, arg2)); } @@ -2121,7 +2121,7 @@ static void _call_emitter_activated_2395 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_activated_2395 (arg1); } @@ -2187,7 +2187,7 @@ static void _call_emitter_clicked_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_clicked_2395 (arg1); } @@ -2322,9 +2322,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_create_2208 (arg1, arg2, arg3); } @@ -2370,7 +2370,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_customContextMenuRequested_1916 (arg1); } @@ -2444,8 +2444,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_destroy_1620 (arg1, arg2); } @@ -2464,7 +2464,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_destroyed_1302 (arg1); } @@ -2555,7 +2555,7 @@ static void _call_emitter_doubleClicked_2395 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_doubleClicked_2395 (arg1); } @@ -2645,7 +2645,7 @@ static void _call_fp_drawFrame_1426 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); + QPainter *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_drawFrame_1426 (arg1); } @@ -2779,7 +2779,7 @@ static void _call_emitter_entered_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_entered_2395 (arg1); } @@ -3107,7 +3107,7 @@ static void _call_emitter_iconSizeChanged_1805 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_iconSizeChanged_1805 (arg1); } @@ -3148,7 +3148,7 @@ static void _call_emitter_indexesMoved_3010 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_indexesMoved_3010 (arg1); } @@ -3190,7 +3190,7 @@ static void _call_fp_initStyleOption_c2356 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyleOptionFrame *arg1 = args.read (heap); + QStyleOptionFrame *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_initStyleOption_c2356 (arg1); } @@ -3279,7 +3279,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QUndoView_Adaptor *)cls)->fp_QUndoView_isSignalConnected_c2394 (arg1)); } @@ -3653,7 +3653,7 @@ static void _call_emitter_pressed_2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_pressed_2395 (arg1); } @@ -3671,7 +3671,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QUndoView_Adaptor *)cls)->fp_QUndoView_receivers_c1731 (arg1)); } @@ -3689,7 +3689,7 @@ static void _call_fp_rectForIndex_c2395 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QModelIndex &arg1 = args.read (heap); + const QModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QUndoView_Adaptor *)cls)->fp_QUndoView_rectForIndex_c2395 (arg1)); } @@ -3752,8 +3752,8 @@ static void _call_fp_resizeContents_1426 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_resizeContents_1426 (arg1, arg2); } @@ -3900,8 +3900,8 @@ static void _call_fp_scrollDirtyRegion_1426 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_scrollDirtyRegion_1426 (arg1, arg2); } @@ -4067,7 +4067,7 @@ static void _call_fp_setDirtyRegion_2006 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_setDirtyRegion_2006 (arg1); } @@ -4086,7 +4086,7 @@ static void _call_fp_setHorizontalStepsPerItem_767 (const qt_gsi::GenericMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_setHorizontalStepsPerItem_767 (arg1); } @@ -4131,8 +4131,8 @@ static void _call_fp_setPositionForIndex_4203 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QModelIndex &arg2 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QModelIndex &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_setPositionForIndex_4203 (arg1, arg2); } @@ -4226,7 +4226,7 @@ static void _call_fp_setState_2776 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned int arg1 = args.read (heap); + unsigned int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_setState_2776 (arg1); } @@ -4245,7 +4245,7 @@ static void _call_fp_setVerticalStepsPerItem_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_setVerticalStepsPerItem_767 (arg1); } @@ -4270,10 +4270,10 @@ static void _call_fp_setViewportMargins_2744 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_setViewportMargins_2744 (arg1, arg2, arg3, arg4); } @@ -4292,7 +4292,7 @@ static void _call_fp_setViewportMargins_2115 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QUndoView_Adaptor *)cls)->fp_QUndoView_setViewportMargins_2115 (arg1); } @@ -4898,7 +4898,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_windowIconChanged_1787 (arg1); } @@ -4916,7 +4916,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_windowIconTextChanged_2025 (arg1); } @@ -4934,7 +4934,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QUndoView_Adaptor *)cls)->emitter_QUndoView_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQVBoxLayout.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQVBoxLayout.cc index 174a494e1..09534e796 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQVBoxLayout.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQVBoxLayout.cc @@ -80,9 +80,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVBoxLayout::tr (arg1, arg2, arg3)); } @@ -105,9 +105,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QVBoxLayout::trUtf8 (arg1, arg2, arg3)); } @@ -651,7 +651,7 @@ static void _call_ctor_QVBoxLayout_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QVBoxLayout_Adaptor (arg1)); } @@ -669,7 +669,7 @@ static void _call_fp_addChildLayout_1341 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); qt_gsi::qt_keep (arg1); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->fp_QVBoxLayout_addChildLayout_1341 (arg1); @@ -689,7 +689,7 @@ static void _call_fp_addChildWidget_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->fp_QVBoxLayout_addChildWidget_1315 (arg1); } @@ -732,7 +732,7 @@ static void _call_fp_adoptLayout_1341 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVBoxLayout_Adaptor *)cls)->fp_QVBoxLayout_adoptLayout_1341 (arg1)); } @@ -750,7 +750,7 @@ static void _call_fp_alignmentRect_c1792 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); ret.write ((QRect)((QVBoxLayout_Adaptor *)cls)->fp_QVBoxLayout_alignmentRect_c1792 (arg1)); } @@ -854,7 +854,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QVBoxLayout_Adaptor *)cls)->emitter_QVBoxLayout_destroyed_1302 (arg1); } @@ -1087,7 +1087,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QVBoxLayout_Adaptor *)cls)->fp_QVBoxLayout_isSignalConnected_c2394 (arg1)); } @@ -1208,7 +1208,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QVBoxLayout_Adaptor *)cls)->fp_QVBoxLayout_receivers_c1731 (arg1)); } @@ -1382,7 +1382,7 @@ static void _call_fp_widgetEvent_1217 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QEvent *arg1 = args.read (heap); + QEvent *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QVBoxLayout_Adaptor *)cls)->fp_QVBoxLayout_widgetEvent_1217 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWhatsThis.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWhatsThis.cc index a6d022a29..be12d3dcf 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWhatsThis.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWhatsThis.cc @@ -54,7 +54,7 @@ static void _call_f_createAction_1302 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((QAction *)QWhatsThis::createAction (arg1)); } @@ -140,9 +140,9 @@ static void _call_f_showText_5040 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - QWidget *arg3 = args ? args.read (heap) : (QWidget *)(0); + const QPoint &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + QWidget *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); QWhatsThis::showText (arg1, arg2, arg3); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc index c3609d868..90585d721 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidget.cc @@ -189,7 +189,7 @@ static void _call_f_addAction_1309 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->addAction (arg1); } @@ -209,7 +209,7 @@ static void _call_f_addActions_1780 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QList arg1 = args.read > (heap); + QList arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->addActions (arg1); } @@ -307,8 +307,8 @@ static void _call_f_childAt_c1426 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QWidget *)cls)->childAt (arg1, arg2)); } @@ -327,7 +327,7 @@ static void _call_f_childAt_c1916 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QWidget *)cls)->childAt (arg1)); } @@ -686,10 +686,10 @@ static void _call_f_getContentsMargins_c3488 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int *arg1 = args.read (heap); - int *arg2 = args.read (heap); - int *arg3 = args.read (heap); - int *arg4 = args.read (heap); + int *arg1 = gsi::arg_reader() (args, heap); + int *arg2 = gsi::arg_reader() (args, heap); + int *arg3 = gsi::arg_reader() (args, heap); + int *arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->getContentsMargins (arg1, arg2, arg3, arg4); } @@ -709,7 +709,7 @@ static void _call_f_grab_1792 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args ? args.read (heap) : (const QRect &)(QRect(QPoint(0, 0), QSize(-1, -1))); + const QRect &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRect(QPoint(0, 0), QSize(-1, -1)), heap); ret.write ((QPixmap)((QWidget *)cls)->grab (arg1)); } @@ -730,8 +730,8 @@ static void _call_f_grabGesture_4352 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(Qt::GestureFlags()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (Qt::GestureFlags(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->grabGesture (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -783,7 +783,7 @@ static void _call_f_grabMouse_2032 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCursor &arg1 = args.read (heap); + const QCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->grabMouse (arg1); } @@ -805,8 +805,8 @@ static void _call_f_grabShortcut_4758 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QKeySequence &arg1 = args.read (heap); - const qt_gsi::Converter::target_type & arg2 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, Qt::WindowShortcut)); + const QKeySequence &arg1 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg2 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, Qt::WindowShortcut), heap); ret.write ((int)((QWidget *)cls)->grabShortcut (arg1, qt_gsi::QtToCppAdaptor(arg2).cref())); } @@ -915,7 +915,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidget *)cls)->heightForWidth (arg1)); } @@ -965,7 +965,7 @@ static void _call_f_inputMethodQuery_c2420 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QVariant)((QWidget *)cls)->inputMethodQuery (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -986,8 +986,8 @@ static void _call_f_insertAction_2510 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - QAction *arg2 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + QAction *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->insertAction (arg1, arg2); } @@ -1009,8 +1009,8 @@ static void _call_f_insertActions_2981 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); - QList arg2 = args.read > (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); + QList arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->insertActions (arg1, arg2); } @@ -1060,7 +1060,7 @@ static void _call_f_isAncestorOf_c2010 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget *)cls)->isAncestorOf (arg1)); } @@ -1094,7 +1094,7 @@ static void _call_f_isEnabledTo_c2010 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget *)cls)->isEnabledTo (arg1)); } @@ -1263,7 +1263,7 @@ static void _call_f_isVisibleTo_c2010 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget *)cls)->isVisibleTo (arg1)); } @@ -1375,8 +1375,8 @@ static void _call_f_mapFrom_c3818 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QWidget *)cls)->mapFrom (arg1, arg2)); } @@ -1395,7 +1395,7 @@ static void _call_f_mapFromGlobal_c1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QWidget *)cls)->mapFromGlobal (arg1)); } @@ -1414,7 +1414,7 @@ static void _call_f_mapFromParent_c1916 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QWidget *)cls)->mapFromParent (arg1)); } @@ -1435,8 +1435,8 @@ static void _call_f_mapTo_c3818 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QWidget *arg1 = args.read (heap); - const QPoint &arg2 = args.read (heap); + const QWidget *arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QWidget *)cls)->mapTo (arg1, arg2)); } @@ -1455,7 +1455,7 @@ static void _call_f_mapToGlobal_c1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QWidget *)cls)->mapToGlobal (arg1)); } @@ -1474,7 +1474,7 @@ static void _call_f_mapToParent_c1916 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ret.write ((QPoint)((QWidget *)cls)->mapToParent (arg1)); } @@ -1615,8 +1615,8 @@ static void _call_f_move_1426 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->move (arg1, arg2); } @@ -1636,7 +1636,7 @@ static void _call_f_move_1916 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->move (arg1); } @@ -1701,7 +1701,7 @@ static void _call_f_overrideWindowFlags_2495 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->overrideWindowFlags (arg1); } @@ -1721,7 +1721,7 @@ static void _call_f_overrideWindowState_2590 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->overrideWindowState (arg1); } @@ -1879,7 +1879,7 @@ static void _call_f_releaseShortcut_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->releaseShortcut (arg1); } @@ -1899,7 +1899,7 @@ static void _call_f_removeAction_1309 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAction *arg1 = args.read (heap); + QAction *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->removeAction (arg1); } @@ -1925,10 +1925,10 @@ static void _call_f_render_8328 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPaintDevice *arg1 = args.read (heap); - const QPoint &arg2 = args ? args.read (heap) : (const QPoint &)(QPoint()); - const QRegion &arg3 = args ? args.read (heap) : (const QRegion &)(QRegion()); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QWidget::RenderFlags(QWidget::DrawWindowBackground | QWidget::DrawChildren)); + QPaintDevice *arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPoint(), heap); + const QRegion &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRegion(), heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QWidget::RenderFlags(QWidget::DrawWindowBackground | QWidget::DrawChildren), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->render (arg1, arg2, arg3, arg4); } @@ -1954,10 +1954,10 @@ static void _call_f_render_7951 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QPainter *arg1 = args.read (heap); - const QPoint &arg2 = args ? args.read (heap) : (const QPoint &)(QPoint()); - const QRegion &arg3 = args ? args.read (heap) : (const QRegion &)(QRegion()); - QFlags arg4 = args ? args.read > (heap) : (QFlags)(QWidget::RenderFlags(QWidget::DrawWindowBackground | QWidget::DrawChildren)); + QPainter *arg1 = gsi::arg_reader() (args, heap); + const QPoint &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QPoint(), heap); + const QRegion &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QRegion(), heap); + QFlags arg4 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (QWidget::RenderFlags(QWidget::DrawWindowBackground | QWidget::DrawChildren), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->render (arg1, arg2, arg3, arg4); } @@ -1999,10 +1999,10 @@ static void _call_f_repaint_2744 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->repaint (arg1, arg2, arg3, arg4); } @@ -2022,7 +2022,7 @@ static void _call_f_repaint_1792 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->repaint (arg1); } @@ -2042,7 +2042,7 @@ static void _call_f_repaint_2006 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->repaint (arg1); } @@ -2064,8 +2064,8 @@ static void _call_f_resize_1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->resize (arg1, arg2); } @@ -2085,7 +2085,7 @@ static void _call_f_resize_1805 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->resize (arg1); } @@ -2105,7 +2105,7 @@ static void _call_f_restoreGeometry_2309 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget *)cls)->restoreGeometry (arg1)); } @@ -2141,8 +2141,8 @@ static void _call_f_scroll_1426 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->scroll (arg1, arg2); } @@ -2166,9 +2166,9 @@ static void _call_f_scroll_3110 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - const QRect &arg3 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const QRect &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->scroll (arg1, arg2, arg3); } @@ -2188,7 +2188,7 @@ static void _call_f_setAcceptDrops_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setAcceptDrops (arg1); } @@ -2208,7 +2208,7 @@ static void _call_f_setAccessibleDescription_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setAccessibleDescription (arg1); } @@ -2228,7 +2228,7 @@ static void _call_f_setAccessibleName_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setAccessibleName (arg1); } @@ -2250,8 +2250,8 @@ static void _call_f_setAttribute_3065 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setAttribute (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -2271,7 +2271,7 @@ static void _call_f_setAutoFillBackground_864 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setAutoFillBackground (arg1); } @@ -2291,7 +2291,7 @@ static void _call_f_setBackgroundRole_2265 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setBackgroundRole (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -2311,7 +2311,7 @@ static void _call_f_setBaseSize_1805 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setBaseSize (arg1); } @@ -2333,8 +2333,8 @@ static void _call_f_setBaseSize_1426 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setBaseSize (arg1, arg2); } @@ -2360,10 +2360,10 @@ static void _call_f_setContentsMargins_2744 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setContentsMargins (arg1, arg2, arg3, arg4); } @@ -2383,7 +2383,7 @@ static void _call_f_setContentsMargins_2115 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMargins &arg1 = args.read (heap); + const QMargins &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setContentsMargins (arg1); } @@ -2403,7 +2403,7 @@ static void _call_f_setContextMenuPolicy_2519 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setContextMenuPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -2423,7 +2423,7 @@ static void _call_f_setCursor_2032 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QCursor &arg1 = args.read (heap); + const QCursor &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setCursor (arg1); } @@ -2443,7 +2443,7 @@ static void _call_f_setDisabled_864 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setDisabled (arg1); } @@ -2463,7 +2463,7 @@ static void _call_f_setEnabled_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setEnabled (arg1); } @@ -2483,7 +2483,7 @@ static void _call_f_setFixedHeight_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFixedHeight (arg1); } @@ -2503,7 +2503,7 @@ static void _call_f_setFixedSize_1805 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFixedSize (arg1); } @@ -2525,8 +2525,8 @@ static void _call_f_setFixedSize_1426 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFixedSize (arg1, arg2); } @@ -2546,7 +2546,7 @@ static void _call_f_setFixedWidth_767 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFixedWidth (arg1); } @@ -2582,7 +2582,7 @@ static void _call_f_setFocus_1877 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFocus (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -2602,7 +2602,7 @@ static void _call_f_setFocusPolicy_1885 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFocusPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -2622,7 +2622,7 @@ static void _call_f_setFocusProxy_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFocusProxy (arg1); } @@ -2642,7 +2642,7 @@ static void _call_f_setFont_1801 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QFont &arg1 = args.read (heap); + const QFont &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setFont (arg1); } @@ -2662,7 +2662,7 @@ static void _call_f_setForegroundRole_2265 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setForegroundRole (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -2688,10 +2688,10 @@ static void _call_f_setGeometry_2744 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setGeometry (arg1, arg2, arg3, arg4); } @@ -2711,7 +2711,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setGeometry (arg1); } @@ -2731,7 +2731,7 @@ static void _call_f_setGraphicsEffect_2109 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QGraphicsEffect *arg1 = args.read (heap); + QGraphicsEffect *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setGraphicsEffect (arg1); } @@ -2751,7 +2751,7 @@ static void _call_f_setHidden_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setHidden (arg1); } @@ -2771,7 +2771,7 @@ static void _call_f_setInputMethodHints_2985 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setInputMethodHints (arg1); } @@ -2791,7 +2791,7 @@ static void _call_f_setLayout_1341 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QLayout *arg1 = args.read (heap); + QLayout *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setLayout (arg1); } @@ -2811,7 +2811,7 @@ static void _call_f_setLayoutDirection_2316 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setLayoutDirection (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -2831,7 +2831,7 @@ static void _call_f_setLocale_1986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QLocale &arg1 = args.read (heap); + const QLocale &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setLocale (arg1); } @@ -2851,7 +2851,7 @@ static void _call_f_setMask_1999 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QBitmap &arg1 = args.read (heap); + const QBitmap &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMask (arg1); } @@ -2871,7 +2871,7 @@ static void _call_f_setMask_2006 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMask (arg1); } @@ -2891,7 +2891,7 @@ static void _call_f_setMaximumHeight_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMaximumHeight (arg1); } @@ -2911,7 +2911,7 @@ static void _call_f_setMaximumSize_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMaximumSize (arg1); } @@ -2933,8 +2933,8 @@ static void _call_f_setMaximumSize_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMaximumSize (arg1, arg2); } @@ -2954,7 +2954,7 @@ static void _call_f_setMaximumWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMaximumWidth (arg1); } @@ -2974,7 +2974,7 @@ static void _call_f_setMinimumHeight_767 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMinimumHeight (arg1); } @@ -2994,7 +2994,7 @@ static void _call_f_setMinimumSize_1805 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMinimumSize (arg1); } @@ -3016,8 +3016,8 @@ static void _call_f_setMinimumSize_1426 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMinimumSize (arg1, arg2); } @@ -3037,7 +3037,7 @@ static void _call_f_setMinimumWidth_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMinimumWidth (arg1); } @@ -3057,7 +3057,7 @@ static void _call_f_setMouseTracking_864 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setMouseTracking (arg1); } @@ -3077,7 +3077,7 @@ static void _call_f_setPalette_2113 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPalette &arg1 = args.read (heap); + const QPalette &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setPalette (arg1); } @@ -3097,7 +3097,7 @@ static void _call_f_setParent_1315 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setParent (arg1); } @@ -3119,8 +3119,8 @@ static void _call_f_setParent_3702 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QFlags arg2 = args.read > (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QFlags arg2 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setParent (arg1, arg2); } @@ -3142,8 +3142,8 @@ static void _call_f_setShortcutAutoRepeat_1523 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setShortcutAutoRepeat (arg1, arg2); } @@ -3165,8 +3165,8 @@ static void _call_f_setShortcutEnabled_1523 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + int arg1 = gsi::arg_reader() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setShortcutEnabled (arg1, arg2); } @@ -3186,7 +3186,7 @@ static void _call_f_setSizeIncrement_1805 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSize &arg1 = args.read (heap); + const QSize &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setSizeIncrement (arg1); } @@ -3208,8 +3208,8 @@ static void _call_f_setSizeIncrement_1426 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setSizeIncrement (arg1, arg2); } @@ -3229,7 +3229,7 @@ static void _call_f_setSizePolicy_1552 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QSizePolicy arg1 = args.read (heap); + QSizePolicy arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setSizePolicy (arg1); } @@ -3251,8 +3251,8 @@ static void _call_f_setSizePolicy_4476 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const qt_gsi::Converter::target_type & arg2 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const qt_gsi::Converter::target_type & arg2 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setSizePolicy (qt_gsi::QtToCppAdaptor(arg1).cref(), qt_gsi::QtToCppAdaptor(arg2).cref()); } @@ -3272,7 +3272,7 @@ static void _call_f_setStatusTip_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setStatusTip (arg1); } @@ -3292,7 +3292,7 @@ static void _call_f_setStyle_1232 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStyle *arg1 = args.read (heap); + QStyle *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setStyle (arg1); } @@ -3312,7 +3312,7 @@ static void _call_f_setStyleSheet_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setStyleSheet (arg1); } @@ -3332,7 +3332,7 @@ static void _call_f_setToolTip_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setToolTip (arg1); } @@ -3352,7 +3352,7 @@ static void _call_f_setToolTipDuration_767 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setToolTipDuration (arg1); } @@ -3372,7 +3372,7 @@ static void _call_f_setUpdatesEnabled_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setUpdatesEnabled (arg1); } @@ -3392,7 +3392,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setVisible (arg1); } @@ -3412,7 +3412,7 @@ static void _call_f_setWhatsThis_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWhatsThis (arg1); } @@ -3432,7 +3432,7 @@ static void _call_f_setWindowFilePath_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowFilePath (arg1); } @@ -3452,7 +3452,7 @@ static void _call_f_setWindowFlags_2495 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowFlags (arg1); } @@ -3472,7 +3472,7 @@ static void _call_f_setWindowIcon_1787 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowIcon (arg1); } @@ -3492,7 +3492,7 @@ static void _call_f_setWindowIconText_2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowIconText (arg1); } @@ -3512,7 +3512,7 @@ static void _call_f_setWindowModality_2216 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowModality (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -3532,7 +3532,7 @@ static void _call_f_setWindowModified_864 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowModified (arg1); } @@ -3552,7 +3552,7 @@ static void _call_f_setWindowOpacity_1071 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - double arg1 = args.read (heap); + double arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowOpacity (arg1); } @@ -3572,7 +3572,7 @@ static void _call_f_setWindowRole_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowRole (arg1); } @@ -3592,7 +3592,7 @@ static void _call_f_setWindowState_2590 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowState (arg1); } @@ -3612,7 +3612,7 @@ static void _call_f_setWindowTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->setWindowTitle (arg1); } @@ -3772,7 +3772,7 @@ static void _call_f_stackUnder_1315 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->stackUnder (arg1); } @@ -3837,7 +3837,7 @@ static void _call_f_testAttribute_c2309 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QWidget *)cls)->testAttribute (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -3916,7 +3916,7 @@ static void _call_f_ungrabGesture_1902 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->ungrabGesture (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -4006,10 +4006,10 @@ static void _call_f_update_2744 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - int arg2 = args.read (heap); - int arg3 = args.read (heap); - int arg4 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); + int arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->update (arg1, arg2, arg3, arg4); } @@ -4029,7 +4029,7 @@ static void _call_f_update_1792 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->update (arg1); } @@ -4049,7 +4049,7 @@ static void _call_f_update_2006 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRegion &arg1 = args.read (heap); + const QRegion &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget *)cls)->update (arg1); } @@ -4374,9 +4374,9 @@ static void _call_f_createWindowContainer_4929 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWindow *arg1 = args.read (heap); - QWidget *arg2 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg3 = args ? args.read > (heap) : (QFlags)(0); + QWindow *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg3 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write ((QWidget *)QWidget::createWindowContainer (arg1, arg2, arg3)); } @@ -4395,7 +4395,7 @@ static void _call_f_find_696 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QWidget *)QWidget::find (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -4446,8 +4446,8 @@ static void _call_f_setTabOrder_2522 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QWidget::setTabOrder (arg1, arg2); } @@ -4471,9 +4471,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QWidget::tr (arg1, arg2, arg3)); } @@ -4496,9 +4496,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QWidget::trUtf8 (arg1, arg2, arg3)); } @@ -5659,8 +5659,8 @@ static void _call_ctor_QWidget_Adaptor_3702 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QWidget_Adaptor (arg1, arg2)); } @@ -5802,9 +5802,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->fp_QWidget_create_2208 (arg1, arg2, arg3); } @@ -5823,7 +5823,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QWidget_Adaptor *)cls)->emitter_QWidget_customContextMenuRequested_1916 (arg1); } @@ -5867,8 +5867,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidget_Adaptor *)cls)->fp_QWidget_destroy_1620 (arg1, arg2); } @@ -5887,7 +5887,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QWidget_Adaptor *)cls)->emitter_QWidget_destroyed_1302 (arg1); } @@ -6334,7 +6334,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidget_Adaptor *)cls)->fp_QWidget_isSignalConnected_c2394 (arg1)); } @@ -6658,7 +6658,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidget_Adaptor *)cls)->fp_QWidget_receivers_c1731 (arg1)); } @@ -6924,7 +6924,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QWidget_Adaptor *)cls)->emitter_QWidget_windowIconChanged_1787 (arg1); } @@ -6942,7 +6942,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QWidget_Adaptor *)cls)->emitter_QWidget_windowIconTextChanged_2025 (arg1); } @@ -6960,7 +6960,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QWidget_Adaptor *)cls)->emitter_QWidget_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetAction.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetAction.cc index 19af99284..960b2f696 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetAction.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetAction.cc @@ -90,7 +90,7 @@ static void _call_f_releaseWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction *)cls)->releaseWidget (arg1); } @@ -110,7 +110,7 @@ static void _call_f_requestWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write ((QWidget *)((QWidgetAction *)cls)->requestWidget (arg1)); } @@ -129,7 +129,7 @@ static void _call_f_setDefaultWidget_1315 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetAction *)cls)->setDefaultWidget (arg1); } @@ -153,9 +153,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QWidgetAction::tr (arg1, arg2, arg3)); } @@ -178,9 +178,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QWidgetAction::trUtf8 (arg1, arg2, arg3)); } @@ -428,7 +428,7 @@ static void _call_ctor_QWidgetAction_Adaptor_1302 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args.read (heap); + QObject *arg1 = gsi::arg_reader() (args, heap); ret.write (new QWidgetAction_Adaptor (arg1)); } @@ -569,7 +569,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QWidgetAction_Adaptor *)cls)->emitter_QWidgetAction_destroyed_1302 (arg1); } @@ -674,7 +674,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWidgetAction_Adaptor *)cls)->fp_QWidgetAction_isSignalConnected_c2394 (arg1)); } @@ -692,7 +692,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidgetAction_Adaptor *)cls)->fp_QWidgetAction_receivers_c1731 (arg1)); } @@ -762,7 +762,7 @@ static void _call_emitter_toggled_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); ((QWidgetAction_Adaptor *)cls)->emitter_QWidgetAction_toggled_864 (arg1); } @@ -780,7 +780,7 @@ static void _call_emitter_triggered_864 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(false); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (false, heap); ((QWidgetAction_Adaptor *)cls)->emitter_QWidgetAction_triggered_864 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc index 2af16c012..550c578c4 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWidgetItem.cc @@ -115,7 +115,7 @@ static void _call_f_heightForWidth_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWidgetItem *)cls)->heightForWidth (arg1)); } @@ -179,7 +179,7 @@ static void _call_f_setGeometry_1792 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QRect &arg1 = args.read (heap); + const QRect &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWidgetItem *)cls)->setGeometry (arg1); } @@ -514,7 +514,7 @@ static void _call_ctor_QWidgetItem_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); ret.write (new QWidgetItem_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc index 83597ba41..da8a28a68 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWizard.cc @@ -116,7 +116,7 @@ static void _call_f_addPage_1709 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWizardPage *arg1 = args.read (heap); + QWizardPage *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWizard *)cls)->addPage (arg1)); } @@ -151,7 +151,7 @@ static void _call_f_button_c2519 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QAbstractButton *)((QWizard *)cls)->button (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -170,7 +170,7 @@ static void _call_f_buttonText_c2519 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QWizard *)cls)->buttonText (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -219,7 +219,7 @@ static void _call_f_field_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QWizard *)cls)->field (arg1)); } @@ -238,7 +238,7 @@ static void _call_f_hasVisitedPage_c767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizard *)cls)->hasVisitedPage (arg1)); } @@ -303,7 +303,7 @@ static void _call_f_page_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QWizardPage *)((QWizard *)cls)->page (arg1)); } @@ -337,7 +337,7 @@ static void _call_f_pixmap_c2506 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPixmap)((QWizard *)cls)->pixmap (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -356,7 +356,7 @@ static void _call_f_removePage_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->removePage (arg1); } @@ -394,8 +394,8 @@ static void _call_f_setButton_4570 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - QAbstractButton *arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + QAbstractButton *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setButton (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -415,7 +415,7 @@ static void _call_f_setButtonLayout_4011 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QList &arg1 = args.read & > (heap); + const QList &arg1 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setButtonLayout (arg1); } @@ -437,8 +437,8 @@ static void _call_f_setButtonText_4436 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setButtonText (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -462,9 +462,9 @@ static void _call_f_setDefaultProperty_4977 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args.read (heap); - const char *arg3 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setDefaultProperty (arg1, arg2, arg3); } @@ -486,8 +486,8 @@ static void _call_f_setField_4036 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setField (arg1, arg2); } @@ -509,8 +509,8 @@ static void _call_f_setOption_3272 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - bool arg2 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setOption (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -530,7 +530,7 @@ static void _call_f_setOptions_3212 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QFlags arg1 = args.read > (heap); + QFlags arg1 = gsi::arg_reader >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setOptions (arg1); } @@ -552,8 +552,8 @@ static void _call_f_setPage_2368 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); - QWizardPage *arg2 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); + QWizardPage *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setPage (arg1, arg2); } @@ -575,8 +575,8 @@ static void _call_f_setPixmap_4415 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -596,7 +596,7 @@ static void _call_f_setSideWidget_1315 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setSideWidget (arg1); } @@ -616,7 +616,7 @@ static void _call_f_setStartId_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setStartId (arg1); } @@ -636,7 +636,7 @@ static void _call_f_setSubTitleFormat_1787 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setSubTitleFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -656,7 +656,7 @@ static void _call_f_setTitleFormat_1787 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setTitleFormat (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -676,7 +676,7 @@ static void _call_f_setVisible_864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setVisible (arg1); } @@ -696,7 +696,7 @@ static void _call_f_setWizardStyle_2412 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard *)cls)->setWizardStyle (qt_gsi::QtToCppAdaptor(arg1).cref()); } @@ -776,7 +776,7 @@ static void _call_f_testOption_c2516 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((bool)((QWizard *)cls)->testOption (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -859,9 +859,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QWizard::tr (arg1, arg2, arg3)); } @@ -884,9 +884,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QWizard::trUtf8 (arg1, arg2, arg3)); } @@ -2001,8 +2001,8 @@ static void _call_ctor_QWizard_Adaptor_3702 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); - QFlags arg2 = args ? args.read > (heap) : (QFlags)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + QFlags arg2 = args ? gsi::arg_reader >() (args, heap) : gsi::arg_maker >() (0, heap); ret.write (new QWizard_Adaptor (arg1, arg2)); } @@ -2078,7 +2078,7 @@ static void _call_fp_adjustPosition_1315 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args.read (heap); + QWidget *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->fp_QWizard_adjustPosition_1315 (arg1); } @@ -2221,9 +2221,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->fp_QWizard_create_2208 (arg1, arg2, arg3); } @@ -2242,7 +2242,7 @@ static void _call_emitter_currentIdChanged_767 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWizard_Adaptor *)cls)->emitter_QWizard_currentIdChanged_767 (arg1); } @@ -2260,7 +2260,7 @@ static void _call_emitter_customButtonClicked_767 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWizard_Adaptor *)cls)->emitter_QWizard_customButtonClicked_767 (arg1); } @@ -2278,7 +2278,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QWizard_Adaptor *)cls)->emitter_QWizard_customContextMenuRequested_1916 (arg1); } @@ -2322,8 +2322,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizard_Adaptor *)cls)->fp_QWizard_destroy_1620 (arg1, arg2); } @@ -2342,7 +2342,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QWizard_Adaptor *)cls)->emitter_QWizard_destroyed_1302 (arg1); } @@ -2596,7 +2596,7 @@ static void _call_emitter_finished_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWizard_Adaptor *)cls)->emitter_QWizard_finished_767 (arg1); } @@ -2888,7 +2888,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizard_Adaptor *)cls)->fp_QWizard_isSignalConnected_c2394 (arg1)); } @@ -3208,7 +3208,7 @@ static void _call_emitter_pageAdded_767 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWizard_Adaptor *)cls)->emitter_QWizard_pageAdded_767 (arg1); } @@ -3226,7 +3226,7 @@ static void _call_emitter_pageRemoved_767 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ((QWizard_Adaptor *)cls)->emitter_QWizard_pageRemoved_767 (arg1); } @@ -3287,7 +3287,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWizard_Adaptor *)cls)->fp_QWizard_receivers_c1731 (arg1)); } @@ -3606,7 +3606,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QWizard_Adaptor *)cls)->emitter_QWizard_windowIconChanged_1787 (arg1); } @@ -3624,7 +3624,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QWizard_Adaptor *)cls)->emitter_QWizard_windowIconTextChanged_2025 (arg1); } @@ -3642,7 +3642,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QWizard_Adaptor *)cls)->emitter_QWizard_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtWidgets/gsiDeclQWizardPage.cc b/src/gsiqt/qt5/QtWidgets/gsiDeclQWizardPage.cc index 84a6c72e7..2b4f86d30 100644 --- a/src/gsiqt/qt5/QtWidgets/gsiDeclQWizardPage.cc +++ b/src/gsiqt/qt5/QtWidgets/gsiDeclQWizardPage.cc @@ -115,7 +115,7 @@ static void _call_f_buttonText_c2519 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QString)((QWizardPage *)cls)->buttonText (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -226,7 +226,7 @@ static void _call_f_pixmap_c2506 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); ret.write ((QPixmap)((QWizardPage *)cls)->pixmap (qt_gsi::QtToCppAdaptor(arg1).cref())); } @@ -247,8 +247,8 @@ static void _call_f_setButtonText_4436 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage *)cls)->setButtonText (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -268,7 +268,7 @@ static void _call_f_setCommitPage_864 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage *)cls)->setCommitPage (arg1); } @@ -288,7 +288,7 @@ static void _call_f_setFinalPage_864 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args.read (heap); + bool arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage *)cls)->setFinalPage (arg1); } @@ -310,8 +310,8 @@ static void _call_f_setPixmap_4415 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QPixmap &arg2 = args.read (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QPixmap &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage *)cls)->setPixmap (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2); } @@ -331,7 +331,7 @@ static void _call_f_setSubTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage *)cls)->setSubTitle (arg1); } @@ -351,7 +351,7 @@ static void _call_f_setTitle_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage *)cls)->setTitle (arg1); } @@ -420,9 +420,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QWizardPage::tr (arg1, arg2, arg3)); } @@ -445,9 +445,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QWizardPage::trUtf8 (arg1, arg2, arg3)); } @@ -1433,7 +1433,7 @@ static void _call_ctor_QWizardPage_Adaptor_1315 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QWidget *arg1 = args ? args.read (heap) : (QWidget *)(0); + QWidget *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QWizardPage_Adaptor (arg1)); } @@ -1609,9 +1609,9 @@ static void _call_fp_create_2208 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, 0)); - bool arg2 = args ? args.read (heap) : (bool)(true); - bool arg3 = args ? args.read (heap) : (bool)(true); + const qt_gsi::Converter::target_type & arg1 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, 0), heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->fp_QWizardPage_create_2208 (arg1, arg2, arg3); } @@ -1630,7 +1630,7 @@ static void _call_emitter_customContextMenuRequested_1916 (const qt_gsi::Generic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QPoint &arg1 = args.read (heap); + const QPoint &arg1 = gsi::arg_reader() (args, heap); ((QWizardPage_Adaptor *)cls)->emitter_QWizardPage_customContextMenuRequested_1916 (arg1); } @@ -1674,8 +1674,8 @@ static void _call_fp_destroy_1620 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); - bool arg2 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); + bool arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->fp_QWizardPage_destroy_1620 (arg1, arg2); } @@ -1694,7 +1694,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QWizardPage_Adaptor *)cls)->emitter_QWizardPage_destroyed_1302 (arg1); } @@ -1905,7 +1905,7 @@ static void _call_fp_field_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QVariant)((QWizardPage_Adaptor *)cls)->fp_QWizardPage_field_c2025 (arg1)); } @@ -2198,7 +2198,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QWizardPage_Adaptor *)cls)->fp_QWizardPage_isSignalConnected_c2394 (arg1)); } @@ -2541,7 +2541,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QWizardPage_Adaptor *)cls)->fp_QWizardPage_receivers_c1731 (arg1)); } @@ -2588,10 +2588,10 @@ static void _call_fp_registerField_6478 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QWidget *arg2 = args.read (heap); - const char *arg3 = args ? args.read (heap) : (const char *)(0); - const char *arg4 = args ? args.read (heap) : (const char *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QWidget *arg2 = gsi::arg_reader() (args, heap); + const char *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + const char *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->fp_QWizardPage_registerField_6478 (arg1, arg2, arg3, arg4); } @@ -2664,8 +2664,8 @@ static void _call_fp_setField_4036 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QVariant &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QVariant &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QWizardPage_Adaptor *)cls)->fp_QWizardPage_setField_4036 (arg1, arg2); } @@ -2876,7 +2876,7 @@ static void _call_emitter_windowIconChanged_1787 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QIcon &arg1 = args.read (heap); + const QIcon &arg1 = gsi::arg_reader() (args, heap); ((QWizardPage_Adaptor *)cls)->emitter_QWizardPage_windowIconChanged_1787 (arg1); } @@ -2894,7 +2894,7 @@ static void _call_emitter_windowIconTextChanged_2025 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QWizardPage_Adaptor *)cls)->emitter_QWizardPage_windowIconTextChanged_2025 (arg1); } @@ -2912,7 +2912,7 @@ static void _call_emitter_windowTitleChanged_2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ((QWizardPage_Adaptor *)cls)->emitter_QWizardPage_windowTitleChanged_2025 (arg1); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomAttr.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomAttr.cc index 42833bc24..a205909ac 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomAttr.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomAttr.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomAttr_2093 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomAttr &arg1 = args.read (heap); + const QDomAttr &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomAttr (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_operator_eq__2093 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomAttr &arg1 = args.read (heap); + const QDomAttr &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr &)((QDomAttr *)cls)->operator= (arg1)); } @@ -164,7 +164,7 @@ static void _call_f_setValue_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomAttr *)cls)->setValue (arg1); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomCDATASection.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomCDATASection.cc index f37e2ed02..02527475f 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomCDATASection.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomCDATASection.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomCDATASection_2756 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomCDATASection &arg1 = args.read (heap); + const QDomCDATASection &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomCDATASection (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_eq__2756 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomCDATASection &arg1 = args.read (heap); + const QDomCDATASection &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomCDATASection &)((QDomCDATASection *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomCharacterData.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomCharacterData.cc index ea6d298f3..327c964df 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomCharacterData.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomCharacterData.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomCharacterData_2969 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomCharacterData &arg1 = args.read (heap); + const QDomCharacterData &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomCharacterData (arg1)); } @@ -100,7 +100,7 @@ static void _call_f_appendData_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomCharacterData *)cls)->appendData (arg1); } @@ -137,8 +137,8 @@ static void _call_f_deleteData_4588 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args.read (heap); - unsigned long int arg2 = args.read (heap); + unsigned long int arg1 = gsi::arg_reader() (args, heap); + unsigned long int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomCharacterData *)cls)->deleteData (arg1, arg2); } @@ -160,8 +160,8 @@ static void _call_f_insertData_4265 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + unsigned long int arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomCharacterData *)cls)->insertData (arg1, arg2); } @@ -211,7 +211,7 @@ static void _call_f_operator_eq__2969 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomCharacterData &arg1 = args.read (heap); + const QDomCharacterData &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomCharacterData &)((QDomCharacterData *)cls)->operator= (arg1)); } @@ -234,9 +234,9 @@ static void _call_f_replaceData_6505 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args.read (heap); - unsigned long int arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + unsigned long int arg1 = gsi::arg_reader() (args, heap); + unsigned long int arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomCharacterData *)cls)->replaceData (arg1, arg2, arg3); } @@ -256,7 +256,7 @@ static void _call_f_setData_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomCharacterData *)cls)->setData (arg1); } @@ -278,8 +278,8 @@ static void _call_f_substringData_4588 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - unsigned long int arg1 = args.read (heap); - unsigned long int arg2 = args.read (heap); + unsigned long int arg1 = gsi::arg_reader() (args, heap); + unsigned long int arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QDomCharacterData *)cls)->substringData (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomComment.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomComment.cc index 175c92d5c..b0543ff9a 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomComment.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomComment.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomComment_2405 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomComment &arg1 = args.read (heap); + const QDomComment &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomComment (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_eq__2405 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomComment &arg1 = args.read (heap); + const QDomComment &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomComment &)((QDomComment *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocument.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocument.cc index 7993dc92d..a164ad175 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocument.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocument.cc @@ -85,7 +85,7 @@ static void _call_ctor_QDomDocument_2025 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomDocument (arg1)); } @@ -104,7 +104,7 @@ static void _call_ctor_QDomDocument_2931 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomDocumentType &arg1 = args.read (heap); + const QDomDocumentType &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomDocument (arg1)); } @@ -123,7 +123,7 @@ static void _call_ctor_QDomDocument_2513 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomDocument &arg1 = args.read (heap); + const QDomDocument &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomDocument (arg1)); } @@ -142,7 +142,7 @@ static void _call_f_createAttribute_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr)((QDomDocument *)cls)->createAttribute (arg1)); } @@ -163,8 +163,8 @@ static void _call_f_createAttributeNS_3942 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr)((QDomDocument *)cls)->createAttributeNS (arg1, arg2)); } @@ -183,7 +183,7 @@ static void _call_f_createCDATASection_2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomCDATASection)((QDomDocument *)cls)->createCDATASection (arg1)); } @@ -202,7 +202,7 @@ static void _call_f_createComment_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomComment)((QDomDocument *)cls)->createComment (arg1)); } @@ -236,7 +236,7 @@ static void _call_f_createElement_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomElement)((QDomDocument *)cls)->createElement (arg1)); } @@ -257,8 +257,8 @@ static void _call_f_createElementNS_3942 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomElement)((QDomDocument *)cls)->createElementNS (arg1, arg2)); } @@ -277,7 +277,7 @@ static void _call_f_createEntityReference_2025 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomEntityReference)((QDomDocument *)cls)->createEntityReference (arg1)); } @@ -298,8 +298,8 @@ static void _call_f_createProcessingInstruction_3942 (const qt_gsi::GenericMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomProcessingInstruction)((QDomDocument *)cls)->createProcessingInstruction (arg1, arg2)); } @@ -318,7 +318,7 @@ static void _call_f_createTextNode_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomText)((QDomDocument *)cls)->createTextNode (arg1)); } @@ -367,7 +367,7 @@ static void _call_f_elementById_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomElement)((QDomDocument *)cls)->elementById (arg1)); } @@ -386,7 +386,7 @@ static void _call_f_elementsByTagName_c2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNodeList)((QDomDocument *)cls)->elementsByTagName (arg1)); } @@ -407,8 +407,8 @@ static void _call_f_elementsByTagNameNS_3942 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNodeList)((QDomDocument *)cls)->elementsByTagNameNS (arg1, arg2)); } @@ -444,8 +444,8 @@ static void _call_f_importNode_2828 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomDocument *)cls)->importNode (arg1, arg2)); } @@ -479,7 +479,7 @@ static void _call_f_operator_eq__2513 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomDocument &arg1 = args.read (heap); + const QDomDocument &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomDocument &)((QDomDocument *)cls)->operator= (arg1)); } @@ -506,11 +506,11 @@ static void _call_f_setContent_5697 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool arg2 = args.read (heap); - QString *arg3 = args ? args.read (heap) : (QString *)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); - int *arg5 = args ? args.read (heap) : (int *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); + QString *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QDomDocument *)cls)->setContent (arg1, arg2, arg3, arg4, arg5)); } @@ -537,11 +537,11 @@ static void _call_f_setContent_5119 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - bool arg2 = args.read (heap); - QString *arg3 = args ? args.read (heap) : (QString *)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); - int *arg5 = args ? args.read (heap) : (int *)(0); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); + QString *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QDomDocument *)cls)->setContent (arg1, arg2, arg3, arg4, arg5)); } @@ -568,11 +568,11 @@ static void _call_f_setContent_5833 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlInputSource *arg1 = args.read (heap); - bool arg2 = args.read (heap); - QString *arg3 = args ? args.read (heap) : (QString *)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); - int *arg5 = args ? args.read (heap) : (int *)(0); + QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); + QString *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QDomDocument *)cls)->setContent (arg1, arg2, arg3, arg4, arg5)); } @@ -597,10 +597,10 @@ static void _call_f_setContent_4941 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QString *arg2 = args ? args.read (heap) : (QString *)(0); - int *arg3 = args ? args.read (heap) : (int *)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + QString *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QDomDocument *)cls)->setContent (arg1, arg2, arg3, arg4)); } @@ -625,10 +625,10 @@ static void _call_f_setContent_4363 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - QString *arg2 = args ? args.read (heap) : (QString *)(0); - int *arg3 = args ? args.read (heap) : (int *)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + QString *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QDomDocument *)cls)->setContent (arg1, arg2, arg3, arg4)); } @@ -655,11 +655,11 @@ static void _call_f_setContent_6572 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlInputSource *arg1 = args.read (heap); - QXmlReader *arg2 = args.read (heap); - QString *arg3 = args ? args.read (heap) : (QString *)(0); - int *arg4 = args ? args.read (heap) : (int *)(0); - int *arg5 = args ? args.read (heap) : (int *)(0); + QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); + QXmlReader *arg2 = gsi::arg_reader() (args, heap); + QString *arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); + int *arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QDomDocument *)cls)->setContent (arg1, arg2, arg3, arg4, arg5)); } @@ -678,7 +678,7 @@ static void _call_f_toByteArray_c767 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write ((QByteArray)((QDomDocument *)cls)->toByteArray (arg1)); } @@ -697,7 +697,7 @@ static void _call_f_toString_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args ? args.read (heap) : (int)(1); + int arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (1, heap); ret.write ((QString)((QDomDocument *)cls)->toString (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentFragment.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentFragment.cc index 0ade67df3..b74363184 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentFragment.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentFragment.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomDocumentFragment_3333 (const qt_gsi::GenericStaticMet { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomDocumentFragment &arg1 = args.read (heap); + const QDomDocumentFragment &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomDocumentFragment (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_eq__3333 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomDocumentFragment &arg1 = args.read (heap); + const QDomDocumentFragment &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomDocumentFragment &)((QDomDocumentFragment *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentType.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentType.cc index c52458e9b..145a7a761 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentType.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomDocumentType.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomDocumentType_2931 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomDocumentType &arg1 = args.read (heap); + const QDomDocumentType &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomDocumentType (arg1)); } @@ -175,7 +175,7 @@ static void _call_f_operator_eq__2931 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomDocumentType &arg1 = args.read (heap); + const QDomDocumentType &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomDocumentType &)((QDomDocumentType *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomElement.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomElement.cc index b7cd58d76..d5d31578c 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomElement.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomElement.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomElement_2396 (const qt_gsi::GenericStaticMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomElement &arg1 = args.read (heap); + const QDomElement &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomElement (arg1)); } @@ -102,8 +102,8 @@ static void _call_f_attribute_c3942 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QString)((QDomElement *)cls)->attribute (arg1, arg2)); } @@ -126,9 +126,9 @@ static void _call_f_attributeNS_c5677 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); + const QString arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QString)((QDomElement *)cls)->attributeNS (arg1, arg2, arg3)); } @@ -147,7 +147,7 @@ static void _call_f_attributeNode_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr)((QDomElement *)cls)->attributeNode (arg1)); } @@ -168,8 +168,8 @@ static void _call_f_attributeNodeNS_3942 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr)((QDomElement *)cls)->attributeNodeNS (arg1, arg2)); } @@ -203,7 +203,7 @@ static void _call_f_elementsByTagName_c2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNodeList)((QDomElement *)cls)->elementsByTagName (arg1)); } @@ -224,8 +224,8 @@ static void _call_f_elementsByTagNameNS_c3942 (const qt_gsi::GenericMethod * /*d { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNodeList)((QDomElement *)cls)->elementsByTagNameNS (arg1, arg2)); } @@ -244,7 +244,7 @@ static void _call_f_hasAttribute_c2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomElement *)cls)->hasAttribute (arg1)); } @@ -265,8 +265,8 @@ static void _call_f_hasAttributeNS_c3942 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomElement *)cls)->hasAttributeNS (arg1, arg2)); } @@ -300,7 +300,7 @@ static void _call_f_operator_eq__2396 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomElement &arg1 = args.read (heap); + const QDomElement &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomElement &)((QDomElement *)cls)->operator= (arg1)); } @@ -319,7 +319,7 @@ static void _call_f_removeAttribute_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->removeAttribute (arg1); } @@ -341,8 +341,8 @@ static void _call_f_removeAttributeNS_3942 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->removeAttributeNS (arg1, arg2); } @@ -362,7 +362,7 @@ static void _call_f_removeAttributeNode_2093 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomAttr &arg1 = args.read (heap); + const QDomAttr &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr)((QDomElement *)cls)->removeAttributeNode (arg1)); } @@ -383,8 +383,8 @@ static void _call_f_setAttribute_3942 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttribute (arg1, arg2); } @@ -406,8 +406,8 @@ static void _call_f_setAttribute_3330 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - qlonglong arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + qlonglong arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttribute (arg1, arg2); } @@ -429,8 +429,8 @@ static void _call_f_setAttribute_3447 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - qulonglong arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + qulonglong arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttribute (arg1, arg2); } @@ -452,8 +452,8 @@ static void _call_f_setAttribute_2684 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - int arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttribute (arg1, arg2); } @@ -475,8 +475,8 @@ static void _call_f_setAttribute_3689 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - unsigned int arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + unsigned int arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttribute (arg1, arg2); } @@ -498,8 +498,8 @@ static void _call_f_setAttribute_2887 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - float arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + float arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttribute (arg1, arg2); } @@ -521,8 +521,8 @@ static void _call_f_setAttribute_2988 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - double arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + double arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttribute (arg1, arg2); } @@ -546,9 +546,9 @@ static void _call_f_setAttributeNS_5677 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttributeNS (arg1, arg2, arg3); } @@ -572,9 +572,9 @@ static void _call_f_setAttributeNS_4419 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - int arg3 = args.read (heap); + const QString arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttributeNS (arg1, arg2, arg3); } @@ -598,9 +598,9 @@ static void _call_f_setAttributeNS_5424 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - unsigned int arg3 = args.read (heap); + const QString arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + unsigned int arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttributeNS (arg1, arg2, arg3); } @@ -624,9 +624,9 @@ static void _call_f_setAttributeNS_5065 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - qlonglong arg3 = args.read (heap); + const QString arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + qlonglong arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttributeNS (arg1, arg2, arg3); } @@ -650,9 +650,9 @@ static void _call_f_setAttributeNS_5182 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - qulonglong arg3 = args.read (heap); + const QString arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + qulonglong arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttributeNS (arg1, arg2, arg3); } @@ -676,9 +676,9 @@ static void _call_f_setAttributeNS_4723 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - double arg3 = args.read (heap); + const QString arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + double arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setAttributeNS (arg1, arg2, arg3); } @@ -698,7 +698,7 @@ static void _call_f_setAttributeNode_2093 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomAttr &arg1 = args.read (heap); + const QDomAttr &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr)((QDomElement *)cls)->setAttributeNode (arg1)); } @@ -717,7 +717,7 @@ static void _call_f_setAttributeNodeNS_2093 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomAttr &arg1 = args.read (heap); + const QDomAttr &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomAttr)((QDomElement *)cls)->setAttributeNodeNS (arg1)); } @@ -736,7 +736,7 @@ static void _call_f_setTagName_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomElement *)cls)->setTagName (arg1); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomEntity.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomEntity.cc index fb2c8a672..daa70761d 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomEntity.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomEntity.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomEntity_2319 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomEntity &arg1 = args.read (heap); + const QDomEntity &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomEntity (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_operator_eq__2319 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomEntity &arg1 = args.read (heap); + const QDomEntity &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomEntity &)((QDomEntity *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomEntityReference.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomEntityReference.cc index 901420800..5bc013d27 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomEntityReference.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomEntityReference.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomEntityReference_3230 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomEntityReference &arg1 = args.read (heap); + const QDomEntityReference &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomEntityReference (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_eq__3230 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomEntityReference &arg1 = args.read (heap); + const QDomEntityReference &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomEntityReference &)((QDomEntityReference *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomImplementation.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomImplementation.cc index 34a8a4b5c..5d875ef6a 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomImplementation.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomImplementation.cc @@ -67,7 +67,7 @@ static void _call_ctor_QDomImplementation_3160 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomImplementation &arg1 = args.read (heap); + const QDomImplementation &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomImplementation (arg1)); } @@ -90,9 +90,9 @@ static void _call_f_createDocument_6765 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QDomDocumentType &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QDomDocumentType &arg3 = gsi::arg_reader() (args, heap); ret.write ((QDomDocument)((QDomImplementation *)cls)->createDocument (arg1, arg2, arg3)); } @@ -115,9 +115,9 @@ static void _call_f_createDocumentType_5859 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((QDomDocumentType)((QDomImplementation *)cls)->createDocumentType (arg1, arg2, arg3)); } @@ -138,8 +138,8 @@ static void _call_f_hasFeature_c3942 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomImplementation *)cls)->hasFeature (arg1, arg2)); } @@ -173,7 +173,7 @@ static void _call_f_operator_excl__eq__c3160 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomImplementation &arg1 = args.read (heap); + const QDomImplementation &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomImplementation *)cls)->operator!= (arg1)); } @@ -192,7 +192,7 @@ static void _call_f_operator_eq__3160 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomImplementation &arg1 = args.read (heap); + const QDomImplementation &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomImplementation &)((QDomImplementation *)cls)->operator= (arg1)); } @@ -211,7 +211,7 @@ static void _call_f_operator_eq__eq__c3160 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomImplementation &arg1 = args.read (heap); + const QDomImplementation &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomImplementation *)cls)->operator== (arg1)); } @@ -245,7 +245,7 @@ static void _call_f_setInvalidDataPolicy_4112 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); QDomImplementation::setInvalidDataPolicy (qt_gsi::QtToCppAdaptor(arg1).cref()); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomNamedNodeMap.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomNamedNodeMap.cc index ab71d9a27..e60ae5e96 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomNamedNodeMap.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomNamedNodeMap.cc @@ -66,7 +66,7 @@ static void _call_ctor_QDomNamedNodeMap_2843 (const qt_gsi::GenericStaticMethod { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNamedNodeMap &arg1 = args.read (heap); + const QDomNamedNodeMap &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomNamedNodeMap (arg1)); } @@ -85,7 +85,7 @@ static void _call_f_contains_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNamedNodeMap *)cls)->contains (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_item_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNamedNodeMap *)cls)->item (arg1)); } @@ -168,7 +168,7 @@ static void _call_f_namedItem_c2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNamedNodeMap *)cls)->namedItem (arg1)); } @@ -189,8 +189,8 @@ static void _call_f_namedItemNS_c3942 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNamedNodeMap *)cls)->namedItemNS (arg1, arg2)); } @@ -209,7 +209,7 @@ static void _call_f_operator_excl__eq__c2843 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNamedNodeMap &arg1 = args.read (heap); + const QDomNamedNodeMap &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNamedNodeMap *)cls)->operator!= (arg1)); } @@ -228,7 +228,7 @@ static void _call_f_operator_eq__2843 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNamedNodeMap &arg1 = args.read (heap); + const QDomNamedNodeMap &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNamedNodeMap &)((QDomNamedNodeMap *)cls)->operator= (arg1)); } @@ -247,7 +247,7 @@ static void _call_f_operator_eq__eq__c2843 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNamedNodeMap &arg1 = args.read (heap); + const QDomNamedNodeMap &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNamedNodeMap *)cls)->operator== (arg1)); } @@ -266,7 +266,7 @@ static void _call_f_removeNamedItem_2025 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNamedNodeMap *)cls)->removeNamedItem (arg1)); } @@ -287,8 +287,8 @@ static void _call_f_removeNamedItemNS_3942 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNamedNodeMap *)cls)->removeNamedItemNS (arg1, arg2)); } @@ -307,7 +307,7 @@ static void _call_f_setNamedItem_2072 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNamedNodeMap *)cls)->setNamedItem (arg1)); } @@ -326,7 +326,7 @@ static void _call_f_setNamedItemNS_2072 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNamedNodeMap *)cls)->setNamedItemNS (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomNode.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomNode.cc index 910c6a3e2..56ede8123 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomNode.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomNode.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomNode_2072 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomNode (arg1)); } @@ -100,7 +100,7 @@ static void _call_f_appendChild_2072 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNode *)cls)->appendChild (arg1)); } @@ -165,7 +165,7 @@ static void _call_f_cloneNode_c864 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - bool arg1 = args ? args.read (heap) : (bool)(true); + bool arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (true, heap); ret.write ((QDomNode)((QDomNode *)cls)->cloneNode (arg1)); } @@ -214,7 +214,7 @@ static void _call_f_firstChildElement_c2025 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QDomElement)((QDomNode *)cls)->firstChildElement (arg1)); } @@ -265,8 +265,8 @@ static void _call_f_insertAfter_4036 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); - const QDomNode &arg2 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); + const QDomNode &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNode *)cls)->insertAfter (arg1, arg2)); } @@ -287,8 +287,8 @@ static void _call_f_insertBefore_4036 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); - const QDomNode &arg2 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); + const QDomNode &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNode *)cls)->insertBefore (arg1, arg2)); } @@ -504,8 +504,8 @@ static void _call_f_isSupported_c3942 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNode *)cls)->isSupported (arg1, arg2)); } @@ -554,7 +554,7 @@ static void _call_f_lastChildElement_c2025 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QDomElement)((QDomNode *)cls)->lastChildElement (arg1)); } @@ -603,7 +603,7 @@ static void _call_f_namedItem_c2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNode *)cls)->namedItem (arg1)); } @@ -652,7 +652,7 @@ static void _call_f_nextSiblingElement_c2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QDomElement)((QDomNode *)cls)->nextSiblingElement (arg1)); } @@ -732,7 +732,7 @@ static void _call_f_operator_excl__eq__c2072 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNode *)cls)->operator!= (arg1)); } @@ -751,7 +751,7 @@ static void _call_f_operator_eq__2072 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode &)((QDomNode *)cls)->operator= (arg1)); } @@ -770,7 +770,7 @@ static void _call_f_operator_eq__eq__c2072 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNode *)cls)->operator== (arg1)); } @@ -849,7 +849,7 @@ static void _call_f_previousSiblingElement_c2025 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write ((QDomElement)((QDomNode *)cls)->previousSiblingElement (arg1)); } @@ -868,7 +868,7 @@ static void _call_f_removeChild_2072 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNode *)cls)->removeChild (arg1)); } @@ -889,8 +889,8 @@ static void _call_f_replaceChild_4036 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNode &arg1 = args.read (heap); - const QDomNode &arg2 = args.read (heap); + const QDomNode &arg1 = gsi::arg_reader() (args, heap); + const QDomNode &arg2 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNode *)cls)->replaceChild (arg1, arg2)); } @@ -913,9 +913,9 @@ static void _call_f_save_c5033 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QTextStream &arg1 = args.read (heap); - int arg2 = args.read (heap); - const qt_gsi::Converter::target_type & arg3 = args ? args.read::target_type & > (heap) : (const qt_gsi::Converter::target_type &)(qt_gsi::CppToQtReadAdaptor(heap, QDomNode::EncodingFromDocument)); + QTextStream &arg1 = gsi::arg_reader() (args, heap); + int arg2 = gsi::arg_reader() (args, heap); + const qt_gsi::Converter::target_type & arg3 = args ? gsi::arg_reader::target_type & >() (args, heap) : gsi::arg_maker::target_type & >() (qt_gsi::CppToQtReadAdaptor(heap, QDomNode::EncodingFromDocument), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomNode *)cls)->save (arg1, arg2, qt_gsi::QtToCppAdaptor(arg3).cref()); } @@ -935,7 +935,7 @@ static void _call_f_setNodeValue_2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomNode *)cls)->setNodeValue (arg1); } @@ -955,7 +955,7 @@ static void _call_f_setPrefix_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomNode *)cls)->setPrefix (arg1); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomNodeList.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomNodeList.cc index 086ab6613..fab0b9738 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomNodeList.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomNodeList.cc @@ -66,7 +66,7 @@ static void _call_ctor_QDomNodeList_2484 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNodeList &arg1 = args.read (heap); + const QDomNodeList &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomNodeList (arg1)); } @@ -85,7 +85,7 @@ static void _call_f_at_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNodeList *)cls)->at (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_item_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNode)((QDomNodeList *)cls)->item (arg1)); } @@ -168,7 +168,7 @@ static void _call_f_operator_excl__eq__c2484 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNodeList &arg1 = args.read (heap); + const QDomNodeList &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNodeList *)cls)->operator!= (arg1)); } @@ -187,7 +187,7 @@ static void _call_f_operator_eq__2484 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNodeList &arg1 = args.read (heap); + const QDomNodeList &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNodeList &)((QDomNodeList *)cls)->operator= (arg1)); } @@ -206,7 +206,7 @@ static void _call_f_operator_eq__eq__c2484 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNodeList &arg1 = args.read (heap); + const QDomNodeList &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QDomNodeList *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomNotation.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomNotation.cc index deb27d9ad..e94a7ec13 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomNotation.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomNotation.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomNotation_2526 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNotation &arg1 = args.read (heap); + const QDomNotation &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomNotation (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_eq__2526 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomNotation &arg1 = args.read (heap); + const QDomNotation &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomNotation &)((QDomNotation *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomProcessingInstruction.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomProcessingInstruction.cc index e87f787c0..9e21af43c 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomProcessingInstruction.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomProcessingInstruction.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomProcessingInstruction_3921 (const qt_gsi::GenericStat { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomProcessingInstruction &arg1 = args.read (heap); + const QDomProcessingInstruction &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomProcessingInstruction (arg1)); } @@ -130,7 +130,7 @@ static void _call_f_operator_eq__3921 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomProcessingInstruction &arg1 = args.read (heap); + const QDomProcessingInstruction &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomProcessingInstruction &)((QDomProcessingInstruction *)cls)->operator= (arg1)); } @@ -149,7 +149,7 @@ static void _call_f_setData_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QDomProcessingInstruction *)cls)->setData (arg1); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQDomText.cc b/src/gsiqt/qt5/QtXml/gsiDeclQDomText.cc index 4dfad040e..d18e8930d 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQDomText.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQDomText.cc @@ -81,7 +81,7 @@ static void _call_ctor_QDomText_2103 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomText &arg1 = args.read (heap); + const QDomText &arg1 = gsi::arg_reader() (args, heap); ret.write (new QDomText (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_operator_eq__2103 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QDomText &arg1 = args.read (heap); + const QDomText &arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomText &)((QDomText *)cls)->operator= (arg1)); } @@ -134,7 +134,7 @@ static void _call_f_splitText_767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QDomText)((QDomText *)cls)->splitText (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlAttributes.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlAttributes.cc index d5cec2f2c..2a067eea0 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlAttributes.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlAttributes.cc @@ -56,10 +56,10 @@ static void _call_f_append_7776 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlAttributes *)cls)->append (arg1, arg2, arg3, arg4); } @@ -110,7 +110,7 @@ static void _call_f_index_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QXmlAttributes *)cls)->index (arg1)); } @@ -131,8 +131,8 @@ static void _call_f_index_c3942 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((int)((QXmlAttributes *)cls)->index (arg1, arg2)); } @@ -166,7 +166,7 @@ static void _call_f_localName_c767 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->localName (arg1)); } @@ -185,7 +185,7 @@ static void _call_f_qName_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->qName (arg1)); } @@ -204,7 +204,7 @@ static void _call_f_type_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->type (arg1)); } @@ -223,7 +223,7 @@ static void _call_f_type_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->type (arg1)); } @@ -244,8 +244,8 @@ static void _call_f_type_c3942 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->type (arg1, arg2)); } @@ -264,7 +264,7 @@ static void _call_f_uri_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cls, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->uri (arg1)); } @@ -283,7 +283,7 @@ static void _call_f_value_c767 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->value (arg1)); } @@ -302,7 +302,7 @@ static void _call_f_value_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->value (arg1)); } @@ -323,8 +323,8 @@ static void _call_f_value_c3942 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlAttributes *)cls)->value (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlContentHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlContentHandler.cc index ba970f86d..5d09af14d 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlContentHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlContentHandler.cc @@ -52,7 +52,7 @@ static void _call_f_characters_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->characters (arg1)); } @@ -90,9 +90,9 @@ static void _call_f_endElement_5859 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->endElement (arg1, arg2, arg3)); } @@ -111,7 +111,7 @@ static void _call_f_endPrefixMapping_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->endPrefixMapping (arg1)); } @@ -145,7 +145,7 @@ static void _call_f_ignorableWhitespace_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->ignorableWhitespace (arg1)); } @@ -166,8 +166,8 @@ static void _call_f_processingInstruction_3942 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->processingInstruction (arg1, arg2)); } @@ -186,7 +186,7 @@ static void _call_f_setDocumentLocator_1732 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLocator *arg1 = args.read (heap); + QXmlLocator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlContentHandler *)cls)->setDocumentLocator (arg1); } @@ -206,7 +206,7 @@ static void _call_f_skippedEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->skippedEntity (arg1)); } @@ -246,10 +246,10 @@ static void _call_f_startElement_8513 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QXmlAttributes &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QXmlAttributes &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->startElement (arg1, arg2, arg3, arg4)); } @@ -270,8 +270,8 @@ static void _call_f_startPrefixMapping_3942 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlContentHandler *)cls)->startPrefixMapping (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDTDHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDTDHandler.cc index 1f7c04cd4..17257583e 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDTDHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDTDHandler.cc @@ -69,9 +69,9 @@ static void _call_f_notationDecl_5859 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDTDHandler *)cls)->notationDecl (arg1, arg2, arg3)); } @@ -96,10 +96,10 @@ static void _call_f_unparsedEntityDecl_7776 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDTDHandler *)cls)->unparsedEntityDecl (arg1, arg2, arg3, arg4)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDeclHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDeclHandler.cc index ddc20798c..e809f33e1 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDeclHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDeclHandler.cc @@ -58,11 +58,11 @@ static void _call_f_attributeDecl_9693 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDeclHandler *)cls)->attributeDecl (arg1, arg2, arg3, arg4, arg5)); } @@ -100,9 +100,9 @@ static void _call_f_externalEntityDecl_5859 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDeclHandler *)cls)->externalEntityDecl (arg1, arg2, arg3)); } @@ -123,8 +123,8 @@ static void _call_f_internalEntityDecl_3942 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDeclHandler *)cls)->internalEntityDecl (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc index 525f02749..7f639dcf2 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlDefaultHandler.cc @@ -61,11 +61,11 @@ static void _call_f_attributeDecl_9693 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); - const QString &arg5 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); + const QString &arg5 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->attributeDecl (arg1, arg2, arg3, arg4, arg5)); } @@ -84,7 +84,7 @@ static void _call_f_characters_2025 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->characters (arg1)); } @@ -103,7 +103,7 @@ static void _call_f_comment_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->comment (arg1)); } @@ -171,9 +171,9 @@ static void _call_f_endElement_5859 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->endElement (arg1, arg2, arg3)); } @@ -192,7 +192,7 @@ static void _call_f_endEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->endEntity (arg1)); } @@ -211,7 +211,7 @@ static void _call_f_endPrefixMapping_2025 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->endPrefixMapping (arg1)); } @@ -230,7 +230,7 @@ static void _call_f_error_3149 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->error (arg1)); } @@ -268,9 +268,9 @@ static void _call_f_externalEntityDecl_5859 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->externalEntityDecl (arg1, arg2, arg3)); } @@ -289,7 +289,7 @@ static void _call_f_fatalError_3149 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->fatalError (arg1)); } @@ -308,7 +308,7 @@ static void _call_f_ignorableWhitespace_2025 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->ignorableWhitespace (arg1)); } @@ -329,8 +329,8 @@ static void _call_f_internalEntityDecl_3942 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->internalEntityDecl (arg1, arg2)); } @@ -353,9 +353,9 @@ static void _call_f_notationDecl_5859 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->notationDecl (arg1, arg2, arg3)); } @@ -376,8 +376,8 @@ static void _call_f_processingInstruction_3942 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->processingInstruction (arg1, arg2)); } @@ -396,7 +396,7 @@ static void _call_f_setDocumentLocator_1732 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLocator *arg1 = args.read (heap); + QXmlLocator *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlDefaultHandler *)cls)->setDocumentLocator (arg1); } @@ -416,7 +416,7 @@ static void _call_f_skippedEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->skippedEntity (arg1)); } @@ -454,9 +454,9 @@ static void _call_f_startDTD_5859 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->startDTD (arg1, arg2, arg3)); } @@ -496,10 +496,10 @@ static void _call_f_startElement_8513 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QXmlAttributes &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QXmlAttributes &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->startElement (arg1, arg2, arg3, arg4)); } @@ -518,7 +518,7 @@ static void _call_f_startEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->startEntity (arg1)); } @@ -539,8 +539,8 @@ static void _call_f_startPrefixMapping_3942 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->startPrefixMapping (arg1, arg2)); } @@ -565,10 +565,10 @@ static void _call_f_unparsedEntityDecl_7776 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); - const QString &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); + const QString &arg4 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->unparsedEntityDecl (arg1, arg2, arg3, arg4)); } @@ -587,7 +587,7 @@ static void _call_f_warning_3149 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlDefaultHandler *)cls)->warning (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlErrorHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlErrorHandler.cc index 9a8746b16..8ed7947bc 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlErrorHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlErrorHandler.cc @@ -51,7 +51,7 @@ static void _call_f_error_3149 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlErrorHandler *)cls)->error (arg1)); } @@ -85,7 +85,7 @@ static void _call_f_fatalError_3149 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlErrorHandler *)cls)->fatalError (arg1)); } @@ -104,7 +104,7 @@ static void _call_f_warning_3149 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlErrorHandler *)cls)->warning (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlInputSource.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlInputSource.cc index 1a7f90a7d..3feef3274 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlInputSource.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlInputSource.cc @@ -113,7 +113,7 @@ static void _call_f_setData_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlInputSource *)cls)->setData (arg1); } @@ -286,7 +286,7 @@ static void _call_ctor_QXmlInputSource_Adaptor_1447 (const qt_gsi::GenericStatic { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlInputSource_Adaptor (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlLexicalHandler.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlLexicalHandler.cc index b3741ac51..36d4efff8 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlLexicalHandler.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlLexicalHandler.cc @@ -50,7 +50,7 @@ static void _call_f_comment_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler *)cls)->comment (arg1)); } @@ -99,7 +99,7 @@ static void _call_f_endEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler *)cls)->endEntity (arg1)); } @@ -152,9 +152,9 @@ static void _call_f_startDTD_5859 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler *)cls)->startDTD (arg1, arg2, arg3)); } @@ -173,7 +173,7 @@ static void _call_f_startEntity_2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlLexicalHandler *)cls)->startEntity (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlNamespaceSupport.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlNamespaceSupport.cc index 8464efcee..e84f4a174 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlNamespaceSupport.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlNamespaceSupport.cc @@ -81,7 +81,7 @@ static void _call_f_prefix_c2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlNamespaceSupport *)cls)->prefix (arg1)); } @@ -115,7 +115,7 @@ static void _call_f_prefixes_c2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QStringList)((QXmlNamespaceSupport *)cls)->prefixes (arg1)); } @@ -140,10 +140,10 @@ static void _call_f_processName_c5225 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool arg2 = args.read (heap); - QString &arg3 = args.read (heap); - QString &arg4 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); + QString &arg3 = gsi::arg_reader() (args, heap); + QString &arg4 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlNamespaceSupport *)cls)->processName (arg1, arg2, arg3, arg4); } @@ -197,8 +197,8 @@ static void _call_f_setPrefix_3942 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlNamespaceSupport *)cls)->setPrefix (arg1, arg2); } @@ -222,9 +222,9 @@ static void _call_f_splitName_c4469 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QString &arg2 = args.read (heap); - QString &arg3 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QString &arg2 = gsi::arg_reader() (args, heap); + QString &arg3 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlNamespaceSupport *)cls)->splitName (arg1, arg2, arg3); } @@ -244,7 +244,7 @@ static void _call_f_uri_c2025 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlNamespaceSupport *)cls)->uri (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlParseException.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlParseException.cc index 7da965ba9..50afc62f0 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlParseException.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlParseException.cc @@ -58,11 +58,11 @@ static void _call_ctor_QXmlParseException_7177 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args ? args.read (heap) : (const QString &)(QString()); - int arg2 = args ? args.read (heap) : (int)(-1); - int arg3 = args ? args.read (heap) : (int)(-1); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg5 = args ? args.read (heap) : (const QString &)(QString()); + const QString &arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg5 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QXmlParseException (arg1, arg2, arg3, arg4, arg5)); } @@ -81,7 +81,7 @@ static void _call_ctor_QXmlParseException_3149 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlParseException &arg1 = args.read (heap); + const QXmlParseException &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlParseException (arg1)); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlReader.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlReader.cc index 5d922113f..c993f664d 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlReader.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlReader.cc @@ -134,8 +134,8 @@ static void _call_f_feature_c2967 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QXmlReader *)cls)->feature (arg1, arg2)); } @@ -154,7 +154,7 @@ static void _call_f_hasFeature_c2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlReader *)cls)->hasFeature (arg1)); } @@ -173,7 +173,7 @@ static void _call_f_hasProperty_c2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlReader *)cls)->hasProperty (arg1)); } @@ -207,7 +207,7 @@ static void _call_f_parse_2852 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlInputSource &arg1 = args.read (heap); + const QXmlInputSource &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlReader *)cls)->parse (arg1)); } @@ -226,7 +226,7 @@ static void _call_f_parse_2856 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlInputSource *arg1 = args.read (heap); + const QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlReader *)cls)->parse (arg1)); } @@ -247,8 +247,8 @@ static void _call_f_property_c2967 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((void *)((QXmlReader *)cls)->property (arg1, arg2)); } @@ -267,7 +267,7 @@ static void _call_f_setContentHandler_2441 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlContentHandler *arg1 = args.read (heap); + QXmlContentHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setContentHandler (arg1); } @@ -287,7 +287,7 @@ static void _call_f_setDTDHandler_1930 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlDTDHandler *arg1 = args.read (heap); + QXmlDTDHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setDTDHandler (arg1); } @@ -307,7 +307,7 @@ static void _call_f_setDeclHandler_2086 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlDeclHandler *arg1 = args.read (heap); + QXmlDeclHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setDeclHandler (arg1); } @@ -327,7 +327,7 @@ static void _call_f_setEntityResolver_2495 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlEntityResolver *arg1 = args.read (heap); + QXmlEntityResolver *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setEntityResolver (arg1); } @@ -347,7 +347,7 @@ static void _call_f_setErrorHandler_2232 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlErrorHandler *arg1 = args.read (heap); + QXmlErrorHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setErrorHandler (arg1); } @@ -369,8 +369,8 @@ static void _call_f_setFeature_2781 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setFeature (arg1, arg2); } @@ -390,7 +390,7 @@ static void _call_f_setLexicalHandler_2416 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLexicalHandler *arg1 = args.read (heap); + QXmlLexicalHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setLexicalHandler (arg1); } @@ -412,8 +412,8 @@ static void _call_f_setProperty_2973 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - void *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlReader *)cls)->setProperty (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc b/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc index 72a3dee4c..a2c422a47 100644 --- a/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc +++ b/src/gsiqt/qt5/QtXml/gsiDeclQXmlSimpleReader.cc @@ -134,8 +134,8 @@ static void _call_f_feature_c2967 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((bool)((QXmlSimpleReader *)cls)->feature (arg1, arg2)); } @@ -154,7 +154,7 @@ static void _call_f_hasFeature_c2025 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader *)cls)->hasFeature (arg1)); } @@ -173,7 +173,7 @@ static void _call_f_hasProperty_c2025 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader *)cls)->hasProperty (arg1)); } @@ -207,7 +207,7 @@ static void _call_f_parse_2856 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlInputSource *arg1 = args.read (heap); + const QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader *)cls)->parse (arg1)); } @@ -228,8 +228,8 @@ static void _call_f_parse_3612 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlInputSource *arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QXmlInputSource *arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSimpleReader *)cls)->parse (arg1, arg2)); } @@ -265,8 +265,8 @@ static void _call_f_property_c2967 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool *arg2 = args ? args.read (heap) : (bool *)(0); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write ((void *)((QXmlSimpleReader *)cls)->property (arg1, arg2)); } @@ -285,7 +285,7 @@ static void _call_f_setContentHandler_2441 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlContentHandler *arg1 = args.read (heap); + QXmlContentHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setContentHandler (arg1); } @@ -305,7 +305,7 @@ static void _call_f_setDTDHandler_1930 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlDTDHandler *arg1 = args.read (heap); + QXmlDTDHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setDTDHandler (arg1); } @@ -325,7 +325,7 @@ static void _call_f_setDeclHandler_2086 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlDeclHandler *arg1 = args.read (heap); + QXmlDeclHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setDeclHandler (arg1); } @@ -345,7 +345,7 @@ static void _call_f_setEntityResolver_2495 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlEntityResolver *arg1 = args.read (heap); + QXmlEntityResolver *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setEntityResolver (arg1); } @@ -365,7 +365,7 @@ static void _call_f_setErrorHandler_2232 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlErrorHandler *arg1 = args.read (heap); + QXmlErrorHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setErrorHandler (arg1); } @@ -387,8 +387,8 @@ static void _call_f_setFeature_2781 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - bool arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + bool arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setFeature (arg1, arg2); } @@ -408,7 +408,7 @@ static void _call_f_setLexicalHandler_2416 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlLexicalHandler *arg1 = args.read (heap); + QXmlLexicalHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setLexicalHandler (arg1); } @@ -430,8 +430,8 @@ static void _call_f_setProperty_2973 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - void *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + void *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSimpleReader *)cls)->setProperty (arg1, arg2); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractMessageHandler.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractMessageHandler.cc index c90757e67..a50e6ce9e 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractMessageHandler.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractMessageHandler.cc @@ -77,10 +77,10 @@ static void _call_f_message_7592 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QString &arg2 = args.read (heap); - const QUrl &arg3 = args ? args.read (heap) : (const QUrl &)(QUrl()); - const QSourceLocation &arg4 = args ? args.read (heap) : (const QSourceLocation &)(QSourceLocation()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QUrl &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QUrl(), heap); + const QSourceLocation &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QSourceLocation(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractMessageHandler *)cls)->message (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2, arg3, arg4); } @@ -104,9 +104,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractMessageHandler::tr (arg1, arg2, arg3)); } @@ -129,9 +129,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractMessageHandler::trUtf8 (arg1, arg2, arg3)); } @@ -337,7 +337,7 @@ static void _call_ctor_QAbstractMessageHandler_Adaptor_1302 (const qt_gsi::Gener { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractMessageHandler_Adaptor (arg1)); } @@ -403,7 +403,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractMessageHandler_Adaptor *)cls)->emitter_QAbstractMessageHandler_destroyed_1302 (arg1); } @@ -527,7 +527,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractMessageHandler_Adaptor *)cls)->fp_QAbstractMessageHandler_isSignalConnected_c2394 (arg1)); } @@ -545,7 +545,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractMessageHandler_Adaptor *)cls)->fp_QAbstractMessageHandler_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractUriResolver.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractUriResolver.cc index e2814e35b..d8ba65f24 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractUriResolver.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractUriResolver.cc @@ -72,8 +72,8 @@ static void _call_f_resolve_c3294 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); - const QUrl &arg2 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = gsi::arg_reader() (args, heap); ret.write ((QUrl)((QAbstractUriResolver *)cls)->resolve (arg1, arg2)); } @@ -96,9 +96,9 @@ static void _call_f_tr_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, gsi:: { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractUriResolver::tr (arg1, arg2, arg3)); } @@ -121,9 +121,9 @@ static void _call_f_trUtf8_4013 (const qt_gsi::GenericStaticMethod * /*decl*/, g { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); - const char *arg2 = args ? args.read (heap) : (const char *)(__null); - int arg3 = args ? args.read (heap) : (int)(-1); + const char *arg1 = gsi::arg_reader() (args, heap); + const char *arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (__null, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write ((QString)QAbstractUriResolver::trUtf8 (arg1, arg2, arg3)); } @@ -327,7 +327,7 @@ static void _call_ctor_QAbstractUriResolver_Adaptor_1302 (const qt_gsi::GenericS { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ret.write (new QAbstractUriResolver_Adaptor (arg1)); } @@ -393,7 +393,7 @@ static void _call_emitter_destroyed_1302 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QObject *arg1 = args ? args.read (heap) : (QObject *)(0); + QObject *arg1 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (0, heap); ((QAbstractUriResolver_Adaptor *)cls)->emitter_QAbstractUriResolver_destroyed_1302 (arg1); } @@ -484,7 +484,7 @@ static void _call_fp_isSignalConnected_c2394 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QMetaMethod &arg1 = args.read (heap); + const QMetaMethod &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractUriResolver_Adaptor *)cls)->fp_QAbstractUriResolver_isSignalConnected_c2394 (arg1)); } @@ -502,7 +502,7 @@ static void _call_fp_receivers_c1731 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const char *arg1 = args.read (heap); + const char *arg1 = gsi::arg_reader() (args, heap); ret.write ((int)((QAbstractUriResolver_Adaptor *)cls)->fp_QAbstractUriResolver_receivers_c1731 (arg1)); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlNodeModel.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlNodeModel.cc index 6fe4d8ffd..75b51041e 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlNodeModel.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlNodeModel.cc @@ -55,7 +55,7 @@ static void _call_f_baseUri_c3090 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl)((QAbstractXmlNodeModel *)cls)->baseUri (arg1)); } @@ -76,8 +76,8 @@ static void _call_f_compareOrder_c6072 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); - const QXmlNodeModelIndex &arg2 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QXmlNodeModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QAbstractXmlNodeModel *)cls)->compareOrder (arg1, arg2))); } @@ -100,9 +100,9 @@ static void _call_f_copyNodeTo_c11827 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); - QAbstractXmlReceiver *const arg2 = args.read (heap); - const QFlags &arg3 = args.read & > (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); + QAbstractXmlReceiver *const arg2 = gsi::arg_reader() (args, heap); + const QFlags &arg3 = gsi::arg_reader & >() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlNodeModel *)cls)->copyNodeTo (arg1, arg2, arg3); } @@ -122,7 +122,7 @@ static void _call_f_documentUri_c3090 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl)((QAbstractXmlNodeModel *)cls)->documentUri (arg1)); } @@ -141,7 +141,7 @@ static void _call_f_elementById_c2084 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); ret.write ((QXmlNodeModelIndex)((QAbstractXmlNodeModel *)cls)->elementById (arg1)); } @@ -162,8 +162,8 @@ static void _call_f_isDeepEqual_c6072 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); - const QXmlNodeModelIndex &arg2 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); + const QXmlNodeModelIndex &arg2 = gsi::arg_reader() (args, heap); ret.write ((bool)((QAbstractXmlNodeModel *)cls)->isDeepEqual (arg1, arg2)); } @@ -182,7 +182,7 @@ static void _call_f_kind_c3090 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write::target_type > ((qt_gsi::Converter::target_type)qt_gsi::CppToQtAdaptor(((QAbstractXmlNodeModel *)cls)->kind (arg1))); } @@ -201,7 +201,7 @@ static void _call_f_name_c3090 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QXmlName)((QAbstractXmlNodeModel *)cls)->name (arg1)); } @@ -220,7 +220,7 @@ static void _call_f_namespaceBindings_c3090 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QVector)((QAbstractXmlNodeModel *)cls)->namespaceBindings (arg1)); } @@ -241,8 +241,8 @@ static void _call_f_namespaceForPrefix_c4660 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); - const qint16 arg2 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); + const qint16 arg2 = gsi::arg_reader() (args, heap); ret.write ((qint16)((QAbstractXmlNodeModel *)cls)->namespaceForPrefix (arg1, arg2)); } @@ -261,7 +261,7 @@ static void _call_f_nodesByIdref_c2084 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QVector)((QAbstractXmlNodeModel *)cls)->nodesByIdref (arg1)); } @@ -280,7 +280,7 @@ static void _call_f_root_c3090 (const qt_gsi::GenericMethod * /*decl*/, void *cl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QXmlNodeModelIndex)((QAbstractXmlNodeModel *)cls)->root (arg1)); } @@ -301,8 +301,8 @@ static void _call_f_sendNamespaces_c6182 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); - QAbstractXmlReceiver *const arg2 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); + QAbstractXmlReceiver *const arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlNodeModel *)cls)->sendNamespaces (arg1, arg2); } @@ -322,7 +322,7 @@ static void _call_f_sourceLocation_c3090 (const qt_gsi::GenericMethod * /*decl*/ { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSourceLocation)((QAbstractXmlNodeModel *)cls)->sourceLocation (arg1)); } @@ -341,7 +341,7 @@ static void _call_f_stringValue_c3090 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QAbstractXmlNodeModel *)cls)->stringValue (arg1)); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlReceiver.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlReceiver.cc index 3ff153ec9..56ff51b89 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlReceiver.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQAbstractXmlReceiver.cc @@ -51,7 +51,7 @@ static void _call_f_atomicValue_2119 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver *)cls)->atomicValue (arg1); } @@ -73,8 +73,8 @@ static void _call_f_attribute_4286 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); - const QStringRef &arg2 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); + const QStringRef &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver *)cls)->attribute (arg1, arg2); } @@ -94,7 +94,7 @@ static void _call_f_characters_2310 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver *)cls)->characters (arg1); } @@ -114,7 +114,7 @@ static void _call_f_comment_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver *)cls)->comment (arg1); } @@ -182,7 +182,7 @@ static void _call_f_namespaceBinding_2084 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver *)cls)->namespaceBinding (arg1); } @@ -204,8 +204,8 @@ static void _call_f_processingInstruction_4001 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver *)cls)->processingInstruction (arg1, arg2); } @@ -241,7 +241,7 @@ static void _call_f_startElement_2084 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver *)cls)->startElement (arg1); } @@ -277,7 +277,7 @@ static void _call_f_whitespaceOnly_2310 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QAbstractXmlReceiver *)cls)->whitespaceOnly (arg1); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSimpleXmlNodeModel.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSimpleXmlNodeModel.cc index 734fb2180..2686d780d 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSimpleXmlNodeModel.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSimpleXmlNodeModel.cc @@ -56,7 +56,7 @@ static void _call_f_baseUri_c3090 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QUrl)((QSimpleXmlNodeModel *)cls)->baseUri (arg1)); } @@ -75,7 +75,7 @@ static void _call_f_elementById_c2084 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); ret.write ((QXmlNodeModelIndex)((QSimpleXmlNodeModel *)cls)->elementById (arg1)); } @@ -109,7 +109,7 @@ static void _call_f_namespaceBindings_c3090 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QVector)((QSimpleXmlNodeModel *)cls)->namespaceBindings (arg1)); } @@ -128,7 +128,7 @@ static void _call_f_nodesByIdref_c2084 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); ret.write > ((QVector)((QSimpleXmlNodeModel *)cls)->nodesByIdref (arg1)); } @@ -147,7 +147,7 @@ static void _call_f_stringValue_c3090 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QSimpleXmlNodeModel *)cls)->stringValue (arg1)); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSourceLocation.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSourceLocation.cc index 1c9190832..01706c0b6 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSourceLocation.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQSourceLocation.cc @@ -66,7 +66,7 @@ static void _call_ctor_QSourceLocation_2844 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSourceLocation &arg1 = args.read (heap); + const QSourceLocation &arg1 = gsi::arg_reader() (args, heap); ret.write (new QSourceLocation (arg1)); } @@ -89,9 +89,9 @@ static void _call_ctor_QSourceLocation_3019 (const qt_gsi::GenericStaticMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); - int arg2 = args ? args.read (heap) : (int)(-1); - int arg3 = args ? args.read (heap) : (int)(-1); + const QUrl &arg1 = gsi::arg_reader() (args, heap); + int arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); + int arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (-1, heap); ret.write (new QSourceLocation (arg1, arg2, arg3)); } @@ -155,7 +155,7 @@ static void _call_f_operator_excl__eq__c2844 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSourceLocation &arg1 = args.read (heap); + const QSourceLocation &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSourceLocation *)cls)->operator!= (arg1)); } @@ -174,7 +174,7 @@ static void _call_f_operator_eq__2844 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSourceLocation &arg1 = args.read (heap); + const QSourceLocation &arg1 = gsi::arg_reader() (args, heap); ret.write ((QSourceLocation &)((QSourceLocation *)cls)->operator= (arg1)); } @@ -193,7 +193,7 @@ static void _call_f_operator_eq__eq__c2844 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QSourceLocation &arg1 = args.read (heap); + const QSourceLocation &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QSourceLocation *)cls)->operator== (arg1)); } @@ -212,7 +212,7 @@ static void _call_f_setColumn_986 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSourceLocation *)cls)->setColumn (arg1); } @@ -232,7 +232,7 @@ static void _call_f_setLine_986 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - qint64 arg1 = args.read (heap); + qint64 arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSourceLocation *)cls)->setLine (arg1); } @@ -252,7 +252,7 @@ static void _call_f_setUri_1701 (const qt_gsi::GenericMethod * /*decl*/, void *c { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QSourceLocation *)cls)->setUri (arg1); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc index ddd285ac6..83c740dde 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlFormatter.cc @@ -51,7 +51,7 @@ static void _call_f_atomicValue_2119 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlFormatter *)cls)->atomicValue (arg1); } @@ -73,8 +73,8 @@ static void _call_f_attribute_4286 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); - const QStringRef &arg2 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); + const QStringRef &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlFormatter *)cls)->attribute (arg1, arg2); } @@ -94,7 +94,7 @@ static void _call_f_characters_2310 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlFormatter *)cls)->characters (arg1); } @@ -114,7 +114,7 @@ static void _call_f_comment_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlFormatter *)cls)->comment (arg1); } @@ -199,8 +199,8 @@ static void _call_f_processingInstruction_4001 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlFormatter *)cls)->processingInstruction (arg1, arg2); } @@ -220,7 +220,7 @@ static void _call_f_setIndentationDepth_767 (const qt_gsi::GenericMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - int arg1 = args.read (heap); + int arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlFormatter *)cls)->setIndentationDepth (arg1); } @@ -256,7 +256,7 @@ static void _call_f_startElement_2084 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlFormatter *)cls)->startElement (arg1); } @@ -549,8 +549,8 @@ static void _call_ctor_QXmlFormatter_Adaptor_3572 (const qt_gsi::GenericStaticMe { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlQuery &arg1 = args.read (heap); - QIODevice *arg2 = args.read (heap); + const QXmlQuery &arg1 = gsi::arg_reader() (args, heap); + QIODevice *arg2 = gsi::arg_reader() (args, heap); ret.write (new QXmlFormatter_Adaptor (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlItem.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlItem.cc index 6e548112c..56b5441ee 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlItem.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlItem.cc @@ -66,7 +66,7 @@ static void _call_ctor_QXmlItem_2098 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlItem &arg1 = args.read (heap); + const QXmlItem &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlItem (arg1)); } @@ -85,7 +85,7 @@ static void _call_ctor_QXmlItem_3090 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlItem (arg1)); } @@ -104,7 +104,7 @@ static void _call_ctor_QXmlItem_2119 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlItem (arg1)); } @@ -168,7 +168,7 @@ static void _call_f_operator_eq__2098 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlItem &arg1 = args.read (heap); + const QXmlItem &arg1 = gsi::arg_reader() (args, heap); ret.write ((QXmlItem &)((QXmlItem *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlName.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlName.cc index a45d2e73f..7fdd9e408 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlName.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlName.cc @@ -72,10 +72,10 @@ static void _call_ctor_QXmlName_7550 (const qt_gsi::GenericStaticMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlNamePool &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); - const QString &arg3 = args ? args.read (heap) : (const QString &)(QString()); - const QString &arg4 = args ? args.read (heap) : (const QString &)(QString()); + QXmlNamePool &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); + const QString &arg3 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); + const QString &arg4 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QString(), heap); ret.write (new QXmlName (arg1, arg2, arg3, arg4)); } @@ -109,7 +109,7 @@ static void _call_f_namespaceUri_c2494 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNamePool &arg1 = args.read (heap); + const QXmlNamePool &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlName *)cls)->namespaceUri (arg1)); } @@ -128,7 +128,7 @@ static void _call_f_operator_excl__eq__c2084 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlName *)cls)->operator!= (arg1)); } @@ -147,7 +147,7 @@ static void _call_f_operator_eq__2084 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); ret.write ((QXmlName &)((QXmlName *)cls)->operator= (arg1)); } @@ -166,7 +166,7 @@ static void _call_f_operator_eq__eq__c2084 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlName *)cls)->operator== (arg1)); } @@ -185,7 +185,7 @@ static void _call_f_toClarkName_c2494 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNamePool &arg1 = args.read (heap); + const QXmlNamePool &arg1 = gsi::arg_reader() (args, heap); ret.write ((QString)((QXmlName *)cls)->toClarkName (arg1)); } @@ -206,8 +206,8 @@ static void _call_f_fromClarkName_4411 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QXmlNamePool &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QXmlNamePool &arg2 = gsi::arg_reader() (args, heap); ret.write ((QXmlName)QXmlName::fromClarkName (arg1, arg2)); } @@ -226,7 +226,7 @@ static void _call_f_isNCName_2025 (const qt_gsi::GenericStaticMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)QXmlName::isNCName (arg1)); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNamePool.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNamePool.cc index d44ba4b98..84bb001f6 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNamePool.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNamePool.cc @@ -65,7 +65,7 @@ static void _call_ctor_QXmlNamePool_2494 (const qt_gsi::GenericStaticMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNamePool &arg1 = args.read (heap); + const QXmlNamePool &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlNamePool (arg1)); } @@ -84,7 +84,7 @@ static void _call_f_operator_eq__2494 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNamePool &arg1 = args.read (heap); + const QXmlNamePool &arg1 = gsi::arg_reader() (args, heap); ret.write ((QXmlNamePool &)((QXmlNamePool *)cls)->operator= (arg1)); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNodeModelIndex.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNodeModelIndex.cc index b3a78c210..62fa69ddc 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNodeModelIndex.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlNodeModelIndex.cc @@ -66,7 +66,7 @@ static void _call_ctor_QXmlNodeModelIndex_3090 (const qt_gsi::GenericStaticMetho { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlNodeModelIndex (arg1)); } @@ -160,7 +160,7 @@ static void _call_f_operator_excl__eq__c3090 (const qt_gsi::GenericMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlNodeModelIndex *)cls)->operator!= (arg1)); } @@ -179,7 +179,7 @@ static void _call_f_operator_eq__eq__c3090 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNodeModelIndex &arg1 = args.read (heap); + const QXmlNodeModelIndex &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlNodeModelIndex *)cls)->operator== (arg1)); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlQuery.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlQuery.cc index 0b91e1ac4..22d1b1466 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlQuery.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlQuery.cc @@ -75,7 +75,7 @@ static void _call_ctor_QXmlQuery_2233 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlQuery &arg1 = args.read (heap); + const QXmlQuery &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlQuery (arg1)); } @@ -94,7 +94,7 @@ static void _call_ctor_QXmlQuery_2494 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlNamePool &arg1 = args.read (heap); + const QXmlNamePool &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlQuery (arg1)); } @@ -115,8 +115,8 @@ static void _call_ctor_QXmlQuery_5196 (const qt_gsi::GenericStaticMethod * /*dec { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const qt_gsi::Converter::target_type & arg1 = args.read::target_type & > (heap); - const QXmlNamePool &arg2 = args ? args.read (heap) : (const QXmlNamePool &)(QXmlNamePool()); + const qt_gsi::Converter::target_type & arg1 = gsi::arg_reader::target_type & >() (args, heap); + const QXmlNamePool &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QXmlNamePool(), heap); ret.write (new QXmlQuery (qt_gsi::QtToCppAdaptor(arg1).cref(), arg2)); } @@ -137,8 +137,8 @@ static void _call_f_bindVariable_4074 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); - const QXmlItem &arg2 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); + const QXmlItem &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->bindVariable (arg1, arg2); } @@ -160,8 +160,8 @@ static void _call_f_bindVariable_4015 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QXmlItem &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QXmlItem &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->bindVariable (arg1, arg2); } @@ -183,8 +183,8 @@ static void _call_f_bindVariable_3423 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); - QIODevice *arg2 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); + QIODevice *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->bindVariable (arg1, arg2); } @@ -206,8 +206,8 @@ static void _call_f_bindVariable_3364 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - QIODevice *arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + QIODevice *arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->bindVariable (arg1, arg2); } @@ -229,8 +229,8 @@ static void _call_f_bindVariable_4209 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); - const QXmlQuery &arg2 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); + const QXmlQuery &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->bindVariable (arg1, arg2); } @@ -252,8 +252,8 @@ static void _call_f_bindVariable_4150 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QXmlQuery &arg2 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QXmlQuery &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->bindVariable (arg1, arg2); } @@ -273,7 +273,7 @@ static void _call_f_evaluateTo_c2161 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QXmlResultItems *arg1 = args.read (heap); + QXmlResultItems *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->evaluateTo (arg1); } @@ -293,7 +293,7 @@ static void _call_f_evaluateTo_c2649 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractXmlReceiver *arg1 = args.read (heap); + QAbstractXmlReceiver *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlQuery *)cls)->evaluateTo (arg1)); } @@ -312,7 +312,7 @@ static void _call_f_evaluateTo_c1746 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QStringList *arg1 = args.read (heap); + QStringList *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlQuery *)cls)->evaluateTo (arg1)); } @@ -331,7 +331,7 @@ static void _call_f_evaluateTo_c1447 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlQuery *)cls)->evaluateTo (arg1)); } @@ -350,7 +350,7 @@ static void _call_f_evaluateTo_c1334 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QString *arg1 = args.read (heap); + QString *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlQuery *)cls)->evaluateTo (arg1)); } @@ -444,7 +444,7 @@ static void _call_f_operator_eq__2233 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlQuery &arg1 = args.read (heap); + const QXmlQuery &arg1 = gsi::arg_reader() (args, heap); ret.write ((QXmlQuery &)((QXmlQuery *)cls)->operator= (arg1)); } @@ -478,7 +478,7 @@ static void _call_f_setFocus_2098 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlItem &arg1 = args.read (heap); + const QXmlItem &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->setFocus (arg1); } @@ -498,7 +498,7 @@ static void _call_f_setFocus_1701 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlQuery *)cls)->setFocus (arg1)); } @@ -517,7 +517,7 @@ static void _call_f_setFocus_1447 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); + QIODevice *arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlQuery *)cls)->setFocus (arg1)); } @@ -536,7 +536,7 @@ static void _call_f_setFocus_2025 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlQuery *)cls)->setFocus (arg1)); } @@ -555,7 +555,7 @@ static void _call_f_setInitialTemplateName_2084 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->setInitialTemplateName (arg1); } @@ -575,7 +575,7 @@ static void _call_f_setInitialTemplateName_2025 (const qt_gsi::GenericMethod * / { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->setInitialTemplateName (arg1); } @@ -595,7 +595,7 @@ static void _call_f_setMessageHandler_2934 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractMessageHandler *arg1 = args.read (heap); + QAbstractMessageHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->setMessageHandler (arg1); } @@ -615,7 +615,7 @@ static void _call_f_setNetworkAccessManager_2742 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkAccessManager *arg1 = args.read (heap); + QNetworkAccessManager *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->setNetworkAccessManager (arg1); } @@ -637,8 +637,8 @@ static void _call_f_setQuery_3618 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); - const QUrl &arg2 = args ? args.read (heap) : (const QUrl &)(QUrl()); + const QString &arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QUrl(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->setQuery (arg1, arg2); } @@ -660,8 +660,8 @@ static void _call_f_setQuery_3040 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QUrl &arg2 = args ? args.read (heap) : (const QUrl &)(QUrl()); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QUrl(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->setQuery (arg1, arg2); } @@ -683,8 +683,8 @@ static void _call_f_setQuery_3294 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); - const QUrl &arg2 = args ? args.read (heap) : (const QUrl &)(QUrl()); + const QUrl &arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QUrl(), heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->setQuery (arg1, arg2); } @@ -704,7 +704,7 @@ static void _call_f_setUriResolver_3372 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAbstractUriResolver *arg1 = args.read (heap); + const QAbstractUriResolver *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlQuery *)cls)->setUriResolver (arg1); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchema.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchema.cc index 6df211ab8..cfc2bdb59 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchema.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchema.cc @@ -71,7 +71,7 @@ static void _call_ctor_QXmlSchema_2292 (const qt_gsi::GenericStaticMethod * /*de { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlSchema &arg1 = args.read (heap); + const QXmlSchema &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlSchema (arg1)); } @@ -120,7 +120,7 @@ static void _call_f_load_1701 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSchema *)cls)->load (arg1)); } @@ -141,8 +141,8 @@ static void _call_f_load_3040 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QUrl &arg2 = args ? args.read (heap) : (const QUrl &)(QUrl()); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QUrl(), heap); ret.write ((bool)((QXmlSchema *)cls)->load (arg1, arg2)); } @@ -163,8 +163,8 @@ static void _call_f_load_3902 (const qt_gsi::GenericMethod * /*decl*/, void *cls { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const QUrl &arg2 = args ? args.read (heap) : (const QUrl &)(QUrl()); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QUrl(), heap); ret.write ((bool)((QXmlSchema *)cls)->load (arg1, arg2)); } @@ -228,7 +228,7 @@ static void _call_f_operator_eq__2292 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlSchema &arg1 = args.read (heap); + const QXmlSchema &arg1 = gsi::arg_reader() (args, heap); ret.write ((QXmlSchema &)((QXmlSchema *)cls)->operator= (arg1)); } @@ -247,7 +247,7 @@ static void _call_f_setMessageHandler_2934 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractMessageHandler *arg1 = args.read (heap); + QAbstractMessageHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSchema *)cls)->setMessageHandler (arg1); } @@ -267,7 +267,7 @@ static void _call_f_setNetworkAccessManager_2742 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkAccessManager *arg1 = args.read (heap); + QNetworkAccessManager *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSchema *)cls)->setNetworkAccessManager (arg1); } @@ -287,7 +287,7 @@ static void _call_f_setUriResolver_3372 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAbstractUriResolver *arg1 = args.read (heap); + const QAbstractUriResolver *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSchema *)cls)->setUriResolver (arg1); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchemaValidator.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchemaValidator.cc index 2e12f21db..c9217fd99 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchemaValidator.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSchemaValidator.cc @@ -72,7 +72,7 @@ static void _call_ctor_QXmlSchemaValidator_2292 (const qt_gsi::GenericStaticMeth { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlSchema &arg1 = args.read (heap); + const QXmlSchema &arg1 = gsi::arg_reader() (args, heap); ret.write (new QXmlSchemaValidator (arg1)); } @@ -151,7 +151,7 @@ static void _call_f_setMessageHandler_2934 (const qt_gsi::GenericMethod * /*decl { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QAbstractMessageHandler *arg1 = args.read (heap); + QAbstractMessageHandler *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSchemaValidator *)cls)->setMessageHandler (arg1); } @@ -171,7 +171,7 @@ static void _call_f_setNetworkAccessManager_2742 (const qt_gsi::GenericMethod * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QNetworkAccessManager *arg1 = args.read (heap); + QNetworkAccessManager *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSchemaValidator *)cls)->setNetworkAccessManager (arg1); } @@ -191,7 +191,7 @@ static void _call_f_setSchema_2292 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlSchema &arg1 = args.read (heap); + const QXmlSchema &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSchemaValidator *)cls)->setSchema (arg1); } @@ -211,7 +211,7 @@ static void _call_f_setUriResolver_3372 (const qt_gsi::GenericMethod * /*decl*/, { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QAbstractUriResolver *arg1 = args.read (heap); + const QAbstractUriResolver *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSchemaValidator *)cls)->setUriResolver (arg1); } @@ -246,7 +246,7 @@ static void _call_f_validate_c1701 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QUrl &arg1 = args.read (heap); + const QUrl &arg1 = gsi::arg_reader() (args, heap); ret.write ((bool)((QXmlSchemaValidator *)cls)->validate (arg1)); } @@ -267,8 +267,8 @@ static void _call_f_validate_c3040 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - QIODevice *arg1 = args.read (heap); - const QUrl &arg2 = args ? args.read (heap) : (const QUrl &)(QUrl()); + QIODevice *arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QUrl(), heap); ret.write ((bool)((QXmlSchemaValidator *)cls)->validate (arg1, arg2)); } @@ -289,8 +289,8 @@ static void _call_f_validate_c3902 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QByteArray &arg1 = args.read (heap); - const QUrl &arg2 = args ? args.read (heap) : (const QUrl &)(QUrl()); + const QByteArray &arg1 = gsi::arg_reader() (args, heap); + const QUrl &arg2 = args ? gsi::arg_reader() (args, heap) : gsi::arg_maker() (QUrl(), heap); ret.write ((bool)((QXmlSchemaValidator *)cls)->validate (arg1, arg2)); } diff --git a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc index 0f63ebf15..175119117 100644 --- a/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc +++ b/src/gsiqt/qt5/QtXmlPatterns/gsiDeclQXmlSerializer.cc @@ -51,7 +51,7 @@ static void _call_f_atomicValue_2119 (const qt_gsi::GenericMethod * /*decl*/, vo { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QVariant &arg1 = args.read (heap); + const QVariant &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer *)cls)->atomicValue (arg1); } @@ -73,8 +73,8 @@ static void _call_f_attribute_4286 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); - const QStringRef &arg2 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); + const QStringRef &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer *)cls)->attribute (arg1, arg2); } @@ -94,7 +94,7 @@ static void _call_f_characters_2310 (const qt_gsi::GenericMethod * /*decl*/, voi { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QStringRef &arg1 = args.read (heap); + const QStringRef &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer *)cls)->characters (arg1); } @@ -129,7 +129,7 @@ static void _call_f_comment_2025 (const qt_gsi::GenericMethod * /*decl*/, void * { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QString &arg1 = args.read (heap); + const QString &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer *)cls)->comment (arg1); } @@ -197,7 +197,7 @@ static void _call_f_namespaceBinding_2084 (const qt_gsi::GenericMethod * /*decl* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer *)cls)->namespaceBinding (arg1); } @@ -234,8 +234,8 @@ static void _call_f_processingInstruction_4001 (const qt_gsi::GenericMethod * /* { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); - const QString &arg2 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); + const QString &arg2 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer *)cls)->processingInstruction (arg1, arg2); } @@ -255,7 +255,7 @@ static void _call_f_setCodec_2297 (const qt_gsi::GenericMethod * /*decl*/, void { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QTextCodec *arg1 = args.read (heap); + const QTextCodec *arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer *)cls)->setCodec (arg1); } @@ -291,7 +291,7 @@ static void _call_f_startElement_2084 (const qt_gsi::GenericMethod * /*decl*/, v { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlName &arg1 = args.read (heap); + const QXmlName &arg1 = gsi::arg_reader() (args, heap); __SUPPRESS_UNUSED_WARNING(ret); ((QXmlSerializer *)cls)->startElement (arg1); } @@ -586,8 +586,8 @@ static void _call_ctor_QXmlSerializer_Adaptor_3572 (const qt_gsi::GenericStaticM { __SUPPRESS_UNUSED_WARNING(args); tl::Heap heap; - const QXmlQuery &arg1 = args.read (heap); - QIODevice *arg2 = args.read (heap); + const QXmlQuery &arg1 = gsi::arg_reader() (args, heap); + QIODevice *arg2 = gsi::arg_reader() (args, heap); ret.write (new QXmlSerializer_Adaptor (arg1, arg2)); } diff --git a/src/img/img/gsiDeclImg.cc b/src/img/img/gsiDeclImg.cc index 218a962bf..1d85965c1 100644 --- a/src/img/img/gsiDeclImg.cc +++ b/src/img/img/gsiDeclImg.cc @@ -194,7 +194,7 @@ gsi::Class decl_ImageDataMapping ("lay", "ImageDataMapping", gsi::method_ext ("gamma", &gsi::gamma, "@brief The gamma value\n" "\n" - "The gamma value allows to adjust for non-linearities in the display chain and to enhance contrast.\n" + "The gamma value allows one to adjust for non-linearities in the display chain and to enhance contrast.\n" "A value for linear intensity reproduction on the screen is roughly 0.5. The exact value depends on the \n" "monitor calibration. Values below 1.0 give a \"softer\" appearance while values above 1.0 give a \"harder\" appearance.\n" ) + @@ -484,7 +484,7 @@ gsi::Class decl_Image (decl_BasicImage, "lay", "Image", "line by line. Each line must consist of \"w\" values where the first value is the leftmost pixel.\n" "Note, that the rows are oriented in the mathematical sense (first one is the lowest) contrary to \n" "the common convention for image data.\n" - "Initially the pixel width and heigt will be 1 micron and the data range will be 0 to 1.0 (black to white level). \n" + "Initially the pixel width and height will be 1 micron and the data range will be 0 to 1.0 (black to white level). \n" "To adjust the data range use the \\min_value and \\max_value properties.\n" "\n" "@param w The width of the image\n" @@ -499,7 +499,7 @@ gsi::Class decl_Image (decl_BasicImage, "lay", "Image", "line by line. Each line must consist of \"w\" values where the first value is the leftmost pixel.\n" "Note, that the rows are oriented in the mathematical sense (first one is the lowest) contrary to \n" "the common convention for image data.\n" - "Initially the pixel width and heigt will be 1 micron and the data range will be 0 to 1.0 (black to white level). \n" + "Initially the pixel width and height will be 1 micron and the data range will be 0 to 1.0 (black to white level). \n" "To adjust the data range use the \\min_value and \\max_value properties.\n" "\n" "@param w The width of the image\n" @@ -518,7 +518,7 @@ gsi::Class decl_Image (decl_BasicImage, "lay", "Image", "and so on. Note, that the rows are oriented in the mathematical sense (first one is the lowest) contrary to \n" "the common convention for image data.\n" "The data fields can be accessed with the \"data\", \"set_data\", \"pixel\" or \"set_pixel\" methods.\n" - "Initially the pixel width and heigt will be 1 micron and the data range will be 0 to 1.0 (black to white level). \n" + "Initially the pixel width and height will be 1 micron and the data range will be 0 to 1.0 (black to white level). \n" "\n" "@param w The width of the image\n" "@param h The height of the image\n" @@ -534,7 +534,7 @@ gsi::Class decl_Image (decl_BasicImage, "lay", "Image", "and so on. Note, that the rows are oriented in the mathematical sense (first one is the lowest) contrary to \n" "the common convention for image data.\n" "The data fields can be accessed with the \"data\", \"set_data\", \"pixel\" or \"set_pixel\" methods.\n" - "Initially the pixel width and heigt will be 1 micron and the data range will be 0 to 1.0 (black to white level). \n" + "Initially the pixel width and height will be 1 micron and the data range will be 0 to 1.0 (black to white level). \n" "\n" "@param w The width of the image\n" "@param h The height of the image\n" @@ -550,7 +550,7 @@ gsi::Class decl_Image (decl_BasicImage, "lay", "Image", "line by line and separated by color channel. Each line must consist of \"w\" values where the first value is the leftmost pixel.\n" "Note, that the rows are oriented in the mathematical sense (first one is the lowest) contrary to \n" "the common convention for image data.\n" - "Initially the pixel width and heigt will be 1 micron and the data range will be 0 to 1.0 (black to white level). \n" + "Initially the pixel width and height will be 1 micron and the data range will be 0 to 1.0 (black to white level). \n" "To adjust the data range use the \\min_value and \\max_value properties.\n" "\n" "@param w The width of the image\n" @@ -567,7 +567,7 @@ gsi::Class decl_Image (decl_BasicImage, "lay", "Image", "line by line and separated by color channel. Each line must consist of \"w\" values where the first value is the leftmost pixel.\n" "Note, that the rows are oriented in the mathematical sense (first one is the lowest) contrary to \n" "the common convention for image data.\n" - "Initially the pixel width and heigt will be 1 micron and the data range will be 0 to 1.0 (black to white level). \n" + "Initially the pixel width and height will be 1 micron and the data range will be 0 to 1.0 (black to white level). \n" "To adjust the data range use the \\min_value and \\max_value properties.\n" "\n" "@param w The width of the image\n" @@ -931,7 +931,7 @@ gsi::Class decl_Image (decl_BasicImage, "lay", "Image", "view automatically once the image object has been inserted into a view. " "Note that changes are not immediately reflected in the view, but are delayed until the view is refreshed. " "Hence, iterating the view's images will not render the same results than the image objects attached to the view. " - "To ensure synchonization, call \\Image#update." + "To ensure synchronization, call \\Image#update." ); /** diff --git a/src/img/img/imgObject.cc b/src/img/img/imgObject.cc index ad67989ed..bcb9cc081 100644 --- a/src/img/img/imgObject.cc +++ b/src/img/img/imgObject.cc @@ -189,7 +189,7 @@ DataMapping::create_data_mapping (bool monochrome, double xmin, double xmax, uns int h2, s2, v2; false_color_nodes [i].second.getHsv (&h2, &s2, &v2); - // The number of steps is choosen such that the full HSV band divides into approximately 200 steps + // The number of steps is chosen such that the full HSV band divides into approximately 200 steps double nsteps = 0.5 * sqrt (double (h1 - h2) * double (h1 - h2) + double (s1 - s2) * double (s1 - s2) + double (v1 - v2) * double (v1 - v2)); int n = int (floor (nsteps + 1.0)); double dx = (false_color_nodes [i].first - false_color_nodes [i - 1].first) / n; diff --git a/src/img/img/imgService.cc b/src/img/img/imgService.cc index 5c2519d69..0df792140 100644 --- a/src/img/img/imgService.cc +++ b/src/img/img/imgService.cc @@ -618,7 +618,7 @@ Service::begin_move (lay::Editable::MoveMode mode, const db::DPoint &p, lay::ang } else if (mode == lay::Editable::Partial) { - // test, wether we are moving a handle of one selected object + // test, whether we are moving a handle of one selected object for (std::map::const_iterator s = m_selected.begin (); s != m_selected.end (); ++s) { MoveMode mm = move_none; diff --git a/src/lay/lay/MainConfigPage5.ui b/src/lay/lay/MainConfigPage5.ui index 0ca0c2990..71fe01c67 100644 --- a/src/lay/lay/MainConfigPage5.ui +++ b/src/lay/lay/MainConfigPage5.ui @@ -34,7 +34,7 @@ - Specifiy the number of digits to be used for displaying ... + Specify the number of digits to be used for displaying ... true diff --git a/src/lay/lay/SearchReplaceDialog.ui b/src/lay/lay/SearchReplaceDialog.ui index 9996e3f6e..67a89a6ca 100644 --- a/src/lay/lay/SearchReplaceDialog.ui +++ b/src/lay/lay/SearchReplaceDialog.ui @@ -995,7 +995,7 @@ Press 'Select+Replace' button to show items found, select some and replace them< - Press 'Execute' button to excute the query + Press 'Execute' button to execute the query Qt::AlignCenter diff --git a/src/lay/lay/doc/about/about_libraries.xml b/src/lay/lay/doc/about/about_libraries.xml index a6b37ce0f..b7cfafcdb 100644 --- a/src/lay/lay/doc/about/about_libraries.xml +++ b/src/lay/lay/doc/about/about_libraries.xml @@ -26,7 +26,7 @@

When a layout containing library references is saved, KLayout stores some meta information in that file which allows it to restore the - library links and related informations. + library links and related information. For GDS, that meta information is stored in a separate top cell. For OASIS, the meta information is stored in special per-cell properties. For other formats, the meta information is not stored currently. diff --git a/src/lay/lay/doc/about/about_pcells.xml b/src/lay/lay/doc/about/about_pcells.xml index bcbcf0341..a8bdad290 100644 --- a/src/lay/lay/doc/about/about_pcells.xml +++ b/src/lay/lay/doc/about/about_pcells.xml @@ -60,7 +60,7 @@

PCell's are usually packed in libraries. PCell libraries can be provided as shared objects/DLL's (in C++) or as Ruby scripts. Because PCell code is only executed if - required, performance usally is not the main objective. A Ruby implementation + required, performance usually is not the main objective. A Ruby implementation will therefore be sufficient in most cases and is a much easier to maintain. The Ruby approach also benefits from KLayout's integrated development environment. diff --git a/src/lay/lay/doc/about/basic_lib.xml b/src/lay/lay/doc/about/basic_lib.xml index 9fe84e2b5..2d08969ff 100644 --- a/src/lay/lay/doc/about/basic_lib.xml +++ b/src/lay/lay/doc/about/basic_lib.xml @@ -106,7 +106,7 @@

When a shape is converted to a donut, the shape's bounding box will be used to define the - enclosing box of the donut and the hole's diameter will be choosen to be half of the outer + enclosing box of the donut and the hole's diameter will be chosen to be half of the outer diameter.

@@ -136,7 +136,7 @@ The PCell features a parameter that defines the radius. The path itself can be manipulated as usual, in particular with partial edit mode. Path objects can be converted to ROUND_PATH pcells. In that case, the initial radius - will be choosen to be roughly 10 percent of the minimum bounding box dimensions + will be chosen to be roughly 10 percent of the minimum bounding box dimensions of the original path.

@@ -154,7 +154,7 @@ The PCell features a parameter that defines the radius. The polygon itself can be manipulated as usual, in particular with partial edit mode. Polygon, box or path objects can be converted to ROUND_POLYGON pcells. In that case, the initial radius - will be choosen to be roughly 10 percent of the minimum bounding box dimensions + will be chosen to be roughly 10 percent of the minimum bounding box dimensions of the original polygon.

@@ -173,7 +173,7 @@ The PCell features two parameters that define the radius and width of the "rim" line. The polygon or box itself can be manipulated as usual. Polygon, box or path objects can be converted to STROKED_POLYGON or STROKED_BOX pcells. - In that case, the initial radius will be zero. The width of the rim line will be choosen + In that case, the initial radius will be zero. The width of the rim line will be chosen to be roughly 10 percent of the minimum bounding box dimensions of the original polygon. For STROKED_BOX, the bounding box of the original shape will be used as the basic shape.

diff --git a/src/lay/lay/doc/about/connectivity.xml b/src/lay/lay/doc/about/connectivity.xml index 7cc65fad4..1118c2211 100644 --- a/src/lay/lay/doc/about/connectivity.xml +++ b/src/lay/lay/doc/about/connectivity.xml @@ -50,7 +50,7 @@

By creating conductor layers with boolean expressions, it is possible for example to separate an active area layer of a CMOS transistor into source and drain regions by subtracting the gate poly. Symbolic layers are useful - to use "speaking" names for layers instead of the numeric layer/datatype specificiation. + to use "speaking" names for layers instead of the numeric layer/datatype specification. Please note, that the net tracer is considerably slower when using boolean expressions.

diff --git a/src/lay/lay/doc/about/drc_ref_layer.xml b/src/lay/lay/doc/about/drc_ref_layer.xml index e6639416a..36b76860f 100644 --- a/src/lay/lay/doc/about/drc_ref_layer.xml +++ b/src/lay/lay/doc/about/drc_ref_layer.xml @@ -76,7 +76,7 @@ result will be the edges of the first operand which are inside or on the borders of the polygons of the second operand.

The following images show the effect of the "and" method -on polygons and egdes (layer1: red, layer2: blue): +on polygons and edges (layer1: red, layer2: blue):

@@ -847,7 +847,7 @@ It is an alias for the "+" operator. This method is available for polygon, edge and edge pair layers.

The following images show the effect of the "join" method -on polygons and egdes (layer1: red, layer2: blue): +on polygons and edges (layer1: red, layer2: blue):

@@ -1017,7 +1017,7 @@ result will be the edges of the first operand which are outside the polygons of the second operand.

The following images show the effect of the "not" method -on polygons and egdes (layer1: red, layer2: blue): +on polygons and edges (layer1: red, layer2: blue):

@@ -1203,7 +1203,7 @@ It is an alias for the "|" operator. This method is available for polygon and edge layers.

The following images show the effect of the "or" method -on polygons and egdes (layer1: red, layer2: blue): +on polygons and edges (layer1: red, layer2: blue):

@@ -2321,7 +2321,7 @@ It is an alias for the "^" operator. This method is available for polygon and edge layers.

The following images show the effect of the "xor" method -on polygons and egdes (layer1: red, layer2: blue): +on polygons and edges (layer1: red, layer2: blue):

diff --git a/src/lay/lay/doc/about/lef_def_import.xml b/src/lay/lay/doc/about/lef_def_import.xml index bf0ed8073..c25744ddd 100644 --- a/src/lay/lay/doc/about/lef_def_import.xml +++ b/src/lay/lay/doc/about/lef_def_import.xml @@ -85,7 +85,7 @@

By default, no layer mapping is specified. Layer mapping can be employed to confine input to - certain layers or layer/purpose pairs and to specifiy mapping of LEF layers/purposes to GDS + certain layers or layer/purpose pairs and to specify mapping of LEF layers/purposes to GDS layer/datatypes.

@@ -136,7 +136,7 @@
  • Produce net names: Check this option to assign user properties with the - net name to the net shapes in DEF files. The user propery name used for that + net name to the net shapes in DEF files. The user property name used for that purpose can be specified in the edit box below the check box. Use KLayout's variant notation (see ) to specify value and type of the property name. diff --git a/src/lay/lay/doc/manual/copypaste_cell.xml b/src/lay/lay/doc/manual/copypaste_cell.xml index 70b4b2721..519e7ebf5 100644 --- a/src/lay/lay/doc/manual/copypaste_cell.xml +++ b/src/lay/lay/doc/manual/copypaste_cell.xml @@ -15,7 +15,7 @@

    - Two copy modes are provided: deep and shallow copy. When "copy" or "cut" is choosen and + Two copy modes are provided: deep and shallow copy. When "copy" or "cut" is chosen and the cell instantiates other cells, a dialog will been shown in which the mode can be selected:

    diff --git a/src/lay/lay/doc/manual/create_variants.xml b/src/lay/lay/doc/manual/create_variants.xml index d251b12db..b6fa60f6a 100644 --- a/src/lay/lay/doc/manual/create_variants.xml +++ b/src/lay/lay/doc/manual/create_variants.xml @@ -42,7 +42,7 @@

    This is the initial situation: a cell is instantiated 9 times in a 3x3 array and one shape inside one of these instances is selected. The two following screenshots show the full-level - hierarchy view and just the top level hiearchy to demonstrate that the cell is placed + hierarchy view and just the top level hierarchy to demonstrate that the cell is placed 9 times.

    diff --git a/src/lay/lay/doc/manual/marker_browser.xml b/src/lay/lay/doc/manual/marker_browser.xml index 971c1dbd6..cb4e79272 100644 --- a/src/lay/lay/doc/manual/marker_browser.xml +++ b/src/lay/lay/doc/manual/marker_browser.xml @@ -18,7 +18,7 @@ items. Usually, a value is a collection of geometrical objects which somehow flag some position or drawn geometry. Multiple of such values comprise a "marker item". The report database associates these marker items with - additional informations:

    + additional information:

    • Tags: Flags that indicate certain conditions. The marker browser uses @@ -102,7 +102,7 @@ properties. Tagged values are generated by certain generators and can represent measurement values or similar. When tagged values are present, they will be shown in the markers list. The markers can be sorted by these values by clicking on the - approriate header. + appropriate header.

      diff --git a/src/lay/lay/doc/manual/move_sel.xml b/src/lay/lay/doc/manual/move_sel.xml index 6fdda48b0..4799fd5d7 100644 --- a/src/lay/lay/doc/manual/move_sel.xml +++ b/src/lay/lay/doc/manual/move_sel.xml @@ -37,7 +37,7 @@

      - In the same way, "Move To" allows to reposition the selection to a certain point. The point which + In the same way, "Move To" allows one to reposition the selection to a certain point. The point which is positioned can be chosen relative to the bounding box of the selection. If first example, the lower-left corner of the selection is picked as the reference point and a certain position is given in the dialog, the selection is moved such that the lower left position of it's diff --git a/src/lay/lay/doc/programming/application_api.xml b/src/lay/lay/doc/programming/application_api.xml index 6d3dfab73..f88751b9f 100644 --- a/src/lay/lay/doc/programming/application_api.xml +++ b/src/lay/lay/doc/programming/application_api.xml @@ -119,7 +119,7 @@

    • : gets the current layout reader options and allows modification of the latter. The reader options configure the reading of layouts.
    • and : save or restore a session. - Sessions contain a window settings and informations about the layouts loaded. + Sessions contain a window settings and information about the layouts loaded. Sessions allows storing and restoring of the state of the main window.
    • : switches to the given tab. This equivalent to using .
    • : gets the object for a given tab index.
    • @@ -866,7 +866,7 @@ lv.insert_image(image) Such a matrix describes the transformation from pixel coordinates to the micron unit space of the canvas. A 3x3 matrix is a generic way to specify a transformation, including translation, rotation, mirror, shear or perspective distortion. The matrix is obtained and set using the attribute. - Convenience methods like , and allow to access sub-aspects + Convenience methods like , and allow accessing sub-aspects of the generic transformation (affine transformation, scaling).
    diff --git a/src/lay/lay/doc/programming/database_api.xml b/src/lay/lay/doc/programming/database_api.xml index c451b1d59..cd4dfc0c8 100644 --- a/src/lay/lay/doc/programming/database_api.xml +++ b/src/lay/lay/doc/programming/database_api.xml @@ -80,7 +80,7 @@ layout.write("my_layout.gds")

    The basic building blocks of layouts are layers and cells. Layers are not individual objects. Instead, a layer - is rather an index and the various methods allow to address shapes inside layers by using that index. However, + is rather an index and the various methods allow addressing shapes inside layers by using that index. However, the layout object stores the layer properties, i.e. the layer and datatype number.

    @@ -955,7 +955,7 @@ shapes.insert(RBA::Box::new(0, 0, 1000, 2000)) Standalone Shapes objects can be useful when the methods of the Shapes object are required (for example, region queries through "each_overlapping"). There are are variety of "insert" methods available, some of which copy shapes from other Shapes containers using a Shape - object as the reference for the source object. Some of these variants allow to specify a + object as the reference for the source object. Some of these variants allow one to specify a transformation which is applied before the shape is inserted. There are also variants for all geometrical primitives with or without a properties ID.

    @@ -971,7 +971,7 @@ shapes.insert(RBA::Box::new(0, 0, 1000, 2000)) The content of the Shapes container can be iterated with the iterator. If will deliver Shape objects pointing to the current geometrical primitive. The and methods deliver only those primitives whose bounding box overlaps - or touches the given rectangle. All iterators allow to specify flags which confine the + or touches the given rectangle. All iterators allow one to specify flags which confine the kind of shape delivered. The flags are a combination of the "S..." constants. For example:

    @@ -1046,11 +1046,11 @@ end

    With version 0.23, new collection objects entered the stage: , and - which basically provide a way to store polygons, edges or egde pair objects + which basically provide a way to store polygons, edges or edge pair objects independently from the shapes container. They are mainly used to implement bulk operations, specifically for the DRC functionality. The cooperate with the shapes container in the sense that they can be inserted into a shapes container which will produce polygons or edges in the layout database (edge pairs are converted to single - egdes or polygons. These classes are discussed in . + edges or polygons. These classes are discussed in .

    The Shape class

    @@ -1075,7 +1075,7 @@ end delivers the Layout object and the Shapes object.

    -

    , and allow to modify the +

    , and allow modification of the user properties of the geometrical primitive. The same can be achieved somewhat less conveniently using a properties ID with the attributes' write accessor (). Please note the diff --git a/src/lay/lay/doc/programming/geometry_api.xml b/src/lay/lay/doc/programming/geometry_api.xml index 8e56a87da..e0628293c 100644 --- a/src/lay/lay/doc/programming/geometry_api.xml +++ b/src/lay/lay/doc/programming/geometry_api.xml @@ -650,7 +650,7 @@ ly.top_cell.shapes(ly.layer(100, 0)).insert(r11 & r21) interacting (overlapping or touching) or not interacting with polygons from another region.

    selects polygons which are contained in the same way in another region.

    -

    and merge the polygons. This feature allows to select overlapping polygons +

    and merge the polygons. This feature allows selecting overlapping polygons (minimum wrap count parameter).

    computes the Minkowsky sum of the region with other objects (edges, single polygons and other regions).

    , , and diff --git a/src/lay/lay/doc/programming/introduction.xml b/src/lay/lay/doc/programming/introduction.xml index 359b47c41..dcc1fbd03 100644 --- a/src/lay/lay/doc/programming/introduction.xml +++ b/src/lay/lay/doc/programming/introduction.xml @@ -159,7 +159,7 @@ end

    The layout view is the representation of a layout tab (). That is basically the window to the layouts loaded into that tab. - All related information such as the display settings, the zoom area, the layer properties and the informations about the + All related information such as the display settings, the zoom area, the layer properties and the information about the cell shown, the hierarchy levels and further settings go here.

    diff --git a/src/lay/lay/doc/programming/qt_binding.xml b/src/lay/lay/doc/programming/qt_binding.xml index 9a44da650..ae227cfa3 100644 --- a/src/lay/lay/doc/programming/qt_binding.xml +++ b/src/lay/lay/doc/programming/qt_binding.xml @@ -203,8 +203,8 @@ end

    Enums

    - Enum types are available as classes to give them a specific context. Since Ruby does not allow to - declare classes within classes, enums declared inside a class must be declared as separate classes outside that class. + Enum types are available as classes to give them a specific context. Since Ruby does not allow + declaration of classes within classes, enums declared inside a class must be declared as separate classes outside that class. The relationship is indicated by the Enum's class name. For example, QMessageBox::Icon (C++) is available as the Ruby class QMessageBox_Icon. The enum values are defined as constants within that class and the enclosing class. For example QMessageBox::Critical which is a value for QMessageBox::Icon is available as QMessageBox_Icon::Critical and QMessageBox::Critical @@ -215,7 +215,7 @@ end Starting with version 0.24, the QFlags template is supported as a separate class. The name of the class indicates the relationship to the enum class. For example, QFlags<QMessageBox::Icon> is available as QMessageBox_QFlags_Icon. - Enum classes are derived from their respective flags class, so they can serve to initialize aguments + Enum classes are derived from their respective flags class, so they can serve to initialize arguments expecting flags. It's hardly required to operate with the flags classes directly, since they are created automatically when joining enum's with the "or" (|) operator: diff --git a/src/lay/lay/doc/programming/ruby_pcells.xml b/src/lay/lay/doc/programming/ruby_pcells.xml index 5be23513b..59918c91d 100644 --- a/src/lay/lay/doc/programming/ruby_pcells.xml +++ b/src/lay/lay/doc/programming/ruby_pcells.xml @@ -226,7 +226,7 @@ end having to write "RBA::" in front of the class names.

    -

    The initialization of the object is alreay a very important step. First, it +

    The initialization of the object is already a very important step. First, it must initialize the super class. Then it has to declare the PCell parameters. Each PCell has a set of parameters that define the appearance of the PCell. Parameters have a symbolic name, a type, a description and optionally a default @@ -283,7 +283,7 @@ end The parameter declaration will create accessor methods for each parameter. These accessor methods can be used to get and set the current value of the parameter inside the production method and other methods. For that, it will use the symbolic name of the parameter. The setter is called "set_x" (where x is the parameter - name). Although Ruby would allow to use "x=" to mimic an assignment, this option leads to some confusion + name). Although Ruby would allow using "x=" to mimic an assignment, this option leads to some confusion with definition of local variables and was not considered here. The following methods are created in the sample:

    diff --git a/src/lay/lay/gsiDeclLayApplication.cc b/src/lay/lay/gsiDeclLayApplication.cc index fbd8e9375..f99fc7e63 100644 --- a/src/lay/lay/gsiDeclLayApplication.cc +++ b/src/lay/lay/gsiDeclLayApplication.cc @@ -170,7 +170,7 @@ static gsi::Methods application_methods () "@return A value indicating whether the operation was successful\n" "\n" "This method siletly does nothing, if the config file does not\n" - "exist. If it does and an error occured, the error message is printed\n" + "exist. If it does and an error occurred, the error message is printed\n" "on stderr. In both cases, false is returned.\n" ) + method ("main_window", &C::main_window, diff --git a/src/lay/lay/layApplication.cc b/src/lay/lay/layApplication.cc index 412da9d3d..4d26993e9 100644 --- a/src/lay/lay/layApplication.cc +++ b/src/lay/lay/layApplication.cc @@ -170,7 +170,7 @@ static void ui_exception_handler_def (QWidget *parent) if (! parent) { parent = QApplication::activeWindow () ? QApplication::activeWindow () : lay::MainWindow::instance (); } - QMessageBox::critical (parent, QObject::tr ("Error"), QObject::tr ("An unspecific error occured")); + QMessageBox::critical (parent, QObject::tr ("Error"), QObject::tr ("An unspecific error occurred")); } // -------------------------------------------------------------------------------- diff --git a/src/lay/lay/layApplication.h b/src/lay/lay/layApplication.h index 6d8224498..40cb2d1a9 100644 --- a/src/lay/lay/layApplication.h +++ b/src/lay/lay/layApplication.h @@ -183,7 +183,7 @@ public: * @brief Read the configuration from a file * * This method siletly does nothing, if the config file does not - * exist. If it does and an error occured, the error message is printed + * exist. If it does and an error occurred, the error message is printed * on stderr. In both cases, false is returned. */ bool read_config (const std::string &config_file); diff --git a/src/lay/lay/layGenericSyntaxHighlighter.h b/src/lay/lay/layGenericSyntaxHighlighter.h index aa897e7fb..cd69579d8 100644 --- a/src/lay/lay/layGenericSyntaxHighlighter.h +++ b/src/lay/lay/layGenericSyntaxHighlighter.h @@ -112,7 +112,7 @@ public: * placeholders. * If the rule matches, the end_index will be set to the end of the sequence and output_args * will contain any arguments matched. - * generationId is a counter that will incremented when a new block is highlighted. This allows to cache + * generationId is a counter that will incremented when a new block is highlighted. This allows caching * matches in some cases (i.e. regexp matcher). */ virtual bool match (const QString &input, unsigned int generation_id, int index, int &end_index, const QList &input_args, QList &output_args) const = 0; diff --git a/src/lay/lay/layMainWindow.cc b/src/lay/lay/layMainWindow.cc index 37f54d562..c308eeeb4 100644 --- a/src/lay/lay/layMainWindow.cc +++ b/src/lay/lay/layMainWindow.cc @@ -689,6 +689,14 @@ MainWindow::MainWindow (QApplication *app, lay::Plugin *plugin_parent, const cha MainWindow::~MainWindow () { + // avoid deferred execution later on where there isn't a valid main window anymore + // (problem case: showing a dialog inside main windows's destroyed signal - this will + // process events and trigger execution if not disabled) + if (! tl::DeferredMethodScheduler::instance ()->is_disabled ()) { + tl::DeferredMethodScheduler::instance ()->execute (); + } + tl::DeferredMethodScheduler::instance ()->enable (false); + lay::register_help_handler (0, 0); // since the configuration actions unregister themselves, we need to do this before the main @@ -2052,7 +2060,7 @@ MainWindow::cm_print () text_rect.setBottom (text_rect.bottom () - hh / 2); text_rect.setTop (text_rect.top () + hh / 2); - QImage img = current_view ()->get_image_with_options (page_rect.width (), page_rect.height () - 4 * hh, 2, 1, 1.0 / 3.0, Qt::white, Qt::black, Qt::black, db::DBox (), false); + QImage img = current_view ()->get_image_with_options (page_rect.width (), page_rect.height () - 4 * hh, 1, 1, 1.0 / 3.0, Qt::white, Qt::black, Qt::black, db::DBox (), false); painter.drawImage (QPoint (page_rect.left (), page_rect.top () + hh * 2), img); painter.setFont (header_font); diff --git a/src/lay/lay/laySaltDownloadManager.h b/src/lay/lay/laySaltDownloadManager.h index 57de7f287..3dd13cc78 100644 --- a/src/lay/lay/laySaltDownloadManager.h +++ b/src/lay/lay/laySaltDownloadManager.h @@ -99,7 +99,7 @@ public: /** * @brief Registers an URL (with version) for download in the given target directory * - * The target directory can be empty. In this case, the downloader will pick an approriate one. + * The target directory can be empty. In this case, the downloader will pick an appropriate one. */ void register_download (const std::string &name, const std::string &token, const std::string &url, const std::string &version); diff --git a/src/lay/lay/layVersion.h b/src/lay/lay/layVersion.h index d6d5c2909..6cfcd9f55 100644 --- a/src/lay/lay/layVersion.h +++ b/src/lay/lay/layVersion.h @@ -29,7 +29,7 @@ namespace lay { /** - * @brief This class provides the program's version informations + * @brief This class provides the program's version information */ class LAY_PUBLIC Version diff --git a/src/lay/lay/macro_templates/qt_designer.lym b/src/lay/lay/macro_templates/qt_designer.lym index 773b58225..d26b3a01b 100644 --- a/src/lay/lay/macro_templates/qt_designer.lym +++ b/src/lay/lay/macro_templates/qt_designer.lym @@ -17,7 +17,7 @@ # load the UI file # TODO: this is how to load a file from a path next to the .lym file # ui_file = QFile::new(QFileInfo::new($0).dir.filePath("MyDialog.ui")) - # Initially we use the sample file provided as resoure + # Initially we use the sample file provided as resource ui_file = QFile::new(":/macro-templates/qt_designer.ui") ui_file.open(QIODevice::ReadOnly) dialog = QFormBuilder::new.load(ui_file, Application::instance.main_window) diff --git a/src/lay/lay/macro_templates/qt_dialog.lym b/src/lay/lay/macro_templates/qt_dialog.lym index 8ce2c6a60..a97c7f8e1 100644 --- a/src/lay/lay/macro_templates/qt_dialog.lym +++ b/src/lay/lay/macro_templates/qt_dialog.lym @@ -1,6 +1,6 @@ - Qt dialog sample (Ruby)\nCreates a Qt dialog that allows to take and display a screenshot + Qt dialog sample (Ruby)\nCreates a Qt dialog that allows one to take and display a screenshot general false false diff --git a/src/lay/lay/macro_templates/qt_dialog_python.lym b/src/lay/lay/macro_templates/qt_dialog_python.lym index a23493118..2291e0787 100644 --- a/src/lay/lay/macro_templates/qt_dialog_python.lym +++ b/src/lay/lay/macro_templates/qt_dialog_python.lym @@ -1,6 +1,6 @@ - Qt dialog sample (Python)\nCreates a Qt dialog that allows to take and display a screenshot + Qt dialog sample (Python)\nCreates a Qt dialog that allows one to take and display a screenshot pymacros diff --git a/src/lay/lay/syntax/ruby.xml b/src/lay/lay/syntax/ruby.xml index 4b60a1951..8749d159a 100644 --- a/src/lay/lay/syntax/ruby.xml +++ b/src/lay/lay/syntax/ruby.xml @@ -313,7 +313,7 @@ - + @@ -325,7 +325,7 @@ - + diff --git a/src/laybasic/laybasic/gsiDeclLayDialogs.cc b/src/laybasic/laybasic/gsiDeclLayDialogs.cc index 2d05e86d4..68e5e9348 100644 --- a/src/laybasic/laybasic/gsiDeclLayDialogs.cc +++ b/src/laybasic/laybasic/gsiDeclLayDialogs.cc @@ -360,7 +360,7 @@ Class decl_BrowserDialog (QT_EXTERNAL_BASE (QDialog) "lay", "@brief Reloads the current page" ) + gsi::method ("home=|#set_home", &BrowserDialog_Stub::set_home, - "@brief Sets the browser's initial and current URL which is selected if the \"home\" location is choosen\n" + "@brief Sets the browser's initial and current URL which is selected if the \"home\" location is chosen\n" "@args home_url\n" "The home URL is the one shown initially and the one which is selected when the \"home\" button is pressed. " "The default location is \"int:/index.html\".\n" @@ -435,7 +435,7 @@ Class decl_BrowserSourceStub ("lay", "BrowserSource", "@args url\n" "\n" "If this method returns an empty string, the browser will not be set to \n" - "a new location. This allows to implement any functionality behind such links.\n" + "a new location. This allows implementing any functionality behind such links.\n" "If the method returns a string, the content of this string is displayed in the HTML\n" "browser page." ), @@ -513,7 +513,7 @@ Class decl_BrowserPanel (QT_EXTERNAL_BASE (QWidget) "lay", "B "@brief Reloads the current page" ) + gsi::method ("home=", &lay::BrowserPanel::set_home, - "@brief Sets the browser widget's initial and current URL which is selected if the \"home\" location is choosen\n" + "@brief Sets the browser widget's initial and current URL which is selected if the \"home\" location is chosen\n" "@args home_url\n" "The home URL is the one shown initially and the one which is selected when the \"home\" button is pressed. " "The default location is \"int:/index.html\".\n" @@ -726,7 +726,7 @@ Class decl_InputDialog ("lay", "InputDialog", "@param title The title to display for the dialog\n" "@param label The label text to display for the dialog\n" "@param items The list of items to show in the selection element\n" - "@param selection The initial selection (index of the element selected intially)\n" + "@param selection The initial selection (index of the element selected initially)\n" "@return A \\StringValue object with has_value? set to true, if \"Ok\" was pressed and the value given in it's value attribute\n" "Starting from 0.22, this method is deprecated and it is recommended to use the ask_... equivalent." ) + diff --git a/src/laybasic/laybasic/gsiDeclLayLayers.cc b/src/laybasic/laybasic/gsiDeclLayLayers.cc index 9b49a9036..88f2dc5c5 100644 --- a/src/laybasic/laybasic/gsiDeclLayLayers.cc +++ b/src/laybasic/laybasic/gsiDeclLayLayers.cc @@ -978,7 +978,7 @@ Class decl_LayerProperties ("lay", "LayerProperties", "This is the hierarchy level at which the drawing starts. " "This property is only meaningful, if \\has_upper_hier_level is true. " "The hierarchy level can be relative in which case, 0 refers to the context cell's level. " - "A mode can be specfied for the hierarchy level which is 0 for absolute, 1 for minimum " + "A mode can be specified for the hierarchy level which is 0 for absolute, 1 for minimum " "of specified level and set level and 2 for maximum of specified level and set level. " ) + method_ext ("upper_hier_level", &get_upper_hier_level_1, @@ -1069,7 +1069,7 @@ Class decl_LayerProperties ("lay", "LayerProperties", "This is the hierarchy level at which the drawing starts. " "This property is only meaningful, if \\has_lower_hier_level is true. " "The hierarchy level can be relative in which case, 0 refers to the context cell's level. " - "A mode can be specfied for the hierarchy level which is 0 for absolute, 1 for minimum " + "A mode can be specified for the hierarchy level which is 0 for absolute, 1 for minimum " "of specified level and set level and 2 for maximum of specified level and set level. " ) + method_ext ("lower_hier_level", &get_lower_hier_level_1, @@ -1266,7 +1266,7 @@ Class decl_LayerPropertiesNode ( method_ext ("add_child", &add_child0, "@brief Add a child entry\n" "@return A reference to the node created\n" - "This method allows to build a layer properties tree by adding children to node objects. " + "This method allows building a layer properties tree by adding children to node objects. " "It returns a reference to the node object created which is a freshly initialized one.\n" "\n" "The parameterless version of this method was introduced in version 0.25." @@ -1275,7 +1275,7 @@ Class decl_LayerPropertiesNode ( "@brief Add a child entry\n" "@args child\n" "@return A reference to the node created\n" - "This method allows to build a layer properties tree by adding children to node objects. " + "This method allows building a layer properties tree by adding children to node objects. " "It returns a reference to the node object created.\n" "\n" "This method was introduced in version 0.22." diff --git a/src/laybasic/laybasic/gsiDeclLayLayoutView.cc b/src/laybasic/laybasic/gsiDeclLayLayoutView.cc index a140bd1d3..77ae960f4 100644 --- a/src/laybasic/laybasic/gsiDeclLayLayoutView.cc +++ b/src/laybasic/laybasic/gsiDeclLayLayoutView.cc @@ -437,7 +437,7 @@ Class decl_LayoutView (QT_EXTERNAL_BASE (QWidget) "lay", "Layou "@param add_default If true, default layers will be added for each other layer in the layout\n" "\n" "Load the layer properties from the file given in \"fn\".\n" - "This version allows to specify whether defaults should be used for all other layers by " + "This version allows one to specify whether defaults should be used for all other layers by " "setting \"add_default\" to true.\n" "\n" "This variant has been added on version 0.21." @@ -450,7 +450,7 @@ Class decl_LayoutView (QT_EXTERNAL_BASE (QWidget) "lay", "Layou "@param add_default If true, default layers will be added for each other layer in the layout\n" "\n" "Load the layer properties from the file given in \"fn\".\n" - "This version allows to specify whether defaults should be used for all other layers by " + "This version allows one to specify whether defaults should be used for all other layers by " "setting \"add_default\" to true. It can be used to load the layer properties for a specific " "cellview by setting \"cv_index\" to the index for which the layer properties file should be applied. " "All present definitions for this layout will be removed before the properties file is loaded. \"cv_index\" can " @@ -465,7 +465,7 @@ Class decl_LayoutView (QT_EXTERNAL_BASE (QWidget) "lay", "Layou "\n" "@param level The minimum level above which to display something\n" "\n" - "This methods allows to set the minimum hierarchy level above which to display geometries." + "This methods allows setting the minimum hierarchy level above which to display geometries." "This method may cause a redraw if required." ) + gsi::method ("min_hier_levels", &lay::LayoutView::get_min_hier_levels, @@ -478,7 +478,7 @@ Class decl_LayoutView (QT_EXTERNAL_BASE (QWidget) "lay", "Layou "\n" "@param level The maximum level below which to display something\n" "\n" - "This methods allows to set the maximum hierarchy below which to display geometries." + "This methods allows setting the maximum hierarchy below which to display geometries." "This method may cause a redraw if required." ) + gsi::method ("max_hier_levels", &lay::LayoutView::get_max_hier_levels, @@ -528,7 +528,7 @@ Class decl_LayoutView (QT_EXTERNAL_BASE (QWidget) "lay", "Layou "@brief Create a new, empty layout and associate it with the given technology\n" "\n" "The add_cellview parameter controls whether to create a new cellview (true)\n" - "or clear all cellviews before (false). This variant also allows to control whether the layer properties are\n" + "or clear all cellviews before (false). This variant also allows one to control whether the layer properties are\n" "initialized (init_layers = true) or not (init_layers = false).\n" "\n" "@return The index of the cellview created.\n" @@ -572,7 +572,7 @@ Class decl_LayoutView (QT_EXTERNAL_BASE (QWidget) "lay", "Layou "The technology to use for that layout can be specified as well with the 'tech' parameter. Depending " "on the definition of the technology, layer properties may be loaded for example.\n" "The technology string can be empty for the default technology.\n" - "This variant also allows to control whether the layer properties are\n" + "This variant also allows one to control whether the layer properties are\n" "initialized (init_layers = true) or not (init_layers = false).\n" "\n" "Note: once a layout is passed to the view with show_layout, it is owned by the view and must not be " @@ -676,7 +676,7 @@ Class decl_LayoutView (QT_EXTERNAL_BASE (QWidget) "lay", "Layou "current path is returned for the cellview given by cv_index.\n" "The cell path is a list of cell indices from the top cell to the current cell.\n" "\n" - "@param cv_index The cellview index for which to get the current path from (usally this will be the active cellview index)" + "@param cv_index The cellview index for which to get the current path from (usually this will be the active cellview index)" "\n" "This method is was deprecated in version 0.25 since from then, the \\CellView object can be used to obtain an manipulate the selected cell." ) + @@ -684,10 +684,10 @@ Class decl_LayoutView (QT_EXTERNAL_BASE (QWidget) "lay", "Layou "@brief Sets the path to the current cell\n" "\n" "The current cell is the one highlighted in the browser with the focus rectangle. The\n" - "cell given by the path is hightlighted and scrolled into view.\n" + "cell given by the path is highlighted and scrolled into view.\n" "To select the cell to be drawn, use the \\select_cell or \\select_cell_path method.\n" "\n" - "@param cv_index The cellview index for which to set the current path for (usally this will be the active cellview index)\n" + "@param cv_index The cellview index for which to set the current path for (usually this will be the active cellview index)\n" "@param path The path to the current cell\n" "\n" "This method is was deprecated in version 0.25 since from then, the \\CellView object can be used to obtain an manipulate the selected cell." @@ -1020,7 +1020,7 @@ Class decl_LayoutView (QT_EXTERNAL_BASE (QWidget) "lay", "Layou "\n" "This method inserts the new properties node before the position given by \"iter\" and returns " "a const reference to the element created. The iterator that specified the position will remain valid " - "after the node was inserted and will point to the newly created node. It can be used to add futher nodes. " + "after the node was inserted and will point to the newly created node. It can be used to add further nodes. " "To add children to the node inserted, use iter.last_child as insertion point for the next insert operations.\n" "\n" "Since version 0.22, this method accepts LayerProperties and LayerPropertiesNode objects. A LayerPropertiesNode " @@ -1034,7 +1034,7 @@ Class decl_LayoutView (QT_EXTERNAL_BASE (QWidget) "lay", "Layou "This version addresses a specific list in a multi-tab layer properties arrangement with the \"index\" parameter. " "This method inserts the new properties node before the position given by \"iter\" and returns " "a const reference to the element created. The iterator that specified the position will remain valid " - "after the node was inserted and will point to the newly created node. It can be used to add futher nodes. " + "after the node was inserted and will point to the newly created node. It can be used to add further nodes. " "\n" "This method has been introduced in version 0.21.\n" "Since version 0.22, this method accepts LayerProperties and LayerPropertiesNode objects. A LayerPropertiesNode " @@ -1104,7 +1104,7 @@ Class decl_LayoutView (QT_EXTERNAL_BASE (QWidget) "lay", "Layou "This iterator delivers the layers of this view, either in a recursive or non-recursive\n" "fashion, depending which iterator increment methods are used.\n" "The iterator delivered by \\end_layers is the past-the-end iterator. It can be compared\n" - "agains a current iterator to check, if there are no further elements.\n" + "against a current iterator to check, if there are no further elements.\n" "\n" "Starting from version 0.25, an alternative solution is provided with 'each_layer' which is based on the " "\\LayerPropertiesNodeRef class." @@ -1119,7 +1119,7 @@ Class decl_LayoutView (QT_EXTERNAL_BASE (QWidget) "lay", "Layou "This iterator delivers the layers of this view, either in a recursive or non-recursive\n" "fashion, depending which iterator increment methods are used.\n" "The iterator delivered by \\end_layers is the past-the-end iterator. It can be compared\n" - "agains a current iterator to check, if there are no further elements.\n" + "against a current iterator to check, if there are no further elements.\n" "This version addresses a specific list in a multi-tab layer properties arrangement with the \"index\" parameter. " "This method has been introduced in version 0.21.\n" ) + @@ -1497,7 +1497,7 @@ Class decl_LayoutView (QT_EXTERNAL_BASE (QWidget) "lay", "Layou "A transaction brackets a sequence of database modifications that appear as a single " "undo action. Only modifications that are wrapped inside a transaction..commit call pair " "can be undone.\n" - "Each transaction must be terminated with a \\commit method call, even if some error occured. " + "Each transaction must be terminated with a \\commit method call, even if some error occurred. " "It is advisable therefore to catch errors and issue a commit call in this case.\n" "\n" "This method was introduced in version 0.16." diff --git a/src/laybasic/laybasic/gsiDeclLayMenu.cc b/src/laybasic/laybasic/gsiDeclLayMenu.cc index 6f201ff46..680843b7f 100644 --- a/src/laybasic/laybasic/gsiDeclLayMenu.cc +++ b/src/laybasic/laybasic/gsiDeclLayMenu.cc @@ -123,7 +123,7 @@ Class decl_AbstractMenu ("lay", "AbstractMenu", "\n" "@
\n" " @@@@ \n" - " @@@@ \n" + " @@@@ \n" " @@@@\n" " @@@@\n" " @@@@\n" diff --git a/src/laybasic/laybasic/gsiDeclLayPlugin.cc b/src/laybasic/laybasic/gsiDeclLayPlugin.cc index b14b279f4..a393dae57 100644 --- a/src/laybasic/laybasic/gsiDeclLayPlugin.cc +++ b/src/laybasic/laybasic/gsiDeclLayPlugin.cc @@ -51,7 +51,7 @@ namespace gsi // TODO: these static variables are a bad hack! // However it's not easy to pass parameters to a C++ classes constructor in Ruby without // compromising the capability to derive from that class (at least I have not learned how -// to create a "new" in the super class *and* allow to "new" the derived class). Anyway, +// to create a "new" in the super class *and* allow a "new" of the derived class). Anyway, // since PluginBase object are only allowed to be created inside the create_plugin method // of the factory, this hack is a quick but dirty workaround. static bool s_in_create_plugin = false; @@ -457,7 +457,7 @@ Class decl_PluginFactory ("lay", "PluginFactory", "@param title The title string which is supposed to appear in the tool bar and menu related to this plugin.\n" "@param icon The path to the icon that appears in the tool bar and menu related to this plugin.\n" "\n" - "This version also allows to register an icon for the tool bar.\n" + "This version also allows registering an icon for the tool bar.\n" "\n" "Registration of the plugin factory makes the object known to the system. Registration requires that the menu items have been set " "already. Hence it is recommended to put the registration at the end of the initialization method of the factory class.\n" @@ -905,7 +905,7 @@ Class decl_PluginRoot ("lay", "PluginRoot", "@return A value indicating whether the operation was successful\n" "\n" "This method siletly does nothing, if the config file does not\n" - "exist. If it does and an error occured, the error message is printed\n" + "exist. If it does and an error occurred, the error message is printed\n" "on stderr. In both cases, false is returned.\n" ) + method_ext ("get_config", &get_config, diff --git a/src/laybasic/laybasic/gtf.cc b/src/laybasic/laybasic/gtf.cc index fa69f162e..4c28aeec9 100644 --- a/src/laybasic/laybasic/gtf.cc +++ b/src/laybasic/laybasic/gtf.cc @@ -60,7 +60,7 @@ #include // -------------------------------------------------------------- -// A helper class that allows to put a QImage into a tl::Variant +// A helper class that allows putting a QImage into a tl::Variant namespace tl { diff --git a/src/laybasic/laybasic/layAbstractMenu.h b/src/laybasic/laybasic/layAbstractMenu.h index 6c043987e..def7dcd8a 100644 --- a/src/laybasic/laybasic/layAbstractMenu.h +++ b/src/laybasic/laybasic/layAbstractMenu.h @@ -107,8 +107,8 @@ private: * @brief A QAction proxy * * This class is provided to be better suited to automation because it provides the corresponding interfaces - * and allows to implement the "trigger" event by reimplementation of the slot (after being connected). - * In addition, by acting as a proxy, it allows to reference a QAction object created by Qt itself (i.e. + * and allows implementing the "trigger" event by reimplementation of the slot (after being connected). + * In addition, by acting as a proxy, it can act as a reference to a QAction object created by Qt itself (i.e. * within a QMenu). * To reimplement the "triggered" method, derive a class from Action and reimplement "triggered". Then * pass a reference to this object to "insert_item" of AbstractMenu and store away the derived object. @@ -624,7 +624,7 @@ private: * Menu items and submenus are referred to by a "path". The path is a string with this interpretation: * * "" is the root - * "[.]" is an element of the submenu given by . If is ommitted, this refers to + * "[.]" is an element of the submenu given by . If is omitted, this refers to * an element in the root * "[.]end refers to the item past the last item of the submenu given by or root * "[.]begin refers to the first item of the submenu given by or root diff --git a/src/laybasic/laybasic/layBitmapRenderer.h b/src/laybasic/laybasic/layBitmapRenderer.h index 43f3aba01..5ccfb70ed 100644 --- a/src/laybasic/laybasic/layBitmapRenderer.h +++ b/src/laybasic/laybasic/layBitmapRenderer.h @@ -37,7 +37,7 @@ namespace lay * The renderer is supposed to render a set of edges to * one or more bitmaps. One bitmap holds the contour * information, one the fill. A third one holds the - * vertex informations (dots). + * vertex information (dots). * * The intended use model is first to reserve a number of * points if necessary, the fill the renderer with the diff --git a/src/laybasic/laybasic/layBitmapsToImage.cc b/src/laybasic/laybasic/layBitmapsToImage.cc index 2399397be..1aeb7f8d7 100644 --- a/src/laybasic/laybasic/layBitmapsToImage.cc +++ b/src/laybasic/laybasic/layBitmapsToImage.cc @@ -534,7 +534,7 @@ bitmaps_to_image_rgb (const std::vector &view_ops_in, } - // Collect all necessary informations to transfer a single scanline .. + // Collect all necessary information to transfer a single scanline .. masks.erase (masks.begin (), masks.end ()); diff --git a/src/laybasic/laybasic/layBrowser.h b/src/laybasic/laybasic/layBrowser.h index c371a2c94..8704b6065 100644 --- a/src/laybasic/laybasic/layBrowser.h +++ b/src/laybasic/laybasic/layBrowser.h @@ -63,7 +63,7 @@ public: * This method can be overloaded by derived classes to provide actions * for activation of the dialog, like setup of the controls etc. * This handler is called immediately before the dialog becomes visible. - * The 'active' method allows to query if the dialog is active. + * The 'active' method returns a value indicating whether the dialog is active. */ virtual void activated () { diff --git a/src/laybasic/laybasic/layBrowserPanel.h b/src/laybasic/laybasic/layBrowserPanel.h index 4d94fcc8d..646e67a27 100644 --- a/src/laybasic/laybasic/layBrowserPanel.h +++ b/src/laybasic/laybasic/layBrowserPanel.h @@ -190,7 +190,7 @@ public: * @brief Get the HTML code for a given "int" URL. * * If this method returns an empty string, the browser will not be set to - * a new location. This allows to implement any functionality behind such links. + * a new location. This allows implementing any functionality behind such links. */ virtual std::string get (const std::string &url); @@ -250,7 +250,7 @@ private: }; /** - * @brief A specialisation of QTextBrowser that allows to load a specific resource through BrowserPanel + * @brief A specialisation of QTextBrowser that allows loading a specific resource through BrowserPanel */ class LAYBASIC_PUBLIC BrowserTextWidget : public QTextBrowser @@ -274,7 +274,7 @@ private: }; /** - * @brief A specialisation of QWidget around a TextBrowser that allows to load a specific resource + * @brief A specialisation of QWidget around a TextBrowser that allows loading a specific resource */ class LAYBASIC_PUBLIC BrowserPanel : public QWidget diff --git a/src/laybasic/laybasic/layColorPalette.h b/src/laybasic/laybasic/layColorPalette.h index 642774b28..6876ad9d1 100644 --- a/src/laybasic/laybasic/layColorPalette.h +++ b/src/laybasic/laybasic/layColorPalette.h @@ -146,7 +146,7 @@ public: * This method will throw an exception if the string does not have a valid format * like the one returned by the to_string method. * - * If simple is true, this method allows to set a palette without luminous colors + * If simple is true, this method allows setting a palette without luminous colors * and without colors at all. */ void from_string (const std::string &s, bool simple = false); diff --git a/src/laybasic/laybasic/layDitherPattern.cc b/src/laybasic/laybasic/layDitherPattern.cc index c3fbd3085..5326c8c93 100644 --- a/src/laybasic/laybasic/layDitherPattern.cc +++ b/src/laybasic/laybasic/layDitherPattern.cc @@ -722,8 +722,8 @@ DitherPatternInfo::from_strings (const std::vector &strv) data[l] = 0; } - for (size_t i = 0; i < strv.size (); ++i) { - uint_from_string (strv [strv.size () - 1 - i].c_str (), data [i], w); + for (size_t i = 0; i < h; ++i) { + uint_from_string (strv [h - 1 - i].c_str (), data [i], w); } set_pattern (data, w, h); diff --git a/src/laybasic/laybasic/layDitherPattern.h b/src/laybasic/laybasic/layDitherPattern.h index c3010ab48..a643a1e3c 100644 --- a/src/laybasic/laybasic/layDitherPattern.h +++ b/src/laybasic/laybasic/layDitherPattern.h @@ -140,7 +140,7 @@ public: * The pattern returned is guaranteed to be at least of * size (32*pattern_stride)x64 bits. If the actual width or height is smaller, * the pattern is repeated to fill this area. - * The pattern stride may be bigger than 1 to accomodate pattern with + * The pattern stride may be bigger than 1 to accommodate pattern with * a width that is not a fraction of 32. Such pattern are repeated until * they fill a multiple of 32 bits. */ diff --git a/src/laybasic/laybasic/layEditable.h b/src/laybasic/laybasic/layEditable.h index 66b8d1738..7f80e4e8a 100644 --- a/src/laybasic/laybasic/layEditable.h +++ b/src/laybasic/laybasic/layEditable.h @@ -136,7 +136,7 @@ public: * proximity is a typical distance value of the point to the closest * object in micron. The plugin with the least point selection proximity * is selected first for the actual "select" operation. - * If a plugin definitly wants to get the selection, it should return + * If a plugin definitely wants to get the selection, it should return * a negative value. If the plugin is only weakly interested in a selection, * it should return the value provided by the default implementation. * The click_proximity method can be used to implement cycling through @@ -186,7 +186,7 @@ public: * This method is used by the single-point selection cycling protocol to clear the * plugin's single-point selection state. The cycling protocol is used when a certain * point is clicked at multiple times. A plugin is supposed to remember such selections and - * exlcude them from futher checks. If all objects in question are selected, no further + * exlcude them from further checks. If all objects in question are selected, no further * object would be selected. clear_previous_selection is called in that case to indicate that * the previous selection should be cleared and a new cycle is about to begin */ diff --git a/src/laybasic/laybasic/layFileDialog.h b/src/laybasic/laybasic/layFileDialog.h index 899a82d06..b4a57cc7d 100644 --- a/src/laybasic/laybasic/layFileDialog.h +++ b/src/laybasic/laybasic/layFileDialog.h @@ -39,7 +39,7 @@ namespace lay * @brief Generic file dialog * * This dialog is provided to encapsulate the Qt file dialog. - * This implementation allows to stay within a directory even + * This implementation allows staying within a directory even * if the static convenience functions are used. Under Windows, * we need to use the static functions since these use the * system dialogs. diff --git a/src/laybasic/laybasic/layGridNet.cc b/src/laybasic/laybasic/layGridNet.cc index 97e76d75f..5f45f0128 100644 --- a/src/laybasic/laybasic/layGridNet.cc +++ b/src/laybasic/laybasic/layGridNet.cc @@ -350,8 +350,8 @@ public: continue; } - const uint32_t *dc = ff.data () + size_t (ch - ff.first_char ()) * ff.height (); - for (unsigned int i = 0; i < ff.height (); ++i, ++dc) { + const uint32_t *dc = ff.data () + size_t (ch - ff.first_char ()) * ff.height () * ff.stride (); + for (unsigned int i = 0; i < ff.height (); ++i, dc += ff.stride ()) { int iy = y - ff.height () + i + 1; if (iy >= 0 || iy < mp_img->height ()) { @@ -359,10 +359,21 @@ public: uint32_t *d = (uint32_t *) mp_img->scanLine (y - ff.height () + i); uint32_t m = 1; int ix = x; - for (unsigned int j = 0; j < ff.width (); ++j, m <<= 1, ++ix) { - if (*dc & m && ix >= 0 && ix < mp_img->width ()) { + const uint32_t *ds = dc; + + for (unsigned int j = 0; j < ff.width (); ++j, ++ix) { + + if ((*ds & m) && ix >= 0 && ix < mp_img->width ()) { d[ix] = c.rgb (); } + + m <<= 1; + // word wrap + if (m == 0) { + ++ds; + m = 1; + } + } } diff --git a/src/laybasic/laybasic/layHierarchyControlPanel.h b/src/laybasic/laybasic/layHierarchyControlPanel.h index 8520d562c..be9e28abe 100644 --- a/src/laybasic/laybasic/layHierarchyControlPanel.h +++ b/src/laybasic/laybasic/layHierarchyControlPanel.h @@ -88,7 +88,7 @@ protected: /** * @brief The hierarchy control panel * - * The hierarchy control panel allows to change the cell shown + * The hierarchy control panel allows changing the cell shown, to * browse the hierarchy and disable/enable cells * * The class communicates with a Layout interface for @@ -186,7 +186,7 @@ public: * @brief Update the contents if necessary * * Update the cell trees according to the hierarchy found in - * the layouts. This version allows to give an hint what cellview has changed. + * the layouts. This version includes a hint which cellview has changed. */ void do_update_content (int cv_index); diff --git a/src/laybasic/laybasic/layLayerProperties.cc b/src/laybasic/laybasic/layLayerProperties.cc index dc91e6b62..eb5c6c6b5 100644 --- a/src/laybasic/laybasic/layLayerProperties.cc +++ b/src/laybasic/laybasic/layLayerProperties.cc @@ -1438,7 +1438,7 @@ LayerPropertiesList::expand (const std::map &map_cv_index, bool add_de } - // erase the items specfied to removal (cv mapping to -1) + // erase the items specified to removal (cv mapping to -1) for (std::set::const_iterator cv = cvrefs_to_erase.begin (); cv != cvrefs_to_erase.end (); ++cv) { remove_cv_references (*cv, false); } diff --git a/src/laybasic/laybasic/layLayerProperties.h b/src/laybasic/laybasic/layLayerProperties.h index 98e195771..d41622426 100644 --- a/src/laybasic/laybasic/layLayerProperties.h +++ b/src/laybasic/laybasic/layLayerProperties.h @@ -1446,7 +1446,7 @@ struct LAYBASIC_PUBLIC CompareLayerIteratorBottomUp * @brief Flat, non-const layer iterator * * This iterator provides a flat view for the layers in the layer tree - * and allows to change the item pointed to. + * and allows changing the item pointed to. */ class LAYBASIC_PUBLIC LayerPropertiesIterator : public LayerPropertiesConstIterator diff --git a/src/laybasic/laybasic/layLayoutCanvas.cc b/src/laybasic/laybasic/layLayoutCanvas.cc index 6c86e300c..ace668031 100644 --- a/src/laybasic/laybasic/layLayoutCanvas.cc +++ b/src/laybasic/laybasic/layLayoutCanvas.cc @@ -844,7 +844,7 @@ LayoutCanvas::image_with_options (unsigned int width, unsigned int height, int l do_render_bg (vp, vo_canvas); // paint the layout bitmaps - rd_canvas.to_image (m_view_ops, dither_pattern (), line_styles (), background, foreground, active, this, vo_canvas.bg_image (), vp.width (), vp.height ()); + rd_canvas.to_image (view_ops, dither_pattern (), line_styles (), background, foreground, active, this, vo_canvas.bg_image (), vp.width (), vp.height ()); // subsample current image to provide the background for the foreground objects vo_canvas.make_background (); @@ -860,7 +860,7 @@ LayoutCanvas::image_with_options (unsigned int width, unsigned int height, int l // TODO: Painting of background objects??? // paint the layout bitmaps - rd_canvas.to_image (m_view_ops, dither_pattern (), line_styles (), background, foreground, active, this, vo_canvas.bg_image (), vp.width (), vp.height ()); + rd_canvas.to_image (view_ops, dither_pattern (), line_styles (), background, foreground, active, this, vo_canvas.bg_image (), vp.width (), vp.height ()); } diff --git a/src/laybasic/laybasic/layLayoutView.cc b/src/laybasic/laybasic/layLayoutView.cc index 1612bf292..9f6b1513a 100644 --- a/src/laybasic/laybasic/layLayoutView.cc +++ b/src/laybasic/laybasic/layLayoutView.cc @@ -2613,7 +2613,7 @@ LayoutView::add_new_layers (const std::vector &layer_ids, int cv_ lay::LayerPropertiesList new_props (get_properties ()); // don't create new layers for those, for which there are layers already: compute a - // set of layers alreay present + // set of layers already present std::set present_layers; for (LayerPropertiesConstIterator lay_iter = begin_layers (); ! lay_iter.at_end (); ++lay_iter) { if (! lay_iter->has_children () && lay_iter->cellview_index () == cv_index) { @@ -2691,7 +2691,7 @@ LayoutView::save_screenshot (const std::string &fn) QImageWriter writer (tl::to_qstring (fn), QByteArray ("PNG")); - // Unfortunately the PNG writer does not allow to write long strings. + // Unfortunately the PNG writer does not allow writing of long strings. // We separate the description into a set of keys: for (unsigned int i = 0; i < cellviews (); ++i) { @@ -2748,7 +2748,7 @@ LayoutView::save_image (const std::string &fn, unsigned int width, unsigned int QImageWriter writer (tl::to_qstring (fn), QByteArray ("PNG")); - // Unfortunately the PNG writer does not allow to write long strings. + // Unfortunately the PNG writer does not allow writing of long strings. // We separate the description into a set of keys: for (unsigned int i = 0; i < cellviews (); ++i) { @@ -2780,7 +2780,7 @@ LayoutView::save_image_with_options (const std::string &fn, QImageWriter writer (tl::to_qstring (fn), QByteArray ("PNG")); - // Unfortunately the PNG writer does not allow to write long strings. + // Unfortunately the PNG writer does not allow writing of long strings. // We separate the description into a set of keys: for (unsigned int i = 0; i < cellviews (); ++i) { @@ -4279,7 +4279,7 @@ LayoutView::max_hier_changed (int i) } /** - * @brief set the maximum hierachy level to the number of levels available + * @brief set the maximum hierarchy level to the number of levels available */ void LayoutView::max_hier () diff --git a/src/laybasic/laybasic/layLayoutView.h b/src/laybasic/laybasic/layLayoutView.h index afffc8d7c..8802dc72d 100644 --- a/src/laybasic/laybasic/layLayoutView.h +++ b/src/laybasic/laybasic/layLayoutView.h @@ -295,7 +295,7 @@ public: /** * @brief Fill the layer properties for a new layer * - * The layer's source must be set already to allow to compute the initial color. + * The layer's source must be set already to allow computing of the initial color. * It is assumed that the layer is appended at the end of the layer list. This * is important to set the dither pattern index accordingly. */ @@ -798,7 +798,7 @@ public: * * @param fn The file to load * - * This version allows to specify whether defaults should be used for all other layers by + * This version allows one to specify whether defaults should be used for all other layers by * setting add_default to true */ void load_layer_props (const std::string &fn, bool add_default); @@ -808,7 +808,7 @@ public: * * @param fn The file to load * - * This version allows to specify whether defaults should be used for all other layers by + * This version allows one to specify whether defaults should be used for all other layers by * setting add_default to true. In addition, this version will apply the .lyp definitions * to a specific cellview after removing all definitions for this one. If cv_index is set * to -1, the .lyp file will be applied to each cellview. In any case, the cv index specs @@ -1366,7 +1366,7 @@ public: * @brief Create a new, empty layout using the specified technology * * The add_cellview param controls whether to create a new cellview - * or clear all cellviews before. This version allows to specify whether layer properties shall be created. + * or clear all cellviews before. This version allows one to specify whether layer properties shall be created. * * @return The index of the cellview created. */ @@ -1378,7 +1378,7 @@ public: * The add_cellview param controls whether to add the layout as a new cellview * or clear all cellviews before. * - * The "initialize_layers" parameter allows to specify whether the layer properties shall be initialized. + * The "initialize_layers" parameter allows one to specify whether the layer properties shall be initialized. * * @return The index of the cellview loaded. */ @@ -1451,7 +1451,7 @@ public: * @brief Set the path to the current cell * * The current cell is the one highlighted in the browser with the focus rectangle. The - * cell given by the path is hightlighted and scrolled into view. + * cell given by the path is highlighted and scrolled into view. */ void set_current_cell_path (int cv_index, const cell_path_type &path); diff --git a/src/laybasic/laybasic/layLineStyles.h b/src/laybasic/laybasic/layLineStyles.h index 4a2197306..890e5eb50 100644 --- a/src/laybasic/laybasic/layLineStyles.h +++ b/src/laybasic/laybasic/layLineStyles.h @@ -132,7 +132,7 @@ public: * The pattern returned is guaranteed to be at least of * size (32*pattern_stride)x64 bits. If the actual width or height is smaller, * the pattern is repeated to fill this area. - * The pattern stride may be bigger than 1 to accomodate pattern with + * The pattern stride may be bigger than 1 to accommodate pattern with * a width that is not a fraction of 32. Such pattern are repeated until * they fill a multiple of 32 bits. */ diff --git a/src/laybasic/laybasic/layParsedLayerSource.h b/src/laybasic/laybasic/layParsedLayerSource.h index 9c6950f2e..462d2f367 100644 --- a/src/laybasic/laybasic/layParsedLayerSource.h +++ b/src/laybasic/laybasic/layParsedLayerSource.h @@ -542,7 +542,7 @@ public: * selection. The set should be empty on enter. Otherwise the results are * not defined. * The return value is true if the ids are to be interpretated inversely (every properties id - * matches that is not in the set). This allows to optimize the computation of the set. + * matches that is not in the set). This allows optimizing the computation of the set. */ bool matching (const db::PropertiesRepository &rep, std::set &matching) const; diff --git a/src/laybasic/laybasic/layPlugin.cc b/src/laybasic/laybasic/layPlugin.cc index 955ced3aa..ff39f29d0 100644 --- a/src/laybasic/laybasic/layPlugin.cc +++ b/src/laybasic/laybasic/layPlugin.cc @@ -120,7 +120,7 @@ PluginDeclaration::init_menu () lay::AbstractMenu &menu = *lay::AbstractMenuProvider::instance ()->menu (); - // pre-initialize to allow to multiple init_menu calls + // pre-initialize to allow multiple init_menu calls m_editable_mode_action = lay::Action (); m_mouse_mode_action = lay::Action (); m_menu_actions.clear (); diff --git a/src/laybasic/laybasic/layPlugin.h b/src/laybasic/laybasic/layPlugin.h index 709aa1227..1b037aaae 100644 --- a/src/laybasic/laybasic/layPlugin.h +++ b/src/laybasic/laybasic/layPlugin.h @@ -818,7 +818,7 @@ public: * If the configuration file cannot be written, false * is returned but no exception is thrown. * - * @return false, if an error occured. + * @return false, if an error occurred. */ bool write_config (const std::string &config_file); @@ -826,10 +826,10 @@ public: * @brief Read the configuration from a file * * This method siletly does nothing, if the config file does not - * exist. If it does and an error occured, the error message is printed + * exist. If it does and an error occurred, the error message is printed * on stderr. In both cases, false is returned. * - * @return false, if an error occured. + * @return false, if an error occurred. */ bool read_config (const std::string &config_file); diff --git a/src/laybasic/laybasic/layRenderer.h b/src/laybasic/laybasic/layRenderer.h index 42a85b42e..24d5f5ae0 100644 --- a/src/laybasic/laybasic/layRenderer.h +++ b/src/laybasic/laybasic/layRenderer.h @@ -51,7 +51,7 @@ class CanvasPlane; * The renderer is supposed to render a set of edges to * one or more bitmaps. One bitmap holds the contour * information, one the fill. A third one holds the - * vertex informations (dots). + * vertex information (dots). * * The intended use model is first to reserve a number of * points if necessary, the fill the renderer with the diff --git a/src/laybasic/laybasic/layStream.h b/src/laybasic/laybasic/layStream.h index 53b929d58..1fd5345cb 100644 --- a/src/laybasic/laybasic/layStream.h +++ b/src/laybasic/laybasic/layStream.h @@ -164,7 +164,7 @@ private: std::string m_format_name; db::StreamFormatDeclaration *mp_stream_fmt; - // don't allow to override - use a special configuration page for that purpose. + // don't allow overrides - use a special configuration page for that purpose. virtual ConfigPage *config_page (QWidget * /*parent*/, std::string & /*title*/) const { return 0; diff --git a/src/laybasic/laybasic/layTipDialog.h b/src/laybasic/laybasic/layTipDialog.h index 4aee2d576..c78cf2d7d 100644 --- a/src/laybasic/laybasic/layTipDialog.h +++ b/src/laybasic/laybasic/layTipDialog.h @@ -55,7 +55,7 @@ public: * * Creates a tip dialog with the given parent, message text and configuration key. The configuration key * is the key under which the status of the dialog is stored. - * The buttons argument allows to specify which buttons to show (see buttons_type enum for the button + * The buttons argument allows one to specify which buttons to show (see buttons_type enum for the button * combinations available. */ TipDialog (QWidget *parent, const std::string &text, const std::string &key, buttons_type buttons = close_buttons); diff --git a/src/laybasic/laybasic/layWidgets.h b/src/laybasic/laybasic/layWidgets.h index a05e1846e..cad674045 100644 --- a/src/laybasic/laybasic/layWidgets.h +++ b/src/laybasic/laybasic/layWidgets.h @@ -112,7 +112,7 @@ private: /** * @brief A library selection combo box * - * This combo box allows to select a library + * This combo box allows selecting a library */ class LAYBASIC_PUBLIC LibrarySelectionComboBox : public QComboBox @@ -166,7 +166,7 @@ private: /** * @brief A layer selection combo box * - * This combo box allows to select a (physical) layer from a layout + * This combo box allows selecting a (physical) layer from a layout */ class LAYBASIC_PUBLIC LayerSelectionComboBox : public QComboBox @@ -254,7 +254,7 @@ private: /** * @brief A cell view selection combo box * - * This combo box allows to select a cellview from a lay::LayoutView + * This combo box allows selecting a cellview from a lay::LayoutView */ class LAYBASIC_PUBLIC CellViewSelectionComboBox : public QComboBox diff --git a/src/lym/lym/lymMacro.cc b/src/lym/lym/lymMacro.cc index 1eb7b27e9..503465d25 100644 --- a/src/lym/lym/lymMacro.cc +++ b/src/lym/lym/lymMacro.cc @@ -954,7 +954,7 @@ void Macro::install_doc () const } else if (ex.test ("@method") || (st = ex.test ("@static_method")) == true) { if (cls == 0) { - tl::error << tl::to_string (QObject::tr ("Reading class doc from ")) << path () << ": " << tl::to_string (QObject::tr ("@method without preceeding @class")); + tl::error << tl::to_string (QObject::tr ("Reading class doc from ")) << path () << ": " << tl::to_string (QObject::tr ("@method without preceding @class")); } else { std::string n; diff --git a/src/lym/lym/lymMacro.h b/src/lym/lym/lymMacro.h index 1e9b0a8a6..c8431e15e 100644 --- a/src/lym/lym/lymMacro.h +++ b/src/lym/lym/lymMacro.h @@ -1131,7 +1131,7 @@ private: /** * @brief A signal to macro adaptor * - * This class allows to call a macro from a signal + * This class allows calling a macro from a signal */ class LYM_PUBLIC MacroSignalAdaptor : public QObject diff --git a/src/plugins/streamers/cif/db_plugin/dbCIF.h b/src/plugins/streamers/cif/db_plugin/dbCIF.h index b524d3a00..f7d98f750 100644 --- a/src/plugins/streamers/cif/db_plugin/dbCIF.h +++ b/src/plugins/streamers/cif/db_plugin/dbCIF.h @@ -46,12 +46,12 @@ public: virtual ~CIFDiagnostics (); /** - * @brief Issue an error with positional informations + * @brief Issue an error with positional information */ virtual void error (const std::string &txt) = 0; /** - * @brief Issue a warning with positional informations + * @brief Issue a warning with positional information */ virtual void warn (const std::string &txt) = 0; }; diff --git a/src/plugins/streamers/cif/db_plugin/dbCIFReader.h b/src/plugins/streamers/cif/db_plugin/dbCIFReader.h index fe560db8e..e7ef143b6 100644 --- a/src/plugins/streamers/cif/db_plugin/dbCIFReader.h +++ b/src/plugins/streamers/cif/db_plugin/dbCIFReader.h @@ -118,14 +118,14 @@ public: virtual const char *format () const { return "CIF"; } /** - * @brief Issue an error with positional informations + * @brief Issue an error with positional information * * Reimplements CIFDiagnostics */ virtual void error (const std::string &txt); /** - * @brief Issue a warning with positional informations + * @brief Issue a warning with positional information * * Reimplements CIFDiagnostics */ diff --git a/src/plugins/streamers/dxf/db_plugin/dbDXF.h b/src/plugins/streamers/dxf/db_plugin/dbDXF.h index 11fcbe9a2..699d53073 100644 --- a/src/plugins/streamers/dxf/db_plugin/dbDXF.h +++ b/src/plugins/streamers/dxf/db_plugin/dbDXF.h @@ -46,12 +46,12 @@ public: virtual ~DXFDiagnostics (); /** - * @brief Issue an error with positional informations + * @brief Issue an error with positional information */ virtual void error (const std::string &txt) = 0; /** - * @brief Issue a warning with positional informations + * @brief Issue a warning with positional information */ virtual void warn (const std::string &txt) = 0; }; diff --git a/src/plugins/streamers/dxf/db_plugin/dbDXFFormat.h b/src/plugins/streamers/dxf/db_plugin/dbDXFFormat.h index a47c5263e..2f51d224a 100644 --- a/src/plugins/streamers/dxf/db_plugin/dbDXFFormat.h +++ b/src/plugins/streamers/dxf/db_plugin/dbDXFFormat.h @@ -68,7 +68,7 @@ public: /** * @brief Specify the unit of the DXF file * - * Since DXF is unitless, this value allows to specify the units of the DXF file given as input. + * Since DXF is unitless, this value allows one to specify the units of the DXF file given as input. */ double unit; diff --git a/src/plugins/streamers/dxf/db_plugin/dbDXFReader.h b/src/plugins/streamers/dxf/db_plugin/dbDXFReader.h index 81bb70468..f3558eb61 100644 --- a/src/plugins/streamers/dxf/db_plugin/dbDXFReader.h +++ b/src/plugins/streamers/dxf/db_plugin/dbDXFReader.h @@ -122,14 +122,14 @@ public: virtual const char *format () const { return "DXF"; } /** - * @brief Issue an error with positional informations + * @brief Issue an error with positional information * * Reimplements DXFDiagnostics */ virtual void error (const std::string &txt); /** - * @brief Issue a warning with positional informations + * @brief Issue a warning with positional information * * Reimplements DXFDiagnostics */ diff --git a/src/plugins/streamers/gds2/db_plugin/dbGDS2Format.h b/src/plugins/streamers/gds2/db_plugin/dbGDS2Format.h index b03edeb52..4d202c987 100644 --- a/src/plugins/streamers/gds2/db_plugin/dbGDS2Format.h +++ b/src/plugins/streamers/gds2/db_plugin/dbGDS2Format.h @@ -61,7 +61,7 @@ public: /** * @brief Allow multiple big records * - * Setting this property to true allows to use up to 65535 bytes (instead of 32767) per record + * Setting this property to true allows using up to 65535 bytes (instead of 32767) per record * by treating the record length as unsigned short rather than signed short. * This allows bigger polygons (up to ~8000 points) without having to use multiple XY records. */ @@ -70,7 +70,7 @@ public: /** * @brief Allow multiple XY records in BOUNDARY elements for unlimited large polygons * - * Setting this property to true allows to unlimited polygons + * Setting this property to true allows producing polygons with an unlimited number of points * by using multiple XY records. */ bool allow_multi_xy_records; @@ -141,7 +141,7 @@ public: /** * @brief Use multiple XY records in BOUNDARY elements for unlimited large polygons * - * Setting this property to true allows to produce unlimited polygons + * Setting this property to true allows produce polygons with an unlimited number of points * at the cost of incompatible formats. */ bool multi_xy_records; diff --git a/src/plugins/streamers/gds2/db_plugin/dbGDS2ReaderBase.cc b/src/plugins/streamers/gds2/db_plugin/dbGDS2ReaderBase.cc index 4b59e0b5b..4a8a40c7d 100644 --- a/src/plugins/streamers/gds2/db_plugin/dbGDS2ReaderBase.cc +++ b/src/plugins/streamers/gds2/db_plugin/dbGDS2ReaderBase.cc @@ -343,8 +343,8 @@ GDS2ReaderBase::do_read (db::Layout &layout) get_string (m_cellname); - // if the first cell is the dummy cell containing the context informations - // read this cell in a special way and store the context informations separately. + // if the first cell is the dummy cell containing the context information + // read this cell in a special way and store the context information separately. if (first_cell && m_cellname == "$$$CONTEXT_INFO$$$") { read_context_info_cell (); diff --git a/src/plugins/streamers/gds2/db_plugin/gsiDeclDbGDS2.cc b/src/plugins/streamers/gds2/db_plugin/gsiDeclDbGDS2.cc index 9ea126672..b868c1439 100644 --- a/src/plugins/streamers/gds2/db_plugin/gsiDeclDbGDS2.cc +++ b/src/plugins/streamers/gds2/db_plugin/gsiDeclDbGDS2.cc @@ -147,7 +147,7 @@ gsi::ClassExt gds2_writer_options ( "@brief Use multiple XY records in BOUNDARY elements for unlimited large polygons\n" "@args flag\n" "\n" - "Setting this property to true allows to produce unlimited polygons \n" + "Setting this property to true allows producing polygons with an unlimited number of points \n" "at the cost of incompatible formats. Setting it to true disables the \\gds2_max_vertex_count setting.\n" "\nThis property has been added in version 0.18.\n" ) + diff --git a/src/plugins/streamers/oasis/db_plugin/dbOASIS.h b/src/plugins/streamers/oasis/db_plugin/dbOASIS.h index 1f773d862..90e7afef2 100644 --- a/src/plugins/streamers/oasis/db_plugin/dbOASIS.h +++ b/src/plugins/streamers/oasis/db_plugin/dbOASIS.h @@ -48,12 +48,12 @@ public: virtual ~OASISDiagnostics (); /** - * @brief Issue an error with positional informations + * @brief Issue an error with positional information */ virtual void error (const std::string &txt) = 0; /** - * @brief Issue a warning with positional informations + * @brief Issue a warning with positional information */ virtual void warn (const std::string &txt) = 0; }; diff --git a/src/plugins/streamers/oasis/db_plugin/dbOASISReader.cc b/src/plugins/streamers/oasis/db_plugin/dbOASISReader.cc index ebda040e4..aa945538c 100644 --- a/src/plugins/streamers/oasis/db_plugin/dbOASISReader.cc +++ b/src/plugins/streamers/oasis/db_plugin/dbOASISReader.cc @@ -629,7 +629,7 @@ struct LNameJoinOp2 * Since CBLOCK does not update this record, the position of the table will * be the location of CBLOCK rather than that of the name record itself. * PAD records will also call this method, so the beginning of a table - * is right after any preceeding PAD records and exactly at the location + * is right after any preceding PAD records and exactly at the location * of the first name record after PADs. */ void @@ -1405,21 +1405,21 @@ OASISReader::do_read (db::Layout &layout) } - // Check the table offsets vs. real occurance + // Check the table offsets vs. real occurrence if (m_first_cellname != 0 && m_first_cellname != m_table_cellname && m_expect_strict_mode == 1) { - warn (tl::sprintf (tl::to_string (tr ("CELLNAME table offset does not match first occurance of CELLNAME in strict mode - %s vs. %s")), m_table_cellname, m_first_cellname)); + warn (tl::sprintf (tl::to_string (tr ("CELLNAME table offset does not match first occurrence of CELLNAME in strict mode - %s vs. %s")), m_table_cellname, m_first_cellname)); } if (m_first_propname != 0 && m_first_propname != m_table_propname && m_expect_strict_mode == 1) { - warn (tl::sprintf (tl::to_string (tr ("PROPNAME table offset does not match first occurance of PROPNAME in strict mode - %s vs. %s")), m_table_propname, m_first_propname)); + warn (tl::sprintf (tl::to_string (tr ("PROPNAME table offset does not match first occurrence of PROPNAME in strict mode - %s vs. %s")), m_table_propname, m_first_propname)); } if (m_first_propstring != 0 && m_first_propstring != m_table_propstring && m_expect_strict_mode == 1) { - warn (tl::sprintf (tl::to_string (tr ("PROPSTRING table offset does not match first occurance of PROPSTRING in strict mode - %s vs. %s")), m_table_propstring, m_first_propstring)); + warn (tl::sprintf (tl::to_string (tr ("PROPSTRING table offset does not match first occurrence of PROPSTRING in strict mode - %s vs. %s")), m_table_propstring, m_first_propstring)); } if (m_first_layername != 0 && m_first_layername != m_table_layername && m_expect_strict_mode == 1) { - warn (tl::sprintf (tl::to_string (tr ("LAYERNAME table offset does not match first occurance of LAYERNAME in strict mode - %s vs. %s")), m_table_layername, m_first_layername)); + warn (tl::sprintf (tl::to_string (tr ("LAYERNAME table offset does not match first occurrence of LAYERNAME in strict mode - %s vs. %s")), m_table_layername, m_first_layername)); } if (m_first_textstring != 0 && m_first_textstring != m_table_textstring && m_expect_strict_mode == 1) { - warn (tl::sprintf (tl::to_string (tr ("TEXTSTRING table offset does not match first occurance of TEXTSTRING in strict mode - %s vs. %s")), m_table_textstring, m_first_textstring)); + warn (tl::sprintf (tl::to_string (tr ("TEXTSTRING table offset does not match first occurrence of TEXTSTRING in strict mode - %s vs. %s")), m_table_textstring, m_first_textstring)); } } diff --git a/src/plugins/streamers/oasis/db_plugin/dbOASISReader.h b/src/plugins/streamers/oasis/db_plugin/dbOASISReader.h index 89344c954..3dd0c6d6f 100644 --- a/src/plugins/streamers/oasis/db_plugin/dbOASISReader.h +++ b/src/plugins/streamers/oasis/db_plugin/dbOASISReader.h @@ -119,14 +119,14 @@ public: virtual const char *format () const { return "OASIS"; } /** - * @brief Issue an error with positional informations + * @brief Issue an error with positional information * * Reimplements OASISDiagnostics */ virtual void error (const std::string &txt); /** - * @brief Issue a warning with positional informations + * @brief Issue a warning with positional information * * Reimplements OASISDiagnostics */ diff --git a/src/plugins/streamers/oasis/db_plugin/dbOASISWriter.cc b/src/plugins/streamers/oasis/db_plugin/dbOASISWriter.cc index 980f661bc..76197bc28 100644 --- a/src/plugins/streamers/oasis/db_plugin/dbOASISWriter.cc +++ b/src/plugins/streamers/oasis/db_plugin/dbOASISWriter.cc @@ -501,7 +501,7 @@ Compressor::flush (db::OASISWriter *writer) } - // Apply some heuristic criterion that allows to determine whether it's worth doing the compression + // Apply some heuristic criterion that allows the algorithm to determine whether it's worth doing the compression // Try to compact these repetitions further, y direction first, then x direction for (int xypass2 = 1; xypass2 >= 0; --xypass2) { diff --git a/src/plugins/streamers/oasis/db_plugin/gsiDeclDbOASIS.cc b/src/plugins/streamers/oasis/db_plugin/gsiDeclDbOASIS.cc index c242be070..6f5f0f39c 100644 --- a/src/plugins/streamers/oasis/db_plugin/gsiDeclDbOASIS.cc +++ b/src/plugins/streamers/oasis/db_plugin/gsiDeclDbOASIS.cc @@ -290,7 +290,7 @@ gsi::ClassExt oasis_writer_options ( "@args level\n" "The OASIS compression level is an integer number between 0 and 10. 0 basically is no compression, " "1 produces shape arrays in a simple fashion. 2 and higher compression levels will use a more elaborate " - "algorithm to find shape arrays which uses 2nd and futher neighbor distances. The higher the level, the " + "algorithm to find shape arrays which uses 2nd and further neighbor distances. The higher the level, the " "higher the memory requirements and run times.\n" ) + gsi::method_ext ("oasis_compression_level", &get_oasis_compression, diff --git a/src/plugins/streamers/pcb/db_plugin/dbGerberImporter.h b/src/plugins/streamers/pcb/db_plugin/dbGerberImporter.h index 486615668..81352e803 100644 --- a/src/plugins/streamers/pcb/db_plugin/dbGerberImporter.h +++ b/src/plugins/streamers/pcb/db_plugin/dbGerberImporter.h @@ -902,7 +902,7 @@ public: /** * @brief Specifies the layer styles to use * - * This allows to specify a layer style file (path) which will be loaded + * This allows one to specify a layer style file (path) which will be loaded * after the Gerber files have been imported. * * Specify an empty string to disable that feature. diff --git a/src/plugins/streamers/pcb/lay_plugin/GerberImportDialog.ui b/src/plugins/streamers/pcb/lay_plugin/GerberImportDialog.ui index 423b41851..02421de0e 100644 --- a/src/plugins/streamers/pcb/lay_plugin/GerberImportDialog.ui +++ b/src/plugins/streamers/pcb/lay_plugin/GerberImportDialog.ui @@ -112,7 +112,7 @@ - Free layer mapping (allows to specify arbitrary mapping between PCB files and layout layers) + Free layer mapping (allows one to specify arbitrary mapping between PCB files and layout layers) @@ -1076,7 +1076,7 @@ For "bottom" mounting, the top PCB layer will be assigned to the last layout lay Leave fields empty to specify less reference points. One point is used to derive the displacement, further points are used to derive the orientation. Currently, no magnification is implied and only simple rotations are derived from the mapping points. -Alternatively the transformation (imported to existing layout) can be specified using the explicit transformation below. This allows to specify an arbitary transformation. Use the common notation (i.e. "*2 r90 10,-100"). +Alternatively the transformation (imported to existing layout) can be specified using the explicit transformation below. This allows one to specify an arbitrary transformation. Use the common notation (i.e. "*2 r90 10,-100"). true diff --git a/src/plugins/tools/import/lay_plugin/StreamImportDialog.ui b/src/plugins/tools/import/lay_plugin/StreamImportDialog.ui index 80e4c5fbd..1d13a0003 100644 --- a/src/plugins/tools/import/lay_plugin/StreamImportDialog.ui +++ b/src/plugins/tools/import/lay_plugin/StreamImportDialog.ui @@ -743,7 +743,7 @@ Leave fields empty to specify less reference points. One point is used to derive the displacement, further points are used to derive the orientation. Currently, no magnification is implied and only simple rotations are derived from the mapping points. -Alternatively the transformation (imported to existing layout) can be specified using the explicit transformation below. This allows to specify an arbitary transformation. Use the common notation (i.e. "*2 r90 10,-100"). +Alternatively the transformation (imported to existing layout) can be specified using the explicit transformation below. This allows one to specify an arbitrary transformation. Use the common notation (i.e. "*2 r90 10,-100"). true diff --git a/src/plugins/tools/net_tracer/db_plugin/dbNetTracerIO.cc b/src/plugins/tools/net_tracer/db_plugin/dbNetTracerIO.cc index a55ffcc23..89670d5c9 100644 --- a/src/plugins/tools/net_tracer/db_plugin/dbNetTracerIO.cc +++ b/src/plugins/tools/net_tracer/db_plugin/dbNetTracerIO.cc @@ -360,7 +360,7 @@ NetTracerNet::NetTracerNet (const NetTracer &tracer, const db::ICplxTrans &trans for (NetTracer::iterator s = tracer.begin (); s != tracer.end (); ++s) { - // TODO: should reset propery ID: + // TODO: should reset property ID: tl::ident_map pm; db::Shape new_shape = m_shapes.insert (s->shape (), trans, pm); m_net_shapes.push_back (*s); diff --git a/src/plugins/tools/net_tracer/db_plugin/gsiDeclDbNetTracer.cc b/src/plugins/tools/net_tracer/db_plugin/gsiDeclDbNetTracer.cc index a19d6a066..53bbd27c3 100644 --- a/src/plugins/tools/net_tracer/db_plugin/gsiDeclDbNetTracer.cc +++ b/src/plugins/tools/net_tracer/db_plugin/gsiDeclDbNetTracer.cc @@ -160,7 +160,7 @@ gsi::Class decl_NetElement ("db", "NetElement", "In any case, the \\shape method will deliver the shape and \\trans the transformation of the shape into the original top cell. " "To obtain a flat representation of the net, the shapes need to be transformed by this transformation.\n" "\n" - "\\layer will give the layer the shape is located at, \\cell_index will denote the cell that containes the shape.\n" + "\\layer will give the layer the shape is located at, \\cell_index will denote the cell that contains the shape.\n" "\n" "This class has been introduced in version 0.25.\n" ); diff --git a/src/plugins/tools/net_tracer/lay_plugin/NetTracerConfigPage.ui b/src/plugins/tools/net_tracer/lay_plugin/NetTracerConfigPage.ui index d06dc70e4..12bcc126f 100644 --- a/src/plugins/tools/net_tracer/lay_plugin/NetTracerConfigPage.ui +++ b/src/plugins/tools/net_tracer/lay_plugin/NetTracerConfigPage.ui @@ -1,7 +1,8 @@ - + + NetTracerConfigPage - - + + 0 0 @@ -9,51 +10,69 @@ 554 - + Net Tracer Config Page - - - 9 - - + + 6 + + 9 + + + 9 + + + 9 + + + 9 + - - + + Net Appearance - - + + 9 - + + 9 + + + 9 + + + 9 + + 6 - - - + + + By default, the original layer's style is used for the highlighted net. This style can be overridden by specifying a color, stipple, line width etc. Leave those fields empty to use the original style. -With "original color", the color intensity adjustment allows to increase or decrease the +With "original color", the color intensity adjustment allows increasing or decreasing the brightness of the color used. - + false - + - + Qt::Vertical - + QSizePolicy::Fixed - + 556 16 @@ -61,37 +80,46 @@ brightness of the color used. - - - + + + QFrame::NoFrame - + QFrame::Raised - - + + 0 - + + 0 + + + 0 + + + 0 + + 6 - - - + + + Net highlighting - + - + Qt::Horizontal - + QSizePolicy::Fixed - + 16 20 @@ -99,15 +127,15 @@ brightness of the color used. - + - + Qt::Horizontal - + QSizePolicy::Fixed - + 16 20 @@ -115,29 +143,29 @@ brightness of the color used. - - - + + + or - + Qt::AlignCenter - - - + + + % intensity increase - + - + Qt::Horizontal - + 201 20 @@ -145,83 +173,92 @@ brightness of the color used. - - - + + + QFrame::NoFrame - + QFrame::Raised - - - 0 - - + + 6 + + 0 + + + 0 + + + 0 + + + 0 + - - + + ... - - + + ... - - + + ... - - + + ... - - + + ... - - + + ... - - + + ... - - + + ... - + Qt::Horizontal - + 40 20 @@ -232,47 +269,45 @@ brightness of the color used. - - - + + + Auto-color with palette - - - + + + Net coloring - - - - 100 - - + + + -100 - + + 100 + + 10 - - - - - 13 - 13 + + + + 0 0 - + The color in which the rulers are drawn - + @@ -280,48 +315,57 @@ brightness of the color used. - - - + + + QFrame::NoFrame - + QFrame::Plain - - + + 0 - + + 0 + + + 0 + + + 0 + + 6 - - - + + + Vertex size - - - + + + Line width - - - + + + pixel - + - + Qt::Horizontal - + 71 31 @@ -329,39 +373,35 @@ brightness of the color used. - - - - - 5 - 0 + + + + 0 0 - - - - - 5 - 0 + + + + 0 0 - + - + Qt::Vertical - + QSizePolicy::Fixed - + 590 16 @@ -369,61 +409,59 @@ brightness of the color used. - - - + + + - - - + + + Stipple - - - + + + - + true - - - + + + Halo - - - - - 0 - 0 + + + + 0 0 - + pixel - + - + Qt::Horizontal - + QSizePolicy::Fixed - + 16 20 @@ -438,26 +476,35 @@ brightness of the color used. - - + + Net Browser - - + + 9 - + + 9 + + + 9 + + + 9 + + 6 - + - + Qt::Horizontal - + QSizePolicy::Minimum - + 10 20 @@ -465,77 +512,73 @@ brightness of the color used. - - + + - + Don't change - + Fit net with margin .. - + Center net - + Center net with size .. - - - - - 5 - 0 + + + + 0 0 - - - + + + Window - - - + + + µm - - - + + + false - - - 5 - 0 + + 0 0 - + - + Qt::Horizontal - + 40 20 @@ -543,9 +586,9 @@ brightness of the color used. - - - + + + Maximum number of shapes highlighted @@ -555,7 +598,7 @@ brightness of the color used. - + lay::DitherPatternSelectionButton diff --git a/src/plugins/tools/xor/lay_plugin/layXORToolDialog.cc b/src/plugins/tools/xor/lay_plugin/layXORToolDialog.cc index debaba9d6..8a4236b6e 100644 --- a/src/plugins/tools/xor/lay_plugin/layXORToolDialog.cc +++ b/src/plugins/tools/xor/lay_plugin/layXORToolDialog.cc @@ -84,7 +84,7 @@ struct InputModeConverter case IMVisible: return "visible"; case IMSpecific: - return "specifc"; + return "specific"; default: return ""; } @@ -1404,7 +1404,7 @@ XORToolDialog::run_xor () if (mp_view && output_mode == OMMarkerDatabase) { mp_view->remove_rdb (rdb_index); } - throw tl::Exception (tl::to_string (QObject::tr ("Errors occured during processing. First error message says:\n")) + job.error_messages ().front ()); + throw tl::Exception (tl::to_string (QObject::tr ("Errors occurred during processing. First error message says:\n")) + job.error_messages ().front ()); } // apply healing if required diff --git a/src/pymod/__init__.py.noqt b/src/pymod/__init__.py.noqt index dce96f8e4..4213afffb 100644 --- a/src/pymod/__init__.py.noqt +++ b/src/pymod/__init__.py.noqt @@ -1,5 +1,5 @@ # klayout library definition file -__all__ = [ "tl", "db", "lay", "rdb" ] +__all__ = [ "tl", "db", "lib", "lay", "rdb" ] diff --git a/src/pymod/__init__.py.qt4 b/src/pymod/__init__.py.qt4 index 18e5d527d..1404dbe71 100644 --- a/src/pymod/__init__.py.qt4 +++ b/src/pymod/__init__.py.qt4 @@ -1,5 +1,5 @@ # klayout library definition file -__all__ = [ "tl", "db", "rdb", "QtCore", "QtGui", "QtXml", "QtSql", "QtNetwork", "QtDesigner", "lay" ] +__all__ = [ "tl", "db", "lib", "rdb", "QtCore", "QtGui", "QtXml", "QtSql", "QtNetwork", "QtDesigner", "lay" ] diff --git a/src/pymod/__init__.py.qt5 b/src/pymod/__init__.py.qt5 index 9a943103f..6077d2f06 100644 --- a/src/pymod/__init__.py.qt5 +++ b/src/pymod/__init__.py.qt5 @@ -1,7 +1,7 @@ # klayout library definition file -__all__ = [ "tl", "db", "rdb", +__all__ = [ "tl", "db", "lib", "rdb", "QtCore", "QtGui", "QtNetwork", "QtSql", "QtWidgets", "QtDesigner", "QtMultimedia", "QtPrintSupport", "QtSvg", "QtXmlPatterns", "QtXml", "lay" ] diff --git a/src/pymod/__init__.py.qtless b/src/pymod/__init__.py.qtless index 6aef40aa9..776d25ace 100644 --- a/src/pymod/__init__.py.qtless +++ b/src/pymod/__init__.py.qtless @@ -1,4 +1,4 @@ # klayout library definition file -__all__ = [ "tl", "db", "rdb" ] +__all__ = [ "tl", "db", "lib", "rdb" ] diff --git a/src/pymod/distutils_src/klayout/lib/__init__.py b/src/pymod/distutils_src/klayout/lib/__init__.py new file mode 100644 index 000000000..90fb8d3de --- /dev/null +++ b/src/pymod/distutils_src/klayout/lib/__init__.py @@ -0,0 +1,4 @@ +import klayout.libcore +from klayout.libcore import * + +__all__ = klayout.libcore.__all__ diff --git a/src/pymod/distutils_src/pya/__init__.py b/src/pymod/distutils_src/pya/__init__.py index 70e2f49b9..08879d72b 100644 --- a/src/pymod/distutils_src/pya/__init__.py +++ b/src/pymod/distutils_src/pya/__init__.py @@ -3,5 +3,6 @@ # TODO: We need a specification document explaining what should go into pya from klayout.db import * # noqa +from klayout.lib import * # noqa from klayout.tl import * # noqa from klayout.rdb import * # noqa diff --git a/src/pymod/lib/lib.pro b/src/pymod/lib/lib.pro new file mode 100644 index 000000000..f78877a69 --- /dev/null +++ b/src/pymod/lib/lib.pro @@ -0,0 +1,13 @@ + +TARGET = libcore +REALMODULE = lib + +include($$PWD/../pymod.pri) + +SOURCES = \ + libMain.cc \ + +HEADERS += \ + +LIBS += -lklayout_lib + diff --git a/src/pymod/lib/libMain.cc b/src/pymod/lib/libMain.cc new file mode 100644 index 000000000..2e1a1fb38 --- /dev/null +++ b/src/pymod/lib/libMain.cc @@ -0,0 +1,33 @@ + +/* + + KLayout Layout Viewer + Copyright (C) 2006-2019 Matthias Koefferlein + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +*/ + +#include "../pymodHelper.h" + +// to force linking of the lib module +#include "../../lib/lib/libForceLink.h" + +static PyObject *lib_module_init (const char *pymod_name, const char *mod_name, const char *mod_description) +{ + return module_init (pymod_name, mod_name, mod_description); +} + +DEFINE_PYMOD_WITH_INIT(libcore, "lib", "KLayout core module 'lib'", lib_module_init) diff --git a/src/pymod/pymod.pro b/src/pymod/pymod.pro index ba4300cea..3cd7e2fe6 100644 --- a/src/pymod/pymod.pro +++ b/src/pymod/pymod.pro @@ -4,6 +4,7 @@ SUBDIRS = \ db \ tl \ rdb \ + lib \ !equals(HAVE_QT, "0") { diff --git a/src/rba/rba/rbaUtils.cc b/src/rba/rba/rbaUtils.cc index 405bc51db..9d199b53f 100644 --- a/src/rba/rba/rbaUtils.cc +++ b/src/rba/rba/rbaUtils.cc @@ -514,7 +514,7 @@ VALUE rba_eval_string_in_context (const char *expr, const char *file, int line, int argc; VALUE args[4]; args[0] = rb_str_new (expr, long (strlen (expr))); - // use the current binding if there is one. This allows to eval in the context of a current trace callback + // use the current binding if there is one. This allows using "eval" in the context of a current trace callback // when eval is called from the trace handler. if (context < 0) { args[1] = rb_const_get (rb_cObject, rb_intern ("TOPLEVEL_BINDING")); // taken from ruby.c diff --git a/src/rba/rba/rbaUtils.h b/src/rba/rba/rbaUtils.h index 81fd2bc75..7c1cfa30e 100644 --- a/src/rba/rba/rbaUtils.h +++ b/src/rba/rba/rbaUtils.h @@ -180,12 +180,12 @@ inline void rb_protect_init () #define RUBY_BEGIN_EXEC \ try { \ - rba::RubyInterpreter::instance()->begin_exec (); + if (rba::RubyInterpreter::instance ()) { rba::RubyInterpreter::instance ()->begin_exec (); } #define RUBY_END_EXEC \ - rba::RubyInterpreter::instance()->end_exec (); \ + if (rba::RubyInterpreter::instance ()) { rba::RubyInterpreter::instance()->end_exec (); } \ } catch (...) { \ - rba::RubyInterpreter::instance()->end_exec (); \ + if (rba::RubyInterpreter::instance ()) { rba::RubyInterpreter::instance()->end_exec (); } \ throw; \ } diff --git a/src/rba/unit_tests/std_font.gds b/src/rba/unit_tests/std_font.gds new file mode 100644 index 000000000..e9be5dbfb Binary files /dev/null and b/src/rba/unit_tests/std_font.gds differ diff --git a/src/rba/unit_tests/unit_tests.pro b/src/rba/unit_tests/unit_tests.pro index fa8662dc0..42079651f 100644 --- a/src/rba/unit_tests/unit_tests.pro +++ b/src/rba/unit_tests/unit_tests.pro @@ -14,3 +14,4 @@ DEPENDPATH += $$RBA_INC $$TL_INC $$DB_INC $$GSI_INC LIBS += -L$$DESTDIR_UT -lklayout_rba -lklayout_tl -lklayout_db -lklayout_gsi +RESOURCES = unit_tests.qrc \ diff --git a/src/rba/unit_tests/unit_tests.qrc b/src/rba/unit_tests/unit_tests.qrc new file mode 100644 index 000000000..92058dab4 --- /dev/null +++ b/src/rba/unit_tests/unit_tests.qrc @@ -0,0 +1,5 @@ + + + std_font.gds + + diff --git a/src/rdb/rdb/gsiDeclRdb.cc b/src/rdb/rdb/gsiDeclRdb.cc index 16cee465b..8e2cf9405 100644 --- a/src/rdb/rdb/gsiDeclRdb.cc +++ b/src/rdb/rdb/gsiDeclRdb.cc @@ -1066,7 +1066,7 @@ Class decl_ReportDatabase ("rdb", "ReportDatabase", gsi::method ("generator", &rdb::Database::generator, "@brief Gets the databases generator\n" "The generator string describes how the database was created, i.e. DRC tool name and tool options.\n" - "In a later version this should allow to rerun the tool that created the report.\n" + "In a later version this will allow re-running the tool that created the report.\n" "@return The generator string\n" ) + gsi::method ("generator=", &rdb::Database::set_generator, gsi::arg ("generator"), diff --git a/src/tl/tl/tlCommandLineParser.h b/src/tl/tl/tlCommandLineParser.h index 44c716c24..c53a5ed9b 100644 --- a/src/tl/tl/tlCommandLineParser.h +++ b/src/tl/tl/tlCommandLineParser.h @@ -82,7 +82,7 @@ public: * "*..." - Multiple occurances allowed - values needs to be * an array and values are accumulated. Without *, the * value string is evaluated to a comma-separated list. - * "*" means one occurance at least unless combined with "?". + * "*" means one occurrence at least unless combined with "?". */ ArgBase (const std::string &option, const std::string &brief_doc, const std::string &long_doc); diff --git a/src/tl/tl/tlDeferredExecution.h b/src/tl/tl/tlDeferredExecution.h index 55b08e895..faec2ff5e 100644 --- a/src/tl/tl/tlDeferredExecution.h +++ b/src/tl/tl/tlDeferredExecution.h @@ -184,10 +184,10 @@ public: /** * @brief Deferred execution of a const method * - * This template allows to schedule a deferred execution of a certain method. + * This template allows executing a certain method in a delayed fashion. * The method is not called immediately but as soon as the applications becomes * idle - i.e. GUI events are being processed. - * This allows to schedule GUI update requests or similar. + * This allows scheduling GUI update requests or similar. * The compress parameter controls whether multiple calls to the same method are * compressed and combined into a single call. This is an efficient way to * schedule a single GUI update request from frequently called and time critical diff --git a/src/tl/tl/tlException.h b/src/tl/tl/tlException.h index 6b54953e6..eab1d4416 100644 --- a/src/tl/tl/tlException.h +++ b/src/tl/tl/tlException.h @@ -37,7 +37,7 @@ namespace tl * @brief The unspecific exception class * * This class is the base class for all exceptions in this - * framework. It does not carry further informations except + * framework. It does not carry further information except * a message string that can be created through different * constructor methods. */ diff --git a/src/tl/tl/tlExceptions.cc b/src/tl/tl/tlExceptions.cc index 852dc8323..1df957ee7 100644 --- a/src/tl/tl/tlExceptions.cc +++ b/src/tl/tl/tlExceptions.cc @@ -96,7 +96,7 @@ void handle_exception_ui (const std::exception &ex, QWidget *parent) void handle_exception_silent () { - tl::error << tl::to_string (tr ("An unspecific error occured")); + tl::error << tl::to_string (tr ("An unspecific error occurred")); } void handle_exception () diff --git a/src/tl/tl/tlFixedVector.h b/src/tl/tl/tlFixedVector.h index 1bed36e0f..e34a6c638 100644 --- a/src/tl/tl/tlFixedVector.h +++ b/src/tl/tl/tlFixedVector.h @@ -35,7 +35,7 @@ namespace tl * @brief A fixed-capacity vector class * * This vector class allocates the given number of items. - * It allows to push and pop, but not to exceed the given length. + * It allows one to push and pop, but not to exceed the given length. */ template class fixed_vector diff --git a/src/tl/tl/tlHttpStreamCurl.cc b/src/tl/tl/tlHttpStreamCurl.cc index 4d8a39349..da843ed20 100644 --- a/src/tl/tl/tlHttpStreamCurl.cc +++ b/src/tl/tl/tlHttpStreamCurl.cc @@ -431,7 +431,7 @@ public: /** * @brief Checks the response once finished is true - * This method will throw an exception if an error occured + * This method will throw an exception if an error occurred */ void check () const; @@ -1300,7 +1300,7 @@ InputHttpStreamPrivateData::read (char *b, size_t n) if (m_connection->finished ()) { m_connection->check (); } else if (tl::verbosity() >= 40) { - tl::info << "HTTP reponse data read: " << m_connection->read_data_to_string (); + tl::info << "HTTP response data read: " << m_connection->read_data_to_string (); } return m_connection->fetch_read_data (b, n); diff --git a/src/tl/tl/tlHttpStreamCurl.h b/src/tl/tl/tlHttpStreamCurl.h index d0a6bbe3b..be5e840cb 100644 --- a/src/tl/tl/tlHttpStreamCurl.h +++ b/src/tl/tl/tlHttpStreamCurl.h @@ -114,7 +114,7 @@ public: /** * @brief Checks for errors * This method can be used after the ready event to check for errors. - * It will throw an exception if errors occured. + * It will throw an exception if errors occurred. * read() will do the same. */ void check (); diff --git a/src/tl/tl/tlHttpStreamQt.cc b/src/tl/tl/tlHttpStreamQt.cc index 6bff6d7b0..2d3120a24 100644 --- a/src/tl/tl/tlHttpStreamQt.cc +++ b/src/tl/tl/tlHttpStreamQt.cc @@ -385,7 +385,7 @@ InputHttpStreamPrivateData::read (char *b, size_t n) QByteArray data = mp_reply->read (n); memcpy (b, data.constData (), data.size ()); if (tl::verbosity() >= 40) { - tl::info << "HTTP reponse data read: " << data.constData (); + tl::info << "HTTP response data read: " << data.constData (); } return data.size (); } diff --git a/src/tl/tl/tlIntervalSet.h b/src/tl/tl/tlIntervalSet.h index b201ee1ff..fa04a6020 100644 --- a/src/tl/tl/tlIntervalSet.h +++ b/src/tl/tl/tlIntervalSet.h @@ -33,7 +33,7 @@ namespace tl /** * @brief A helper compare function for the interval map * - * This version will also finds preceeding intervals + * This version will also finds preceding intervals */ template class is_compare_f @@ -48,7 +48,7 @@ public: /** * @brief A helper compare function for the interval map * - * This version will not find preceeding intervals + * This version will not find preceding intervals */ template class is_compare_f2 diff --git a/src/tl/tl/tlKDTree.h b/src/tl/tl/tlKDTree.h index e3744215c..75d0fa0b1 100644 --- a/src/tl/tl/tlKDTree.h +++ b/src/tl/tl/tlKDTree.h @@ -362,7 +362,7 @@ private: * a converter class that gets a certain value of a * given dimension from the object, "Cmp" is the compare * function used to compare values in a special flavour - * that allows to make the comparison dependent on the + * that allows making the comparison dependent on the * dimension. "ObjV" is the container used for storing the * objects, "ValV" is the container used for storing values. */ diff --git a/src/tl/tl/tlProgress.h b/src/tl/tl/tlProgress.h index 0cab4587d..d5a3fb2b8 100644 --- a/src/tl/tl/tlProgress.h +++ b/src/tl/tl/tlProgress.h @@ -92,7 +92,7 @@ class Progress; * This class also allows for some kind of background processing: * once the test() method is called, the * adaptor's yield() method is called once that "yield_interval" - * calls have passed. The yield_interval value should be choosen + * calls have passed. The yield_interval value should be chosen * sufficiently large so that no performance penalty is to be paid * for this. In addition, each test() call tests whether * the operation may have been cancelled and may throw an @@ -371,7 +371,7 @@ public: /** * @brief Set the format unit * - * This is the unit used for formatted output. This allows to separate the format value + * This is the unit used for formatted output. This allows separating the format value * from the bar value which is percent. */ void set_format_unit (double unit) diff --git a/src/tl/tl/tlReuseVector.h b/src/tl/tl/tlReuseVector.h index c7cad2b69..014a4faa6 100644 --- a/src/tl/tl/tlReuseVector.h +++ b/src/tl/tl/tlReuseVector.h @@ -478,9 +478,9 @@ private: }; /** - * @brief A vector that maintains the order of elements but allows to reference elements in a stable way + * @brief A vector that maintains the order of elements but allows one to reference elements in a stable way * - * This container allows to insert and delete elements while references to them (through iterators) + * This container allows inserting and deleting of elements while references to them (through iterators) * remain stable. The insert does not necessarily happen at a certain position. Instead, the vector * keeps a reuseable member list (hence reuse_vector). In addition, the iterators deliver stable references * by using indices and a container pointer. This way, the iterators point to the same element diff --git a/src/tl/tl/tlStream.h b/src/tl/tl/tlStream.h index f674e3c44..d9429a35d 100644 --- a/src/tl/tl/tlStream.h +++ b/src/tl/tl/tlStream.h @@ -396,7 +396,7 @@ public: /** * @brief Opens a stream from a abstract path * - * This will automatically create the approriate delegate and + * This will automatically create the appropriate delegate and * delete it later. */ InputStream (const std::string &abstract_path); diff --git a/src/tl/tl/tlString.h b/src/tl/tl/tlString.h index f38ae77de..ae8247e89 100644 --- a/src/tl/tl/tlString.h +++ b/src/tl/tl/tlString.h @@ -730,7 +730,7 @@ public: /** * @brief Some syntactic sugar * - * Allows to extract something this way: extractor >> x; + * Allows extracting something this way: extractor >> x; */ template Extractor &operator>> (X &x) diff --git a/src/tl/tl/tlThreadedWorkers.h b/src/tl/tl/tlThreadedWorkers.h index 44a130d14..76a24626f 100644 --- a/src/tl/tl/tlThreadedWorkers.h +++ b/src/tl/tl/tlThreadedWorkers.h @@ -203,7 +203,7 @@ public: void set_num_workers (int workers); /** - * @brief Returns true if an error occured during run() + * @brief Returns true if an error occurred during run() */ bool has_error (); @@ -394,7 +394,7 @@ private: * @brief Represents one task in the task queue * * This object must be reimplemented to provide specific - * informations for a task. This is the base class of all + * information for a task. This is the base class of all * task objects. */ class TL_PUBLIC Task diff --git a/testdata/algo/nwriter9_au.txt b/testdata/algo/nwriter9_au.txt new file mode 100644 index 000000000..831158d81 --- /dev/null +++ b/testdata/algo/nwriter9_au.txt @@ -0,0 +1,19 @@ +* written by unit test + +* cell C2 +* pin p1 +* pin p2 +.SUBCKT C2 n1 n2 +* cell instance SC1 r0 *1 0,0 +XSC1 n1 n2 C1 +.ENDS C2 + +* cell C1 +* pin p1 +* pin p2 +.SUBCKT C1 N1 N\x202 +* device instance $1 0,0 XCLS +XD_$1 N1 n3 XCLS PARAMS: U=-17 V=42 +* device instance $2 0,0 XCLS +XD_$2 n3 N\x202 XCLS PARAMS: U=17 V=-42 +.ENDS C1 diff --git a/testdata/oasis/t11.4.ot b/testdata/oasis/t11.4.ot index 2bf767e8e..d0059d407 100644 --- a/testdata/oasis/t11.4.ot +++ b/testdata/oasis/t11.4.ot @@ -176,7 +176,7 @@ uint 17 ;# PLACEMENT (no mag, manhattan angles) bits 00111111 ;# CNXYRAAF int 2000 ;# placement-x int 0 ;# placement-y - uint 8 ;# repetition (3x4 matrix, arbitary displacement vectors) + uint 8 ;# repetition (3x4 matrix, arbitrary displacement vectors) uint 1 ;# n-dimension uint 2 ;# m-dimension uint [ expr 4*310+1 ] ;# n-displacement (g-delta: 310,320) diff --git a/testdata/oasis/t11.6.ot b/testdata/oasis/t11.6.ot index f9df1a793..acae7b02a 100644 --- a/testdata/oasis/t11.6.ot +++ b/testdata/oasis/t11.6.ot @@ -180,7 +180,7 @@ uint 17 ;# PLACEMENT (no mag, manhattan angles) bits 00111111 ;# CNXYRAAF int 2000 ;# placement-x int 0 ;# placement-y - uint 8 ;# repetition (3x4 matrix, arbitary displacement vectors) + uint 8 ;# repetition (3x4 matrix, arbitrary displacement vectors) uint 1 ;# n-dimension uint 2 ;# m-dimension uint [ expr 4*310+1 ] ;# n-displacement (g-delta: 310,320) diff --git a/testdata/oasis/t3.1.ot b/testdata/oasis/t3.1.ot index b1ff2cf45..0f8f11b37 100644 --- a/testdata/oasis/t3.1.ot +++ b/testdata/oasis/t3.1.ot @@ -224,7 +224,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 8 ;# repetition (3x4 matrix, arbitary displacement vectors) + uint 8 ;# repetition (3x4 matrix, arbitrary displacement vectors) uint 1 ;# n-dimension uint 2 ;# m-dimension uint [ expr 16*10 ] ;# n-displacement (g-delta: 10-east=10,0) @@ -234,7 +234,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 8 ;# repetition (3x4 matrix, arbitary displacement vectors) + uint 8 ;# repetition (3x4 matrix, arbitrary displacement vectors) uint 1 ;# n-dimension uint 2 ;# m-dimension uint [ expr 4*11+1 ] ;# n-displacement (g-delta: 11,12) @@ -244,7 +244,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 9 ;# repetition (3 times, arbitary displacement vectors) + uint 9 ;# repetition (3 times, arbitrary displacement vectors) uint 1 ;# dimension uint [ expr 4*11+1 ] ;# n-displacement (g-delta: 11,12) int 12 @@ -252,7 +252,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 9 ;# repetition (4 times, arbitary displacement vectors) + uint 9 ;# repetition (4 times, arbitrary displacement vectors) uint 2 ;# dimension uint [ expr 16*10+10 ] ;# n-displacement (g-delta: 10-northwest=-10,10) diff --git a/testdata/oasis/t3.12.ot b/testdata/oasis/t3.12.ot index 0ba669d48..6a613bceb 100644 --- a/testdata/oasis/t3.12.ot +++ b/testdata/oasis/t3.12.ot @@ -228,7 +228,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 8 ;# repetition (3x4 matrix, arbitary displacement vectors) + uint 8 ;# repetition (3x4 matrix, arbitrary displacement vectors) uint 1 ;# n-dimension uint 2 ;# m-dimension uint [ expr 16*10 ] ;# n-displacement (g-delta: 10-east=10,0) @@ -238,7 +238,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 8 ;# repetition (3x4 matrix, arbitary displacement vectors) + uint 8 ;# repetition (3x4 matrix, arbitrary displacement vectors) uint 1 ;# n-dimension uint 2 ;# m-dimension uint [ expr 4*11+1 ] ;# n-displacement (g-delta: 11,12) @@ -248,7 +248,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 9 ;# repetition (3 times, arbitary displacement vectors) + uint 9 ;# repetition (3 times, arbitrary displacement vectors) uint 1 ;# dimension uint [ expr 4*11+1 ] ;# n-displacement (g-delta: 11,12) int 12 @@ -256,7 +256,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 9 ;# repetition (4 times, arbitary displacement vectors) + uint 9 ;# repetition (4 times, arbitrary displacement vectors) uint 2 ;# dimension uint [ expr 16*10+10 ] ;# n-displacement (g-delta: 10-northwest=-10,10) diff --git a/testdata/oasis/t3.2.ot b/testdata/oasis/t3.2.ot index eed183df8..4160f20d0 100644 --- a/testdata/oasis/t3.2.ot +++ b/testdata/oasis/t3.2.ot @@ -237,7 +237,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 8 ;# repetition (3x4 matrix, arbitary displacement vectors) + uint 8 ;# repetition (3x4 matrix, arbitrary displacement vectors) uint 1 ;# n-dimension uint 2 ;# m-dimension uint [ expr 16*10 ] ;# n-displacement (g-delta: 10-east=10,0) @@ -247,7 +247,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 8 ;# repetition (3x4 matrix, arbitary displacement vectors) + uint 8 ;# repetition (3x4 matrix, arbitrary displacement vectors) uint 1 ;# n-dimension uint 2 ;# m-dimension uint [ expr 4*11+1 ] ;# n-displacement (g-delta: 11,12) @@ -257,7 +257,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 9 ;# repetition (3 times, arbitary displacement vectors) + uint 9 ;# repetition (3 times, arbitrary displacement vectors) uint 1 ;# dimension uint [ expr 4*11+1 ] ;# n-displacement (g-delta: 11,12) int 12 @@ -265,7 +265,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 9 ;# repetition (4 times, arbitary displacement vectors) + uint 9 ;# repetition (4 times, arbitrary displacement vectors) uint 2 ;# dimension uint [ expr 16*10+10 ] ;# n-displacement (g-delta: 10-northwest=-10,10) diff --git a/testdata/oasis/t3.5.ot b/testdata/oasis/t3.5.ot index 8209cfdd7..16d64d43a 100644 --- a/testdata/oasis/t3.5.ot +++ b/testdata/oasis/t3.5.ot @@ -235,7 +235,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 8 ;# repetition (3x4 matrix, arbitary displacement vectors) + uint 8 ;# repetition (3x4 matrix, arbitrary displacement vectors) uint 1 ;# n-dimension uint 2 ;# m-dimension uint [ expr 16*10 ] ;# n-displacement (g-delta: 10-east=10,0) @@ -245,7 +245,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 8 ;# repetition (3x4 matrix, arbitary displacement vectors) + uint 8 ;# repetition (3x4 matrix, arbitrary displacement vectors) uint 1 ;# n-dimension uint 2 ;# m-dimension uint [ expr 4*11+1 ] ;# n-displacement (g-delta: 11,12) @@ -255,7 +255,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 9 ;# repetition (3 times, arbitary displacement vectors) + uint 9 ;# repetition (3 times, arbitrary displacement vectors) uint 1 ;# dimension uint [ expr 4*11+1 ] ;# n-displacement (g-delta: 11,12) int 12 @@ -263,7 +263,7 @@ record TEXT record TEXT bits 00001100 ;# 0CNXYRTL int -200 ;# text-y (relative) - uint 9 ;# repetition (4 times, arbitary displacement vectors) + uint 9 ;# repetition (4 times, arbitrary displacement vectors) uint 2 ;# dimension uint [ expr 16*10+10 ] ;# n-displacement (g-delta: 10-northwest=-10,10) diff --git a/testdata/oasis/t8.1.ot b/testdata/oasis/t8.1.ot index 89a9e2693..bc90f7ec5 100644 --- a/testdata/oasis/t8.1.ot +++ b/testdata/oasis/t8.1.ot @@ -143,7 +143,7 @@ uint 17 ;# PLACEMENT (no mag, manhattan angles) bits 00111111 ;# CNXYRAAF int 2000 ;# placement-x int 0 ;# placement-y - uint 8 ;# repetition (3x4 matrix, arbitary displacement vectors) + uint 8 ;# repetition (3x4 matrix, arbitrary displacement vectors) uint 1 ;# n-dimension uint 2 ;# m-dimension uint [ expr 4*310+1 ] ;# n-displacement (g-delta: 310,320) diff --git a/testdata/oasis/tests.txt b/testdata/oasis/tests.txt index ed209eb33..1923fdfc4 100644 --- a/testdata/oasis/tests.txt +++ b/testdata/oasis/tests.txt @@ -1,6 +1,6 @@ t1.x Empty file. - Various ways to specifiy a float (database unit). + Various ways to specify a float (database unit). t2.x Cells. Various ways to specify cell names (id, string) and refer to them. t3.x Texts. diff --git a/testdata/ruby/dbNetlistWriterTests.rb b/testdata/ruby/dbNetlistWriterTests.rb index 5e02a0561..1fb97c128 100644 --- a/testdata/ruby/dbNetlistWriterTests.rb +++ b/testdata/ruby/dbNetlistWriterTests.rb @@ -116,7 +116,13 @@ class DBLayoutToNetlist_TestClass < TestBase tmp = File::join($ut_testtmp, "tmp2.txt") nl.write(tmp, writer, "A comment") - assert_equal(File.open(tmp, "r").read, File.open(input, "r").read) + a = File.open(tmp, "r").read + a = a.gsub(/e-00/, "e-0").gsub(/e-0/, "e-") + + b = File.open(input, "r").read + b = a.gsub(/e-00/, "e-0").gsub(/e-0/, "e-") + + assert_equal(a, b) end
\"\" @is the root@
\"[.]\" @is an element of the submenu given by . If is ommitted, this refers to an element in the root@
\"[.]\" @is an element of the submenu given by . If is omitted, this refers to an element in the root@
\"[.]end\" @refers to the item past the last item of the submenu given by or root@
\"[.]begin\" @refers to the first item of the submenu given by or root@
\"[.]#\" @refers to the nth item of the submenu given by or root (n is an integer number)@